OpenAPI_DataReporting

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

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

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

README

Go API client for OpenAPI_DataReporting

API for 3GPP Data Reporting.
© 2022, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC).
All rights reserved.

Overview

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

  • API version: 1.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/oauth2
go get golang.org/x/net/context

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

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

To use a proxy, set the environment variable HTTP_PROXY:

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

Configuration of Server URL

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

Select Server Configuration

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

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

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

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

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

URLs Configuration per Operation

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

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

Documentation for API Endpoints

All URIs are relative to https://example.com/3gpp-data-reporting/v1

Class Method HTTP request Description
DataReportingSessionsAPI CreateDataRepSession Post /sessions Create a new Data Reporting Session.
IndividualDataReportingSessionAPI DeleteIndDataRepSession Delete /sessions/{sessionId} Deletes an already existing Data Reporting Session resource.
IndividualDataReportingSessionAPI GetIndDataRepSession Get /sessions/{sessionId} Request the retrieval of an existing Individual Data Reporting Session resource.
IndividualDataReportingSessionAPI ReportUEData Post /sessions/{sessionId}/report Report collected UE data.
IndividualDataReportingSessionAPI UpdateIndDataRepSession Put /sessions/{sessionId} Request the update of an existing Individual Data Reporting Session resource.

Documentation For Models

Documentation For Authorization

Authentication schemes defined for the API:

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

Example

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

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

import "golang.org/x/oauth2"

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

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

Documentation for Utility Methods

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

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

Author

Documentation

Index

Constants

This section is empty.

Variables

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

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

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

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

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

All allowed values of VerticalDirection enum

Functions

func CacheExpires

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

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

func IsNil

func IsNil(i interface{}) bool

IsNil checks if an input is nil

func PtrBool

func PtrBool(v bool) *bool

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

func PtrFloat32

func PtrFloat32(v float32) *float32

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

func PtrFloat64

func PtrFloat64(v float64) *float64

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

func PtrInt

func PtrInt(v int) *int

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

func PtrInt32

func PtrInt32(v int32) *int32

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

func PtrInt64

func PtrInt64(v int64) *int64

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

func PtrString

func PtrString(v string) *string

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

func PtrTime

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

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

Types

type APIClient

type APIClient struct {
	DataReportingSessionsAPI *DataReportingSessionsAPIService

	IndividualDataReportingSessionAPI *IndividualDataReportingSessionAPIService
	// contains filtered or unexported fields
}

APIClient manages communication with the 3gpp-data-reporting API v1.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 AccuracyFulfilmentIndicator

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

AccuracyFulfilmentIndicator Indicates fulfilment of requested accuracy.

func (*AccuracyFulfilmentIndicator) MarshalJSON

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

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

func (*AccuracyFulfilmentIndicator) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type AddrFqdn

type AddrFqdn struct {
	IpAddr NullableIpAddr `json:"ipAddr,omitempty"`
	// Indicates an FQDN.
	Fqdn *string `json:"fqdn,omitempty"`
}

AddrFqdn IP address and/or FQDN.

func NewAddrFqdn

func NewAddrFqdn() *AddrFqdn

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

func NewAddrFqdnWithDefaults

func NewAddrFqdnWithDefaults() *AddrFqdn

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

func (*AddrFqdn) GetFqdn

func (o *AddrFqdn) GetFqdn() string

GetFqdn returns the Fqdn field value if set, zero value otherwise.

func (*AddrFqdn) GetFqdnOk

func (o *AddrFqdn) GetFqdnOk() (*string, bool)

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

func (*AddrFqdn) GetIpAddr

func (o *AddrFqdn) GetIpAddr() IpAddr

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

func (*AddrFqdn) GetIpAddrOk

func (o *AddrFqdn) GetIpAddrOk() (*IpAddr, bool)

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

func (*AddrFqdn) HasFqdn

func (o *AddrFqdn) HasFqdn() bool

HasFqdn returns a boolean if a field has been set.

func (*AddrFqdn) HasIpAddr

func (o *AddrFqdn) HasIpAddr() bool

HasIpAddr returns a boolean if a field has been set.

func (AddrFqdn) MarshalJSON

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

func (*AddrFqdn) SetFqdn

func (o *AddrFqdn) SetFqdn(v string)

SetFqdn gets a reference to the given string and assigns it to the Fqdn field.

func (*AddrFqdn) SetIpAddr

func (o *AddrFqdn) SetIpAddr(v IpAddr)

SetIpAddr gets a reference to the given NullableIpAddr and assigns it to the IpAddr field.

func (*AddrFqdn) SetIpAddrNil

func (o *AddrFqdn) SetIpAddrNil()

SetIpAddrNil sets the value for IpAddr to be an explicit nil

func (AddrFqdn) ToMap

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

func (*AddrFqdn) UnsetIpAddr

func (o *AddrFqdn) UnsetIpAddr()

UnsetIpAddr ensures that no value is present for IpAddr, not even an explicit nil

type ApiCreateDataRepSessionRequest

type ApiCreateDataRepSessionRequest struct {
	ApiService *DataReportingSessionsAPIService
	// contains filtered or unexported fields
}

func (ApiCreateDataRepSessionRequest) DataReportingSession

func (r ApiCreateDataRepSessionRequest) DataReportingSession(dataReportingSession DataReportingSession) ApiCreateDataRepSessionRequest

Representation of the Data Reporting Session to be created in the NEF.

func (ApiCreateDataRepSessionRequest) Execute

type ApiDeleteIndDataRepSessionRequest

type ApiDeleteIndDataRepSessionRequest struct {
	ApiService *IndividualDataReportingSessionAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteIndDataRepSessionRequest) Execute

type ApiGetIndDataRepSessionRequest

type ApiGetIndDataRepSessionRequest struct {
	ApiService *IndividualDataReportingSessionAPIService
	// contains filtered or unexported fields
}

func (ApiGetIndDataRepSessionRequest) Execute

type ApiReportUEDataRequest

type ApiReportUEDataRequest struct {
	ApiService *IndividualDataReportingSessionAPIService
	// contains filtered or unexported fields
}

func (ApiReportUEDataRequest) DataReport

func (r ApiReportUEDataRequest) DataReport(dataReport DataReport) ApiReportUEDataRequest

func (ApiReportUEDataRequest) Execute

type ApiUpdateIndDataRepSessionRequest

type ApiUpdateIndDataRepSessionRequest struct {
	ApiService *IndividualDataReportingSessionAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateIndDataRepSessionRequest) DataReportingSession

func (ApiUpdateIndDataRepSessionRequest) Execute

type ApplicationSpecificRecord

type ApplicationSpecificRecord struct {
	BaseRecord
	// String providing an URI formatted according to RFC 3986.
	RecordType      string      `json:"recordType"`
	RecordContainer interface{} `json:"recordContainer"`
}

ApplicationSpecificRecord A typed application-specific UE data reporting record.

func NewApplicationSpecificRecord

func NewApplicationSpecificRecord(recordType string, recordContainer interface{}, timestamp time.Time) *ApplicationSpecificRecord

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

func NewApplicationSpecificRecordWithDefaults

func NewApplicationSpecificRecordWithDefaults() *ApplicationSpecificRecord

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

func (*ApplicationSpecificRecord) GetRecordContainer

func (o *ApplicationSpecificRecord) GetRecordContainer() interface{}

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

func (*ApplicationSpecificRecord) GetRecordContainerOk

func (o *ApplicationSpecificRecord) GetRecordContainerOk() (*interface{}, bool)

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

func (*ApplicationSpecificRecord) GetRecordType

func (o *ApplicationSpecificRecord) GetRecordType() string

GetRecordType returns the RecordType field value

func (*ApplicationSpecificRecord) GetRecordTypeOk

func (o *ApplicationSpecificRecord) GetRecordTypeOk() (*string, bool)

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

func (ApplicationSpecificRecord) MarshalJSON

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

func (*ApplicationSpecificRecord) SetRecordContainer

func (o *ApplicationSpecificRecord) SetRecordContainer(v interface{})

SetRecordContainer sets field value

func (*ApplicationSpecificRecord) SetRecordType

func (o *ApplicationSpecificRecord) SetRecordType(v string)

SetRecordType sets field value

func (ApplicationSpecificRecord) ToMap

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

func (*ApplicationSpecificRecord) UnmarshalJSON

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

type BaseRecord

type BaseRecord struct {
	// string with format 'date-time' as defined in OpenAPI.
	Timestamp time.Time `json:"timestamp"`
}

BaseRecord Abstract base data type for UE data reporting records.

func NewBaseRecord

func NewBaseRecord(timestamp time.Time) *BaseRecord

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

func NewBaseRecordWithDefaults

func NewBaseRecordWithDefaults() *BaseRecord

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

func (*BaseRecord) GetTimestamp

func (o *BaseRecord) GetTimestamp() time.Time

GetTimestamp returns the Timestamp field value

func (*BaseRecord) GetTimestampOk

func (o *BaseRecord) GetTimestampOk() (*time.Time, bool)

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

func (BaseRecord) MarshalJSON

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

func (*BaseRecord) SetTimestamp

func (o *BaseRecord) SetTimestamp(v time.Time)

SetTimestamp sets field value

func (BaseRecord) ToMap

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

func (*BaseRecord) UnmarshalJSON

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

type BasicAuth

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

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

type CacheStatus

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

CacheStatus struct for CacheStatus

func (*CacheStatus) MarshalJSON

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

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

func (*CacheStatus) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type CivicAddress

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

CivicAddress Indicates a Civic address.

func NewCivicAddress

func NewCivicAddress() *CivicAddress

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

func NewCivicAddressWithDefaults

func NewCivicAddressWithDefaults() *CivicAddress

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

func (*CivicAddress) GetA1

func (o *CivicAddress) GetA1() string

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

func (*CivicAddress) GetA1Ok

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

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

func (*CivicAddress) GetA2

func (o *CivicAddress) GetA2() string

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

func (*CivicAddress) GetA2Ok

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

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

func (*CivicAddress) GetA3

func (o *CivicAddress) GetA3() string

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

func (*CivicAddress) GetA3Ok

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

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

func (*CivicAddress) GetA4

func (o *CivicAddress) GetA4() string

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

func (*CivicAddress) GetA4Ok

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

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

func (*CivicAddress) GetA5

func (o *CivicAddress) GetA5() string

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

func (*CivicAddress) GetA5Ok

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

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

func (*CivicAddress) GetA6

func (o *CivicAddress) GetA6() string

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

func (*CivicAddress) GetA6Ok

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

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

func (*CivicAddress) GetADDCODE

func (o *CivicAddress) GetADDCODE() string

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

func (*CivicAddress) GetADDCODEOk

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

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

func (*CivicAddress) GetBLD

func (o *CivicAddress) GetBLD() string

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

func (*CivicAddress) GetBLDOk

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

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

func (*CivicAddress) GetCountry

func (o *CivicAddress) GetCountry() string

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

func (*CivicAddress) GetCountryOk

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

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

func (*CivicAddress) GetFLR

func (o *CivicAddress) GetFLR() string

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

func (*CivicAddress) GetFLROk

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

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

func (*CivicAddress) GetHNO

func (o *CivicAddress) GetHNO() string

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

func (*CivicAddress) GetHNOOk

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

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

func (*CivicAddress) GetHNS

func (o *CivicAddress) GetHNS() string

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

func (*CivicAddress) GetHNSOk

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

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

func (*CivicAddress) GetLMK

func (o *CivicAddress) GetLMK() string

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

func (*CivicAddress) GetLMKOk

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

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

func (*CivicAddress) GetLOC

func (o *CivicAddress) GetLOC() string

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

func (*CivicAddress) GetLOCOk

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

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

func (*CivicAddress) GetMethod

func (o *CivicAddress) GetMethod() string

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

func (*CivicAddress) GetMethodOk

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

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

func (*CivicAddress) GetNAM

func (o *CivicAddress) GetNAM() string

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

func (*CivicAddress) GetNAMOk

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

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

func (*CivicAddress) GetPC

func (o *CivicAddress) GetPC() string

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

func (*CivicAddress) GetPCN

func (o *CivicAddress) GetPCN() string

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

func (*CivicAddress) GetPCNOk

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

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

func (*CivicAddress) GetPCOk

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

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

func (*CivicAddress) GetPLC

func (o *CivicAddress) GetPLC() string

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

func (*CivicAddress) GetPLCOk

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

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

func (*CivicAddress) GetPOBOX

func (o *CivicAddress) GetPOBOX() string

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

func (*CivicAddress) GetPOBOXOk

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

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

func (*CivicAddress) GetPOD

func (o *CivicAddress) GetPOD() string

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

func (*CivicAddress) GetPODOk

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

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

func (*CivicAddress) GetPOM

func (o *CivicAddress) GetPOM() string

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

func (*CivicAddress) GetPOMOk

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

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

func (*CivicAddress) GetPRD

func (o *CivicAddress) GetPRD() string

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

func (*CivicAddress) GetPRDOk

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

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

func (*CivicAddress) GetPRM

func (o *CivicAddress) GetPRM() string

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

func (*CivicAddress) GetPRMOk

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

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

func (*CivicAddress) GetProvidedBy

func (o *CivicAddress) GetProvidedBy() string

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

func (*CivicAddress) GetProvidedByOk

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

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

func (*CivicAddress) GetRD

func (o *CivicAddress) GetRD() string

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

func (*CivicAddress) GetRDBR

func (o *CivicAddress) GetRDBR() string

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

func (*CivicAddress) GetRDBROk

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

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

func (*CivicAddress) GetRDOk

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

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

func (*CivicAddress) GetRDSEC

func (o *CivicAddress) GetRDSEC() string

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

func (*CivicAddress) GetRDSECOk

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

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

func (*CivicAddress) GetRDSUBBR

func (o *CivicAddress) GetRDSUBBR() string

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

func (*CivicAddress) GetRDSUBBROk

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

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

func (*CivicAddress) GetROOM

func (o *CivicAddress) GetROOM() string

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

func (*CivicAddress) GetROOMOk

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

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

func (*CivicAddress) GetSEAT

func (o *CivicAddress) GetSEAT() string

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

func (*CivicAddress) GetSEATOk

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

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

func (*CivicAddress) GetSTS

func (o *CivicAddress) GetSTS() string

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

func (*CivicAddress) GetSTSOk

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

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

func (*CivicAddress) GetUNIT

func (o *CivicAddress) GetUNIT() string

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

func (*CivicAddress) GetUNITOk

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

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

func (*CivicAddress) GetUsageRules

func (o *CivicAddress) GetUsageRules() string

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

func (*CivicAddress) GetUsageRulesOk

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

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

func (*CivicAddress) HasA1

func (o *CivicAddress) HasA1() bool

HasA1 returns a boolean if a field has been set.

func (*CivicAddress) HasA2

func (o *CivicAddress) HasA2() bool

HasA2 returns a boolean if a field has been set.

func (*CivicAddress) HasA3

func (o *CivicAddress) HasA3() bool

HasA3 returns a boolean if a field has been set.

func (*CivicAddress) HasA4

func (o *CivicAddress) HasA4() bool

HasA4 returns a boolean if a field has been set.

func (*CivicAddress) HasA5

func (o *CivicAddress) HasA5() bool

HasA5 returns a boolean if a field has been set.

func (*CivicAddress) HasA6

func (o *CivicAddress) HasA6() bool

HasA6 returns a boolean if a field has been set.

func (*CivicAddress) HasADDCODE

func (o *CivicAddress) HasADDCODE() bool

HasADDCODE returns a boolean if a field has been set.

func (*CivicAddress) HasBLD

func (o *CivicAddress) HasBLD() bool

HasBLD returns a boolean if a field has been set.

func (*CivicAddress) HasCountry

func (o *CivicAddress) HasCountry() bool

HasCountry returns a boolean if a field has been set.

func (*CivicAddress) HasFLR

func (o *CivicAddress) HasFLR() bool

HasFLR returns a boolean if a field has been set.

func (*CivicAddress) HasHNO

func (o *CivicAddress) HasHNO() bool

HasHNO returns a boolean if a field has been set.

func (*CivicAddress) HasHNS

func (o *CivicAddress) HasHNS() bool

HasHNS returns a boolean if a field has been set.

func (*CivicAddress) HasLMK

func (o *CivicAddress) HasLMK() bool

HasLMK returns a boolean if a field has been set.

func (*CivicAddress) HasLOC

func (o *CivicAddress) HasLOC() bool

HasLOC returns a boolean if a field has been set.

func (*CivicAddress) HasMethod

func (o *CivicAddress) HasMethod() bool

HasMethod returns a boolean if a field has been set.

func (*CivicAddress) HasNAM

func (o *CivicAddress) HasNAM() bool

HasNAM returns a boolean if a field has been set.

func (*CivicAddress) HasPC

func (o *CivicAddress) HasPC() bool

HasPC returns a boolean if a field has been set.

func (*CivicAddress) HasPCN

func (o *CivicAddress) HasPCN() bool

HasPCN returns a boolean if a field has been set.

func (*CivicAddress) HasPLC

func (o *CivicAddress) HasPLC() bool

HasPLC returns a boolean if a field has been set.

func (*CivicAddress) HasPOBOX

func (o *CivicAddress) HasPOBOX() bool

HasPOBOX returns a boolean if a field has been set.

func (*CivicAddress) HasPOD

func (o *CivicAddress) HasPOD() bool

HasPOD returns a boolean if a field has been set.

func (*CivicAddress) HasPOM

func (o *CivicAddress) HasPOM() bool

HasPOM returns a boolean if a field has been set.

func (*CivicAddress) HasPRD

func (o *CivicAddress) HasPRD() bool

HasPRD returns a boolean if a field has been set.

func (*CivicAddress) HasPRM

func (o *CivicAddress) HasPRM() bool

HasPRM returns a boolean if a field has been set.

func (*CivicAddress) HasProvidedBy

func (o *CivicAddress) HasProvidedBy() bool

HasProvidedBy returns a boolean if a field has been set.

func (*CivicAddress) HasRD

func (o *CivicAddress) HasRD() bool

HasRD returns a boolean if a field has been set.

func (*CivicAddress) HasRDBR

func (o *CivicAddress) HasRDBR() bool

HasRDBR returns a boolean if a field has been set.

func (*CivicAddress) HasRDSEC

func (o *CivicAddress) HasRDSEC() bool

HasRDSEC returns a boolean if a field has been set.

func (*CivicAddress) HasRDSUBBR

func (o *CivicAddress) HasRDSUBBR() bool

HasRDSUBBR returns a boolean if a field has been set.

func (*CivicAddress) HasROOM

func (o *CivicAddress) HasROOM() bool

HasROOM returns a boolean if a field has been set.

func (*CivicAddress) HasSEAT

func (o *CivicAddress) HasSEAT() bool

HasSEAT returns a boolean if a field has been set.

func (*CivicAddress) HasSTS

func (o *CivicAddress) HasSTS() bool

HasSTS returns a boolean if a field has been set.

func (*CivicAddress) HasUNIT

func (o *CivicAddress) HasUNIT() bool

HasUNIT returns a boolean if a field has been set.

func (*CivicAddress) HasUsageRules

func (o *CivicAddress) HasUsageRules() bool

HasUsageRules returns a boolean if a field has been set.

func (CivicAddress) MarshalJSON

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

func (*CivicAddress) SetA1

func (o *CivicAddress) SetA1(v string)

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

func (*CivicAddress) SetA2

func (o *CivicAddress) SetA2(v string)

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

func (*CivicAddress) SetA3

func (o *CivicAddress) SetA3(v string)

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

func (*CivicAddress) SetA4

func (o *CivicAddress) SetA4(v string)

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

func (*CivicAddress) SetA5

func (o *CivicAddress) SetA5(v string)

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

func (*CivicAddress) SetA6

func (o *CivicAddress) SetA6(v string)

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

func (*CivicAddress) SetADDCODE

func (o *CivicAddress) SetADDCODE(v string)

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

func (*CivicAddress) SetBLD

func (o *CivicAddress) SetBLD(v string)

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

func (*CivicAddress) SetCountry

func (o *CivicAddress) SetCountry(v string)

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

func (*CivicAddress) SetFLR

func (o *CivicAddress) SetFLR(v string)

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

func (*CivicAddress) SetHNO

func (o *CivicAddress) SetHNO(v string)

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

func (*CivicAddress) SetHNS

func (o *CivicAddress) SetHNS(v string)

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

func (*CivicAddress) SetLMK

func (o *CivicAddress) SetLMK(v string)

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

func (*CivicAddress) SetLOC

func (o *CivicAddress) SetLOC(v string)

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

func (*CivicAddress) SetMethod

func (o *CivicAddress) SetMethod(v string)

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

func (*CivicAddress) SetNAM

func (o *CivicAddress) SetNAM(v string)

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

func (*CivicAddress) SetPC

func (o *CivicAddress) SetPC(v string)

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

func (*CivicAddress) SetPCN

func (o *CivicAddress) SetPCN(v string)

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

func (*CivicAddress) SetPLC

func (o *CivicAddress) SetPLC(v string)

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

func (*CivicAddress) SetPOBOX

func (o *CivicAddress) SetPOBOX(v string)

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

func (*CivicAddress) SetPOD

func (o *CivicAddress) SetPOD(v string)

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

func (*CivicAddress) SetPOM

func (o *CivicAddress) SetPOM(v string)

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

func (*CivicAddress) SetPRD

func (o *CivicAddress) SetPRD(v string)

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

func (*CivicAddress) SetPRM

func (o *CivicAddress) SetPRM(v string)

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

func (*CivicAddress) SetProvidedBy

func (o *CivicAddress) SetProvidedBy(v string)

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

func (*CivicAddress) SetRD

func (o *CivicAddress) SetRD(v string)

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

func (*CivicAddress) SetRDBR

func (o *CivicAddress) SetRDBR(v string)

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

func (*CivicAddress) SetRDSEC

func (o *CivicAddress) SetRDSEC(v string)

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

func (*CivicAddress) SetRDSUBBR

func (o *CivicAddress) SetRDSUBBR(v string)

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

func (*CivicAddress) SetROOM

func (o *CivicAddress) SetROOM(v string)

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

func (*CivicAddress) SetSEAT

func (o *CivicAddress) SetSEAT(v string)

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

func (*CivicAddress) SetSTS

func (o *CivicAddress) SetSTS(v string)

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

func (*CivicAddress) SetUNIT

func (o *CivicAddress) SetUNIT(v string)

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

func (*CivicAddress) SetUsageRules

func (o *CivicAddress) SetUsageRules(v string)

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

func (CivicAddress) ToMap

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

type CommunicationRecord

type CommunicationRecord struct {
	BaseRecord
	TimeInterval TimeWindow `json:"timeInterval"`
	// Unsigned integer identifying a volume in units of bytes.
	UplinkVolume *int64 `json:"uplinkVolume,omitempty"`
	// Unsigned integer identifying a volume in units of bytes.
	DownlinkVolume *int64 `json:"downlinkVolume,omitempty"`
}

CommunicationRecord A data reporting record for UE communication.

func NewCommunicationRecord

func NewCommunicationRecord(timeInterval TimeWindow, timestamp time.Time) *CommunicationRecord

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

func NewCommunicationRecordWithDefaults

func NewCommunicationRecordWithDefaults() *CommunicationRecord

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

func (*CommunicationRecord) GetDownlinkVolume

func (o *CommunicationRecord) GetDownlinkVolume() int64

GetDownlinkVolume returns the DownlinkVolume field value if set, zero value otherwise.

func (*CommunicationRecord) GetDownlinkVolumeOk

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

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

func (*CommunicationRecord) GetTimeInterval

func (o *CommunicationRecord) GetTimeInterval() TimeWindow

GetTimeInterval returns the TimeInterval field value

func (*CommunicationRecord) GetTimeIntervalOk

func (o *CommunicationRecord) GetTimeIntervalOk() (*TimeWindow, bool)

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

func (*CommunicationRecord) GetUplinkVolume

func (o *CommunicationRecord) GetUplinkVolume() int64

GetUplinkVolume returns the UplinkVolume field value if set, zero value otherwise.

func (*CommunicationRecord) GetUplinkVolumeOk

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

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

func (*CommunicationRecord) HasDownlinkVolume

func (o *CommunicationRecord) HasDownlinkVolume() bool

HasDownlinkVolume returns a boolean if a field has been set.

func (*CommunicationRecord) HasUplinkVolume

func (o *CommunicationRecord) HasUplinkVolume() bool

HasUplinkVolume returns a boolean if a field has been set.

func (CommunicationRecord) MarshalJSON

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

func (*CommunicationRecord) SetDownlinkVolume

func (o *CommunicationRecord) SetDownlinkVolume(v int64)

SetDownlinkVolume gets a reference to the given int64 and assigns it to the DownlinkVolume field.

func (*CommunicationRecord) SetTimeInterval

func (o *CommunicationRecord) SetTimeInterval(v TimeWindow)

SetTimeInterval sets field value

func (*CommunicationRecord) SetUplinkVolume

func (o *CommunicationRecord) SetUplinkVolume(v int64)

SetUplinkVolume gets a reference to the given int64 and assigns it to the UplinkVolume field.

func (CommunicationRecord) ToMap

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

func (*CommunicationRecord) UnmarshalJSON

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

type Configuration

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

Configuration stores the configuration of the API client

func NewConfiguration

func NewConfiguration() *Configuration

NewConfiguration returns a new Configuration object

func (*Configuration) AddDefaultHeader

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

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

func (*Configuration) ServerURL

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

ServerURL returns URL based on server settings

func (*Configuration) ServerURLWithContext

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

ServerURLWithContext returns a new server URL given an endpoint

type DataDomain

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

DataDomain A data reporting domain.

func (*DataDomain) MarshalJSON

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

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

func (*DataDomain) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type DataReport

type DataReport struct {
	// String providing an application identifier.
	ExternalApplicationId       string                       `json:"externalApplicationId"`
	ServiceExperienceRecords    []ServiceExperienceRecord    `json:"serviceExperienceRecords,omitempty"`
	LocationRecords             []LocationRecord             `json:"locationRecords,omitempty"`
	CommunicationRecords        []CommunicationRecord        `json:"communicationRecords,omitempty"`
	PerformanceDataRecords      []PerformanceDataRecord      `json:"performanceDataRecords,omitempty"`
	ApplicationSpecificRecords  []ApplicationSpecificRecord  `json:"applicationSpecificRecords,omitempty"`
	TripPlanRecords             []TripPlanRecord             `json:"tripPlanRecords,omitempty"`
	MediaStreamingAccessRecords []MediaStreamingAccessRecord `json:"mediaStreamingAccessRecords,omitempty"`
}

DataReport A data report sent by a data collection client to the Data Collection AF.

func NewDataReport

func NewDataReport(externalApplicationId string) *DataReport

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

func NewDataReportWithDefaults

func NewDataReportWithDefaults() *DataReport

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

func (*DataReport) GetApplicationSpecificRecords

func (o *DataReport) GetApplicationSpecificRecords() []ApplicationSpecificRecord

GetApplicationSpecificRecords returns the ApplicationSpecificRecords field value if set, zero value otherwise.

func (*DataReport) GetApplicationSpecificRecordsOk

func (o *DataReport) GetApplicationSpecificRecordsOk() ([]ApplicationSpecificRecord, bool)

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

func (*DataReport) GetCommunicationRecords

func (o *DataReport) GetCommunicationRecords() []CommunicationRecord

GetCommunicationRecords returns the CommunicationRecords field value if set, zero value otherwise.

func (*DataReport) GetCommunicationRecordsOk

func (o *DataReport) GetCommunicationRecordsOk() ([]CommunicationRecord, bool)

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

func (*DataReport) GetExternalApplicationId

func (o *DataReport) GetExternalApplicationId() string

GetExternalApplicationId returns the ExternalApplicationId field value

func (*DataReport) GetExternalApplicationIdOk

func (o *DataReport) GetExternalApplicationIdOk() (*string, bool)

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

func (*DataReport) GetLocationRecords

func (o *DataReport) GetLocationRecords() []LocationRecord

GetLocationRecords returns the LocationRecords field value if set, zero value otherwise.

func (*DataReport) GetLocationRecordsOk

func (o *DataReport) GetLocationRecordsOk() ([]LocationRecord, bool)

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

func (*DataReport) GetMediaStreamingAccessRecords

func (o *DataReport) GetMediaStreamingAccessRecords() []MediaStreamingAccessRecord

GetMediaStreamingAccessRecords returns the MediaStreamingAccessRecords field value if set, zero value otherwise.

func (*DataReport) GetMediaStreamingAccessRecordsOk

func (o *DataReport) GetMediaStreamingAccessRecordsOk() ([]MediaStreamingAccessRecord, bool)

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

func (*DataReport) GetPerformanceDataRecords

func (o *DataReport) GetPerformanceDataRecords() []PerformanceDataRecord

GetPerformanceDataRecords returns the PerformanceDataRecords field value if set, zero value otherwise.

func (*DataReport) GetPerformanceDataRecordsOk

func (o *DataReport) GetPerformanceDataRecordsOk() ([]PerformanceDataRecord, bool)

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

func (*DataReport) GetServiceExperienceRecords

func (o *DataReport) GetServiceExperienceRecords() []ServiceExperienceRecord

GetServiceExperienceRecords returns the ServiceExperienceRecords field value if set, zero value otherwise.

func (*DataReport) GetServiceExperienceRecordsOk

func (o *DataReport) GetServiceExperienceRecordsOk() ([]ServiceExperienceRecord, bool)

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

func (*DataReport) GetTripPlanRecords

func (o *DataReport) GetTripPlanRecords() []TripPlanRecord

GetTripPlanRecords returns the TripPlanRecords field value if set, zero value otherwise.

func (*DataReport) GetTripPlanRecordsOk

func (o *DataReport) GetTripPlanRecordsOk() ([]TripPlanRecord, bool)

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

func (*DataReport) HasApplicationSpecificRecords

func (o *DataReport) HasApplicationSpecificRecords() bool

HasApplicationSpecificRecords returns a boolean if a field has been set.

func (*DataReport) HasCommunicationRecords

func (o *DataReport) HasCommunicationRecords() bool

HasCommunicationRecords returns a boolean if a field has been set.

func (*DataReport) HasLocationRecords

func (o *DataReport) HasLocationRecords() bool

HasLocationRecords returns a boolean if a field has been set.

func (*DataReport) HasMediaStreamingAccessRecords

func (o *DataReport) HasMediaStreamingAccessRecords() bool

HasMediaStreamingAccessRecords returns a boolean if a field has been set.

func (*DataReport) HasPerformanceDataRecords

func (o *DataReport) HasPerformanceDataRecords() bool

HasPerformanceDataRecords returns a boolean if a field has been set.

func (*DataReport) HasServiceExperienceRecords

func (o *DataReport) HasServiceExperienceRecords() bool

HasServiceExperienceRecords returns a boolean if a field has been set.

func (*DataReport) HasTripPlanRecords

func (o *DataReport) HasTripPlanRecords() bool

HasTripPlanRecords returns a boolean if a field has been set.

func (DataReport) MarshalJSON

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

func (*DataReport) SetApplicationSpecificRecords

func (o *DataReport) SetApplicationSpecificRecords(v []ApplicationSpecificRecord)

SetApplicationSpecificRecords gets a reference to the given []ApplicationSpecificRecord and assigns it to the ApplicationSpecificRecords field.

func (*DataReport) SetCommunicationRecords

func (o *DataReport) SetCommunicationRecords(v []CommunicationRecord)

SetCommunicationRecords gets a reference to the given []CommunicationRecord and assigns it to the CommunicationRecords field.

func (*DataReport) SetExternalApplicationId

func (o *DataReport) SetExternalApplicationId(v string)

SetExternalApplicationId sets field value

func (*DataReport) SetLocationRecords

func (o *DataReport) SetLocationRecords(v []LocationRecord)

SetLocationRecords gets a reference to the given []LocationRecord and assigns it to the LocationRecords field.

func (*DataReport) SetMediaStreamingAccessRecords

func (o *DataReport) SetMediaStreamingAccessRecords(v []MediaStreamingAccessRecord)

SetMediaStreamingAccessRecords gets a reference to the given []MediaStreamingAccessRecord and assigns it to the MediaStreamingAccessRecords field.

func (*DataReport) SetPerformanceDataRecords

func (o *DataReport) SetPerformanceDataRecords(v []PerformanceDataRecord)

SetPerformanceDataRecords gets a reference to the given []PerformanceDataRecord and assigns it to the PerformanceDataRecords field.

func (*DataReport) SetServiceExperienceRecords

func (o *DataReport) SetServiceExperienceRecords(v []ServiceExperienceRecord)

SetServiceExperienceRecords gets a reference to the given []ServiceExperienceRecord and assigns it to the ServiceExperienceRecords field.

func (*DataReport) SetTripPlanRecords

func (o *DataReport) SetTripPlanRecords(v []TripPlanRecord)

SetTripPlanRecords gets a reference to the given []TripPlanRecord and assigns it to the TripPlanRecords field.

func (DataReport) ToMap

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

func (*DataReport) UnmarshalJSON

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

type DataReportingRule

type DataReportingRule struct {
	ReportingProbability *float32 `json:"reportingProbability,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	ReportingFormat       string  `json:"reportingFormat"`
	DataPackagingStrategy *string `json:"dataPackagingStrategy,omitempty"`
}

DataReportingRule Instructions on how collected UE data is to be reported by the data collection client to the Data Collection AF.

func NewDataReportingRule

func NewDataReportingRule(reportingFormat string) *DataReportingRule

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

func NewDataReportingRuleWithDefaults

func NewDataReportingRuleWithDefaults() *DataReportingRule

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

func (*DataReportingRule) GetDataPackagingStrategy

func (o *DataReportingRule) GetDataPackagingStrategy() string

GetDataPackagingStrategy returns the DataPackagingStrategy field value if set, zero value otherwise.

func (*DataReportingRule) GetDataPackagingStrategyOk

func (o *DataReportingRule) GetDataPackagingStrategyOk() (*string, bool)

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

func (*DataReportingRule) GetReportingFormat

func (o *DataReportingRule) GetReportingFormat() string

GetReportingFormat returns the ReportingFormat field value

func (*DataReportingRule) GetReportingFormatOk

func (o *DataReportingRule) GetReportingFormatOk() (*string, bool)

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

func (*DataReportingRule) GetReportingProbability

func (o *DataReportingRule) GetReportingProbability() float32

GetReportingProbability returns the ReportingProbability field value if set, zero value otherwise.

func (*DataReportingRule) GetReportingProbabilityOk

func (o *DataReportingRule) GetReportingProbabilityOk() (*float32, bool)

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

func (*DataReportingRule) HasDataPackagingStrategy

func (o *DataReportingRule) HasDataPackagingStrategy() bool

HasDataPackagingStrategy returns a boolean if a field has been set.

func (*DataReportingRule) HasReportingProbability

func (o *DataReportingRule) HasReportingProbability() bool

HasReportingProbability returns a boolean if a field has been set.

func (DataReportingRule) MarshalJSON

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

func (*DataReportingRule) SetDataPackagingStrategy

func (o *DataReportingRule) SetDataPackagingStrategy(v string)

SetDataPackagingStrategy gets a reference to the given string and assigns it to the DataPackagingStrategy field.

func (*DataReportingRule) SetReportingFormat

func (o *DataReportingRule) SetReportingFormat(v string)

SetReportingFormat sets field value

func (*DataReportingRule) SetReportingProbability

func (o *DataReportingRule) SetReportingProbability(v float32)

SetReportingProbability gets a reference to the given float32 and assigns it to the ReportingProbability field.

func (DataReportingRule) ToMap

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

func (*DataReportingRule) UnmarshalJSON

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

type DataReportingSession

type DataReportingSession struct {
	// String chosen by the 5GMS AF to serve as an identifier in a resource URI.
	SessionId *string `json:"sessionId,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	ValidUntil *time.Time `json:"validUntil,omitempty"`
	// String providing an application identifier.
	ExternalApplicationId string                                         `json:"externalApplicationId"`
	SupportedDomains      []DataDomain                                   `json:"supportedDomains"`
	SamplingRules         []DataReportingSessionSamplingRulesInner       `json:"samplingRules,omitempty"`
	ReportingConditions   []DataReportingSessionReportingConditionsInner `json:"reportingConditions"`
	ReportingRules        []DataReportingSessionReportingRulesInner      `json:"reportingRules,omitempty"`
}

DataReportingSession A representation of a Data Reporting Session.

func NewDataReportingSession

func NewDataReportingSession(externalApplicationId string, supportedDomains []DataDomain, reportingConditions []DataReportingSessionReportingConditionsInner) *DataReportingSession

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

func NewDataReportingSessionWithDefaults

func NewDataReportingSessionWithDefaults() *DataReportingSession

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

func (*DataReportingSession) GetExternalApplicationId

func (o *DataReportingSession) GetExternalApplicationId() string

GetExternalApplicationId returns the ExternalApplicationId field value

func (*DataReportingSession) GetExternalApplicationIdOk

func (o *DataReportingSession) GetExternalApplicationIdOk() (*string, bool)

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

func (*DataReportingSession) GetReportingConditions

GetReportingConditions returns the ReportingConditions field value

func (*DataReportingSession) GetReportingConditionsOk

func (o *DataReportingSession) GetReportingConditionsOk() ([]DataReportingSessionReportingConditionsInner, bool)

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

func (*DataReportingSession) GetReportingRules

GetReportingRules returns the ReportingRules field value if set, zero value otherwise.

func (*DataReportingSession) GetReportingRulesOk

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

func (*DataReportingSession) GetSamplingRules

GetSamplingRules returns the SamplingRules field value if set, zero value otherwise.

func (*DataReportingSession) GetSamplingRulesOk

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

func (*DataReportingSession) GetSessionId

func (o *DataReportingSession) GetSessionId() string

GetSessionId returns the SessionId field value if set, zero value otherwise.

func (*DataReportingSession) GetSessionIdOk

func (o *DataReportingSession) GetSessionIdOk() (*string, bool)

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

func (*DataReportingSession) GetSupportedDomains

func (o *DataReportingSession) GetSupportedDomains() []DataDomain

GetSupportedDomains returns the SupportedDomains field value

func (*DataReportingSession) GetSupportedDomainsOk

func (o *DataReportingSession) GetSupportedDomainsOk() ([]DataDomain, bool)

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

func (*DataReportingSession) GetValidUntil

func (o *DataReportingSession) GetValidUntil() time.Time

GetValidUntil returns the ValidUntil field value if set, zero value otherwise.

func (*DataReportingSession) GetValidUntilOk

func (o *DataReportingSession) GetValidUntilOk() (*time.Time, bool)

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

func (*DataReportingSession) HasReportingRules

func (o *DataReportingSession) HasReportingRules() bool

HasReportingRules returns a boolean if a field has been set.

func (*DataReportingSession) HasSamplingRules

func (o *DataReportingSession) HasSamplingRules() bool

HasSamplingRules returns a boolean if a field has been set.

func (*DataReportingSession) HasSessionId

func (o *DataReportingSession) HasSessionId() bool

HasSessionId returns a boolean if a field has been set.

func (*DataReportingSession) HasValidUntil

func (o *DataReportingSession) HasValidUntil() bool

HasValidUntil returns a boolean if a field has been set.

func (DataReportingSession) MarshalJSON

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

func (*DataReportingSession) SetExternalApplicationId

func (o *DataReportingSession) SetExternalApplicationId(v string)

SetExternalApplicationId sets field value

func (*DataReportingSession) SetReportingConditions

SetReportingConditions sets field value

func (*DataReportingSession) SetReportingRules

SetReportingRules gets a reference to the given []DataReportingSessionReportingRulesInner and assigns it to the ReportingRules field.

func (*DataReportingSession) SetSamplingRules

SetSamplingRules gets a reference to the given []DataReportingSessionSamplingRulesInner and assigns it to the SamplingRules field.

func (*DataReportingSession) SetSessionId

func (o *DataReportingSession) SetSessionId(v string)

SetSessionId gets a reference to the given string and assigns it to the SessionId field.

func (*DataReportingSession) SetSupportedDomains

func (o *DataReportingSession) SetSupportedDomains(v []DataDomain)

SetSupportedDomains sets field value

func (*DataReportingSession) SetValidUntil

func (o *DataReportingSession) SetValidUntil(v time.Time)

SetValidUntil gets a reference to the given time.Time and assigns it to the ValidUntil field.

func (DataReportingSession) ToMap

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

func (*DataReportingSession) UnmarshalJSON

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

type DataReportingSessionReportingConditionsInner

type DataReportingSessionReportingConditionsInner struct {
	DataDomain DataDomain           `json:"dataDomain"`
	Conditions []ReportingCondition `json:"conditions"`
}

DataReportingSessionReportingConditionsInner struct for DataReportingSessionReportingConditionsInner

func NewDataReportingSessionReportingConditionsInner

func NewDataReportingSessionReportingConditionsInner(dataDomain DataDomain, conditions []ReportingCondition) *DataReportingSessionReportingConditionsInner

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

func NewDataReportingSessionReportingConditionsInnerWithDefaults

func NewDataReportingSessionReportingConditionsInnerWithDefaults() *DataReportingSessionReportingConditionsInner

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

func (*DataReportingSessionReportingConditionsInner) GetConditions

GetConditions returns the Conditions field value

func (*DataReportingSessionReportingConditionsInner) GetConditionsOk

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

func (*DataReportingSessionReportingConditionsInner) GetDataDomain

GetDataDomain returns the DataDomain field value

func (*DataReportingSessionReportingConditionsInner) GetDataDomainOk

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

func (DataReportingSessionReportingConditionsInner) MarshalJSON

func (*DataReportingSessionReportingConditionsInner) SetConditions

SetConditions sets field value

func (*DataReportingSessionReportingConditionsInner) SetDataDomain

SetDataDomain sets field value

func (DataReportingSessionReportingConditionsInner) ToMap

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

func (*DataReportingSessionReportingConditionsInner) UnmarshalJSON

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

type DataReportingSessionReportingRulesInner

type DataReportingSessionReportingRulesInner struct {
	DataDomain DataDomain          `json:"dataDomain"`
	Rules      []DataReportingRule `json:"rules"`
}

DataReportingSessionReportingRulesInner struct for DataReportingSessionReportingRulesInner

func NewDataReportingSessionReportingRulesInner

func NewDataReportingSessionReportingRulesInner(dataDomain DataDomain, rules []DataReportingRule) *DataReportingSessionReportingRulesInner

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

func NewDataReportingSessionReportingRulesInnerWithDefaults

func NewDataReportingSessionReportingRulesInnerWithDefaults() *DataReportingSessionReportingRulesInner

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

func (*DataReportingSessionReportingRulesInner) GetDataDomain

GetDataDomain returns the DataDomain field value

func (*DataReportingSessionReportingRulesInner) GetDataDomainOk

func (o *DataReportingSessionReportingRulesInner) GetDataDomainOk() (*DataDomain, bool)

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

func (*DataReportingSessionReportingRulesInner) GetRules

GetRules returns the Rules field value

func (*DataReportingSessionReportingRulesInner) GetRulesOk

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

func (DataReportingSessionReportingRulesInner) MarshalJSON

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

func (*DataReportingSessionReportingRulesInner) SetDataDomain

SetDataDomain sets field value

func (*DataReportingSessionReportingRulesInner) SetRules

SetRules sets field value

func (DataReportingSessionReportingRulesInner) ToMap

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

func (*DataReportingSessionReportingRulesInner) UnmarshalJSON

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

type DataReportingSessionSamplingRulesInner

type DataReportingSessionSamplingRulesInner struct {
	DataDomain DataDomain         `json:"dataDomain"`
	Rules      []DataSamplingRule `json:"rules"`
}

DataReportingSessionSamplingRulesInner struct for DataReportingSessionSamplingRulesInner

func NewDataReportingSessionSamplingRulesInner

func NewDataReportingSessionSamplingRulesInner(dataDomain DataDomain, rules []DataSamplingRule) *DataReportingSessionSamplingRulesInner

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

func NewDataReportingSessionSamplingRulesInnerWithDefaults

func NewDataReportingSessionSamplingRulesInnerWithDefaults() *DataReportingSessionSamplingRulesInner

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

func (*DataReportingSessionSamplingRulesInner) GetDataDomain

GetDataDomain returns the DataDomain field value

func (*DataReportingSessionSamplingRulesInner) GetDataDomainOk

func (o *DataReportingSessionSamplingRulesInner) GetDataDomainOk() (*DataDomain, bool)

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

func (*DataReportingSessionSamplingRulesInner) GetRules

GetRules returns the Rules field value

func (*DataReportingSessionSamplingRulesInner) GetRulesOk

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

func (DataReportingSessionSamplingRulesInner) MarshalJSON

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

func (*DataReportingSessionSamplingRulesInner) SetDataDomain

SetDataDomain sets field value

func (*DataReportingSessionSamplingRulesInner) SetRules

SetRules sets field value

func (DataReportingSessionSamplingRulesInner) ToMap

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

func (*DataReportingSessionSamplingRulesInner) UnmarshalJSON

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

type DataReportingSessionsAPIService

type DataReportingSessionsAPIService service

DataReportingSessionsAPIService DataReportingSessionsAPI service

func (*DataReportingSessionsAPIService) CreateDataRepSession

CreateDataRepSession Create a new Data Reporting Session.

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

func (*DataReportingSessionsAPIService) CreateDataRepSessionExecute

Execute executes the request

@return DataReportingSession

type DataSamplingRule

type DataSamplingRule struct {
	// string with format 'float' as defined in OpenAPI.
	SamplingPeriod *float32        `json:"samplingPeriod,omitempty"`
	LocationFilter *LocationArea5G `json:"locationFilter,omitempty"`
}

DataSamplingRule Instructions on how UE data is to be sampled by the data collection client.

func NewDataSamplingRule

func NewDataSamplingRule() *DataSamplingRule

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

func NewDataSamplingRuleWithDefaults

func NewDataSamplingRuleWithDefaults() *DataSamplingRule

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

func (*DataSamplingRule) GetLocationFilter

func (o *DataSamplingRule) GetLocationFilter() LocationArea5G

GetLocationFilter returns the LocationFilter field value if set, zero value otherwise.

func (*DataSamplingRule) GetLocationFilterOk

func (o *DataSamplingRule) GetLocationFilterOk() (*LocationArea5G, bool)

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

func (*DataSamplingRule) GetSamplingPeriod

func (o *DataSamplingRule) GetSamplingPeriod() float32

GetSamplingPeriod returns the SamplingPeriod field value if set, zero value otherwise.

func (*DataSamplingRule) GetSamplingPeriodOk

func (o *DataSamplingRule) GetSamplingPeriodOk() (*float32, bool)

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

func (*DataSamplingRule) HasLocationFilter

func (o *DataSamplingRule) HasLocationFilter() bool

HasLocationFilter returns a boolean if a field has been set.

func (*DataSamplingRule) HasSamplingPeriod

func (o *DataSamplingRule) HasSamplingPeriod() bool

HasSamplingPeriod returns a boolean if a field has been set.

func (DataSamplingRule) MarshalJSON

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

func (*DataSamplingRule) SetLocationFilter

func (o *DataSamplingRule) SetLocationFilter(v LocationArea5G)

SetLocationFilter gets a reference to the given LocationArea5G and assigns it to the LocationFilter field.

func (*DataSamplingRule) SetSamplingPeriod

func (o *DataSamplingRule) SetSamplingPeriod(v float32)

SetSamplingPeriod gets a reference to the given float32 and assigns it to the SamplingPeriod field.

func (DataSamplingRule) ToMap

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

type Ecgi

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

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

func NewEcgi

func NewEcgi(plmnId PlmnId, eutraCellId string) *Ecgi

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

func NewEcgiWithDefaults

func NewEcgiWithDefaults() *Ecgi

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

func (*Ecgi) GetEutraCellId

func (o *Ecgi) GetEutraCellId() string

GetEutraCellId returns the EutraCellId field value

func (*Ecgi) GetEutraCellIdOk

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

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

func (*Ecgi) GetNid

func (o *Ecgi) GetNid() string

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

func (*Ecgi) GetNidOk

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

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

func (*Ecgi) GetPlmnId

func (o *Ecgi) GetPlmnId() PlmnId

GetPlmnId returns the PlmnId field value

func (*Ecgi) GetPlmnIdOk

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

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

func (*Ecgi) HasNid

func (o *Ecgi) HasNid() bool

HasNid returns a boolean if a field has been set.

func (Ecgi) MarshalJSON

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

func (*Ecgi) SetEutraCellId

func (o *Ecgi) SetEutraCellId(v string)

SetEutraCellId sets field value

func (*Ecgi) SetNid

func (o *Ecgi) SetNid(v string)

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

func (*Ecgi) SetPlmnId

func (o *Ecgi) SetPlmnId(v PlmnId)

SetPlmnId sets field value

func (Ecgi) ToMap

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

func (*Ecgi) UnmarshalJSON

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

type EllipsoidArc

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

EllipsoidArc Ellipsoid Arc.

func NewEllipsoidArc

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

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

func NewEllipsoidArcWithDefaults

func NewEllipsoidArcWithDefaults() *EllipsoidArc

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

func (*EllipsoidArc) GetConfidence

func (o *EllipsoidArc) GetConfidence() int32

GetConfidence returns the Confidence field value

func (*EllipsoidArc) GetConfidenceOk

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

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

func (*EllipsoidArc) GetIncludedAngle

func (o *EllipsoidArc) GetIncludedAngle() int32

GetIncludedAngle returns the IncludedAngle field value

func (*EllipsoidArc) GetIncludedAngleOk

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

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

func (*EllipsoidArc) GetInnerRadius

func (o *EllipsoidArc) GetInnerRadius() int32

GetInnerRadius returns the InnerRadius field value

func (*EllipsoidArc) GetInnerRadiusOk

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

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

func (*EllipsoidArc) GetOffsetAngle

func (o *EllipsoidArc) GetOffsetAngle() int32

GetOffsetAngle returns the OffsetAngle field value

func (*EllipsoidArc) GetOffsetAngleOk

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

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

func (*EllipsoidArc) GetPoint

func (o *EllipsoidArc) GetPoint() GeographicalCoordinates

GetPoint returns the Point field value

func (*EllipsoidArc) GetPointOk

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

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

func (*EllipsoidArc) GetUncertaintyRadius

func (o *EllipsoidArc) GetUncertaintyRadius() float32

GetUncertaintyRadius returns the UncertaintyRadius field value

func (*EllipsoidArc) GetUncertaintyRadiusOk

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

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

func (EllipsoidArc) MarshalJSON

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

func (*EllipsoidArc) SetConfidence

func (o *EllipsoidArc) SetConfidence(v int32)

SetConfidence sets field value

func (*EllipsoidArc) SetIncludedAngle

func (o *EllipsoidArc) SetIncludedAngle(v int32)

SetIncludedAngle sets field value

func (*EllipsoidArc) SetInnerRadius

func (o *EllipsoidArc) SetInnerRadius(v int32)

SetInnerRadius sets field value

func (*EllipsoidArc) SetOffsetAngle

func (o *EllipsoidArc) SetOffsetAngle(v int32)

SetOffsetAngle sets field value

func (*EllipsoidArc) SetPoint

func (o *EllipsoidArc) SetPoint(v GeographicalCoordinates)

SetPoint sets field value

func (*EllipsoidArc) SetUncertaintyRadius

func (o *EllipsoidArc) SetUncertaintyRadius(v float32)

SetUncertaintyRadius sets field value

func (EllipsoidArc) ToMap

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

func (*EllipsoidArc) UnmarshalJSON

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

type EndpointAddress

type EndpointAddress struct {
	Hostname *string `json:"hostname,omitempty"`
	// String identifying a IPv4 address formatted in the 'dotted decimal' notation as defined in RFC 1166.
	Ipv4Addr *string   `json:"ipv4Addr,omitempty"`
	Ipv6Addr *Ipv6Addr `json:"ipv6Addr,omitempty"`
	// Integer where the allowed values correspond to the value range of an unsigned 16-bit integer.
	PortNumber int32 `json:"portNumber"`
}

EndpointAddress struct for EndpointAddress

func NewEndpointAddress

func NewEndpointAddress(portNumber int32) *EndpointAddress

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

func NewEndpointAddressWithDefaults

func NewEndpointAddressWithDefaults() *EndpointAddress

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

func (*EndpointAddress) GetHostname

func (o *EndpointAddress) GetHostname() string

GetHostname returns the Hostname field value if set, zero value otherwise.

func (*EndpointAddress) GetHostnameOk

func (o *EndpointAddress) GetHostnameOk() (*string, bool)

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

func (*EndpointAddress) GetIpv4Addr

func (o *EndpointAddress) GetIpv4Addr() string

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

func (*EndpointAddress) GetIpv4AddrOk

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

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

func (*EndpointAddress) GetIpv6Addr

func (o *EndpointAddress) GetIpv6Addr() Ipv6Addr

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

func (*EndpointAddress) GetIpv6AddrOk

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

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

func (*EndpointAddress) GetPortNumber

func (o *EndpointAddress) GetPortNumber() int32

GetPortNumber returns the PortNumber field value

func (*EndpointAddress) GetPortNumberOk

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

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

func (*EndpointAddress) HasHostname

func (o *EndpointAddress) HasHostname() bool

HasHostname returns a boolean if a field has been set.

func (*EndpointAddress) HasIpv4Addr

func (o *EndpointAddress) HasIpv4Addr() bool

HasIpv4Addr returns a boolean if a field has been set.

func (*EndpointAddress) HasIpv6Addr

func (o *EndpointAddress) HasIpv6Addr() bool

HasIpv6Addr returns a boolean if a field has been set.

func (EndpointAddress) MarshalJSON

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

func (*EndpointAddress) SetHostname

func (o *EndpointAddress) SetHostname(v string)

SetHostname gets a reference to the given string and assigns it to the Hostname field.

func (*EndpointAddress) SetIpv4Addr

func (o *EndpointAddress) SetIpv4Addr(v string)

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

func (*EndpointAddress) SetIpv6Addr

func (o *EndpointAddress) SetIpv6Addr(v Ipv6Addr)

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

func (*EndpointAddress) SetPortNumber

func (o *EndpointAddress) SetPortNumber(v int32)

SetPortNumber sets field value

func (EndpointAddress) ToMap

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

func (*EndpointAddress) UnmarshalJSON

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

type FixType

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

FixType Specifies the positioning fix type.

func (*FixType) MarshalJSON

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

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

func (*FixType) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type GADShape

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

GADShape Common base type for GAD shapes.

func NewGADShape

func NewGADShape(shape SupportedGADShapes) *GADShape

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

func NewGADShapeWithDefaults

func NewGADShapeWithDefaults() *GADShape

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

func (*GADShape) GetShape

func (o *GADShape) GetShape() SupportedGADShapes

GetShape returns the Shape field value

func (*GADShape) GetShapeOk

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

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

func (GADShape) MarshalJSON

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

func (*GADShape) SetShape

func (o *GADShape) SetShape(v SupportedGADShapes)

SetShape sets field value

func (GADShape) ToMap

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

func (*GADShape) UnmarshalJSON

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

type GNbId

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

GNbId Provides the G-NB identifier.

func NewGNbId

func NewGNbId(bitLength int32, gNBValue string) *GNbId

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

func NewGNbIdWithDefaults

func NewGNbIdWithDefaults() *GNbId

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

func (*GNbId) GetBitLength

func (o *GNbId) GetBitLength() int32

GetBitLength returns the BitLength field value

func (*GNbId) GetBitLengthOk

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

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

func (*GNbId) GetGNBValue

func (o *GNbId) GetGNBValue() string

GetGNBValue returns the GNBValue field value

func (*GNbId) GetGNBValueOk

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

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

func (GNbId) MarshalJSON

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

func (*GNbId) SetBitLength

func (o *GNbId) SetBitLength(v int32)

SetBitLength sets field value

func (*GNbId) SetGNBValue

func (o *GNbId) SetGNBValue(v string)

SetGNBValue sets field value

func (GNbId) ToMap

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

func (*GNbId) UnmarshalJSON

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

type GenericOpenAPIError

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

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

func (GenericOpenAPIError) Body

func (e GenericOpenAPIError) Body() []byte

Body returns the raw bytes of the response

func (GenericOpenAPIError) Error

func (e GenericOpenAPIError) Error() string

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

func (GenericOpenAPIError) Model

func (e GenericOpenAPIError) Model() interface{}

Model returns the unpacked model of the error

type GeographicArea

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

GeographicArea Geographic area specified by different shape.

func (*GeographicArea) MarshalJSON

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

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

func (*GeographicArea) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type GeographicalCoordinates

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

GeographicalCoordinates Geographical coordinates.

func NewGeographicalCoordinates

func NewGeographicalCoordinates(lon float64, lat float64) *GeographicalCoordinates

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

func NewGeographicalCoordinatesWithDefaults

func NewGeographicalCoordinatesWithDefaults() *GeographicalCoordinates

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

func (*GeographicalCoordinates) GetLat

func (o *GeographicalCoordinates) GetLat() float64

GetLat returns the Lat field value

func (*GeographicalCoordinates) GetLatOk

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

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

func (*GeographicalCoordinates) GetLon

func (o *GeographicalCoordinates) GetLon() float64

GetLon returns the Lon field value

func (*GeographicalCoordinates) GetLonOk

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

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

func (GeographicalCoordinates) MarshalJSON

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

func (*GeographicalCoordinates) SetLat

func (o *GeographicalCoordinates) SetLat(v float64)

SetLat sets field value

func (*GeographicalCoordinates) SetLon

func (o *GeographicalCoordinates) SetLon(v float64)

SetLon sets field value

func (GeographicalCoordinates) ToMap

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

func (*GeographicalCoordinates) UnmarshalJSON

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

type GlobalRanNodeId

type GlobalRanNodeId struct {
	PlmnId PlmnId `json:"plmnId"`
	// This represents the identifier of the N3IWF ID as specified in clause 9.3.1.57 of  3GPP TS 38.413 in hexadecimal representation. Each character in the string shall take a value  of \"0\" to \"9\", \"a\" to \"f\" or \"A\" to \"F\" and shall represent 4 bits. The most significant  character representing the 4 most significant bits of the N3IWF ID shall appear first in the  string, and the character representing the 4 least significant bit of the N3IWF ID shall  appear last in the string.
	N3IwfId *string `json:"n3IwfId,omitempty"`
	GNbId   *GNbId  `json:"gNbId,omitempty"`
	// This represents the identifier of the ng-eNB ID as specified in clause 9.3.1.8 of  3GPP TS 38.413. The value of the ng-eNB ID shall be encoded in hexadecimal representation.  Each character in the string shall take a value of \"0\" to \"9\", \"a\" to \"f\" or \"A\" to \"F\" and  shall represent 4 bits. The padding 0 shall be added to make multiple nibbles, so the most  significant character representing the padding 0 if required together with the 4 most  significant bits of the ng-eNB ID shall appear first in the string, and the character  representing the 4 least significant bit of the ng-eNB ID (to form a nibble) shall appear last  in the string.
	NgeNbId *string `json:"ngeNbId,omitempty"`
	// This represents the identifier of the W-AGF ID as specified in clause 9.3.1.162 of  3GPP TS 38.413 in hexadecimal representation. Each character in the string shall take a value  of \"0\" to \"9\", \"a\" to \"f\" or \"A\" to \"F\" and shall represent 4 bits. The most significant  character representing the 4 most significant bits of the W-AGF ID shall appear first in the  string, and the character representing the 4 least significant bit of the W-AGF ID shall  appear last in the string.
	WagfId *string `json:"wagfId,omitempty"`
	// This represents the identifier of the TNGF ID as specified in clause 9.3.1.161 of  3GPP TS 38.413  in hexadecimal representation. Each character in the string shall take a value of \"0\" to \"9\", \"a\"  to \"f\" or \"A\" to \"F\" and shall represent 4 bits. The most significant character representing the  4 most significant bits of the TNGF ID shall appear first in the string, and the character  representing the 4 least significant bit of the TNGF ID shall appear last in the string.
	TngfId *string `json:"tngfId,omitempty"`
	// This represents the Network Identifier, which together with a PLMN ID is used to identify an SNPN (see 3GPP TS 23.003 and 3GPP TS 23.501 clause 5.30.2.1).
	Nid *string `json:"nid,omitempty"`
	// This represents the identifier of the eNB ID as specified in clause 9.2.1.37 of  3GPP TS 36.413. The string shall be formatted with the following pattern  '^('MacroeNB-[A-Fa-f0-9]{5}|LMacroeNB-[A-Fa-f0-9]{6}|SMacroeNB-[A-Fa-f0-9]{5} |HomeeNB-[A-Fa-f0-9]{7})$'. The value of the eNB ID shall be encoded in hexadecimal representation. Each character in the  string shall take a value of \"0\" to \"9\", \"a\" to \"f\" or \"A\" to \"F\" and shall represent 4 bits.  The padding 0 shall be added to make multiple nibbles, so the most significant character  representing the padding 0 if required together with the 4 most significant bits of the eNB ID  shall appear first in the string, and the character representing the 4 least significant bit  of the eNB ID (to form a nibble) shall appear last in the string.
	ENbId *string `json:"eNbId,omitempty"`
}

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

func NewGlobalRanNodeId

func NewGlobalRanNodeId(plmnId PlmnId) *GlobalRanNodeId

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

func NewGlobalRanNodeIdWithDefaults

func NewGlobalRanNodeIdWithDefaults() *GlobalRanNodeId

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

func (*GlobalRanNodeId) GetENbId

func (o *GlobalRanNodeId) GetENbId() string

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

func (*GlobalRanNodeId) GetENbIdOk

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

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

func (*GlobalRanNodeId) GetGNbId

func (o *GlobalRanNodeId) GetGNbId() GNbId

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

func (*GlobalRanNodeId) GetGNbIdOk

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

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

func (*GlobalRanNodeId) GetN3IwfId

func (o *GlobalRanNodeId) GetN3IwfId() string

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

func (*GlobalRanNodeId) GetN3IwfIdOk

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

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

func (*GlobalRanNodeId) GetNgeNbId

func (o *GlobalRanNodeId) GetNgeNbId() string

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

func (*GlobalRanNodeId) GetNgeNbIdOk

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

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

func (*GlobalRanNodeId) GetNid

func (o *GlobalRanNodeId) GetNid() string

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

func (*GlobalRanNodeId) GetNidOk

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

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

func (*GlobalRanNodeId) GetPlmnId

func (o *GlobalRanNodeId) GetPlmnId() PlmnId

GetPlmnId returns the PlmnId field value

func (*GlobalRanNodeId) GetPlmnIdOk

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

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

func (*GlobalRanNodeId) GetTngfId

func (o *GlobalRanNodeId) GetTngfId() string

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

func (*GlobalRanNodeId) GetTngfIdOk

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

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

func (*GlobalRanNodeId) GetWagfId

func (o *GlobalRanNodeId) GetWagfId() string

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

func (*GlobalRanNodeId) GetWagfIdOk

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

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

func (*GlobalRanNodeId) HasENbId

func (o *GlobalRanNodeId) HasENbId() bool

HasENbId returns a boolean if a field has been set.

func (*GlobalRanNodeId) HasGNbId

func (o *GlobalRanNodeId) HasGNbId() bool

HasGNbId returns a boolean if a field has been set.

func (*GlobalRanNodeId) HasN3IwfId

func (o *GlobalRanNodeId) HasN3IwfId() bool

HasN3IwfId returns a boolean if a field has been set.

func (*GlobalRanNodeId) HasNgeNbId

func (o *GlobalRanNodeId) HasNgeNbId() bool

HasNgeNbId returns a boolean if a field has been set.

func (*GlobalRanNodeId) HasNid

func (o *GlobalRanNodeId) HasNid() bool

HasNid returns a boolean if a field has been set.

func (*GlobalRanNodeId) HasTngfId

func (o *GlobalRanNodeId) HasTngfId() bool

HasTngfId returns a boolean if a field has been set.

func (*GlobalRanNodeId) HasWagfId

func (o *GlobalRanNodeId) HasWagfId() bool

HasWagfId returns a boolean if a field has been set.

func (GlobalRanNodeId) MarshalJSON

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

func (*GlobalRanNodeId) SetENbId

func (o *GlobalRanNodeId) SetENbId(v string)

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

func (*GlobalRanNodeId) SetGNbId

func (o *GlobalRanNodeId) SetGNbId(v GNbId)

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

func (*GlobalRanNodeId) SetN3IwfId

func (o *GlobalRanNodeId) SetN3IwfId(v string)

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

func (*GlobalRanNodeId) SetNgeNbId

func (o *GlobalRanNodeId) SetNgeNbId(v string)

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

func (*GlobalRanNodeId) SetNid

func (o *GlobalRanNodeId) SetNid(v string)

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

func (*GlobalRanNodeId) SetPlmnId

func (o *GlobalRanNodeId) SetPlmnId(v PlmnId)

SetPlmnId sets field value

func (*GlobalRanNodeId) SetTngfId

func (o *GlobalRanNodeId) SetTngfId(v string)

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

func (*GlobalRanNodeId) SetWagfId

func (o *GlobalRanNodeId) SetWagfId(v string)

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

func (GlobalRanNodeId) ToMap

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

func (*GlobalRanNodeId) UnmarshalJSON

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

type GnssId

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

GnssId Global Navigation Satellite System (GNSS) ID.

func (*GnssId) MarshalJSON

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

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

func (*GnssId) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type GnssPositioningMethodAndUsage

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

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

func NewGnssPositioningMethodAndUsage

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

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

func NewGnssPositioningMethodAndUsageWithDefaults

func NewGnssPositioningMethodAndUsageWithDefaults() *GnssPositioningMethodAndUsage

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

func (*GnssPositioningMethodAndUsage) GetGnss

GetGnss returns the Gnss field value

func (*GnssPositioningMethodAndUsage) GetGnssOk

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

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

func (*GnssPositioningMethodAndUsage) GetMode

GetMode returns the Mode field value

func (*GnssPositioningMethodAndUsage) GetModeOk

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

func (*GnssPositioningMethodAndUsage) GetUsage

func (o *GnssPositioningMethodAndUsage) GetUsage() Usage

GetUsage returns the Usage field value

func (*GnssPositioningMethodAndUsage) GetUsageOk

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

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

func (GnssPositioningMethodAndUsage) MarshalJSON

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

func (*GnssPositioningMethodAndUsage) SetGnss

func (o *GnssPositioningMethodAndUsage) SetGnss(v GnssId)

SetGnss sets field value

func (*GnssPositioningMethodAndUsage) SetMode

SetMode sets field value

func (*GnssPositioningMethodAndUsage) SetUsage

func (o *GnssPositioningMethodAndUsage) SetUsage(v Usage)

SetUsage sets field value

func (GnssPositioningMethodAndUsage) ToMap

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

func (*GnssPositioningMethodAndUsage) UnmarshalJSON

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

type HighAccuracyGnssMetrics

type HighAccuracyGnssMetrics struct {
	NrOfUsedSatellites *int32   `json:"nrOfUsedSatellites,omitempty"`
	Hdopi              *int32   `json:"hdopi,omitempty"`
	Pdopi              *int32   `json:"pdopi,omitempty"`
	Age                *int32   `json:"age,omitempty"`
	FixType            *FixType `json:"fixType,omitempty"`
}

HighAccuracyGnssMetrics High Accuracy GNSS Positioning Metrics.

func NewHighAccuracyGnssMetrics

func NewHighAccuracyGnssMetrics() *HighAccuracyGnssMetrics

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

func NewHighAccuracyGnssMetricsWithDefaults

func NewHighAccuracyGnssMetricsWithDefaults() *HighAccuracyGnssMetrics

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

func (*HighAccuracyGnssMetrics) GetAge

func (o *HighAccuracyGnssMetrics) GetAge() int32

GetAge returns the Age field value if set, zero value otherwise.

func (*HighAccuracyGnssMetrics) GetAgeOk

func (o *HighAccuracyGnssMetrics) GetAgeOk() (*int32, bool)

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

func (*HighAccuracyGnssMetrics) GetFixType

func (o *HighAccuracyGnssMetrics) GetFixType() FixType

GetFixType returns the FixType field value if set, zero value otherwise.

func (*HighAccuracyGnssMetrics) GetFixTypeOk

func (o *HighAccuracyGnssMetrics) GetFixTypeOk() (*FixType, bool)

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

func (*HighAccuracyGnssMetrics) GetHdopi

func (o *HighAccuracyGnssMetrics) GetHdopi() int32

GetHdopi returns the Hdopi field value if set, zero value otherwise.

func (*HighAccuracyGnssMetrics) GetHdopiOk

func (o *HighAccuracyGnssMetrics) GetHdopiOk() (*int32, bool)

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

func (*HighAccuracyGnssMetrics) GetNrOfUsedSatellites

func (o *HighAccuracyGnssMetrics) GetNrOfUsedSatellites() int32

GetNrOfUsedSatellites returns the NrOfUsedSatellites field value if set, zero value otherwise.

func (*HighAccuracyGnssMetrics) GetNrOfUsedSatellitesOk

func (o *HighAccuracyGnssMetrics) GetNrOfUsedSatellitesOk() (*int32, bool)

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

func (*HighAccuracyGnssMetrics) GetPdopi

func (o *HighAccuracyGnssMetrics) GetPdopi() int32

GetPdopi returns the Pdopi field value if set, zero value otherwise.

func (*HighAccuracyGnssMetrics) GetPdopiOk

func (o *HighAccuracyGnssMetrics) GetPdopiOk() (*int32, bool)

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

func (*HighAccuracyGnssMetrics) HasAge

func (o *HighAccuracyGnssMetrics) HasAge() bool

HasAge returns a boolean if a field has been set.

func (*HighAccuracyGnssMetrics) HasFixType

func (o *HighAccuracyGnssMetrics) HasFixType() bool

HasFixType returns a boolean if a field has been set.

func (*HighAccuracyGnssMetrics) HasHdopi

func (o *HighAccuracyGnssMetrics) HasHdopi() bool

HasHdopi returns a boolean if a field has been set.

func (*HighAccuracyGnssMetrics) HasNrOfUsedSatellites

func (o *HighAccuracyGnssMetrics) HasNrOfUsedSatellites() bool

HasNrOfUsedSatellites returns a boolean if a field has been set.

func (*HighAccuracyGnssMetrics) HasPdopi

func (o *HighAccuracyGnssMetrics) HasPdopi() bool

HasPdopi returns a boolean if a field has been set.

func (HighAccuracyGnssMetrics) MarshalJSON

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

func (*HighAccuracyGnssMetrics) SetAge

func (o *HighAccuracyGnssMetrics) SetAge(v int32)

SetAge gets a reference to the given int32 and assigns it to the Age field.

func (*HighAccuracyGnssMetrics) SetFixType

func (o *HighAccuracyGnssMetrics) SetFixType(v FixType)

SetFixType gets a reference to the given FixType and assigns it to the FixType field.

func (*HighAccuracyGnssMetrics) SetHdopi

func (o *HighAccuracyGnssMetrics) SetHdopi(v int32)

SetHdopi gets a reference to the given int32 and assigns it to the Hdopi field.

func (*HighAccuracyGnssMetrics) SetNrOfUsedSatellites

func (o *HighAccuracyGnssMetrics) SetNrOfUsedSatellites(v int32)

SetNrOfUsedSatellites gets a reference to the given int32 and assigns it to the NrOfUsedSatellites field.

func (*HighAccuracyGnssMetrics) SetPdopi

func (o *HighAccuracyGnssMetrics) SetPdopi(v int32)

SetPdopi gets a reference to the given int32 and assigns it to the Pdopi field.

func (HighAccuracyGnssMetrics) ToMap

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

type HorizontalVelocity

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

HorizontalVelocity Horizontal velocity.

func NewHorizontalVelocity

func NewHorizontalVelocity(hSpeed float32, bearing int32) *HorizontalVelocity

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

func NewHorizontalVelocityWithDefaults

func NewHorizontalVelocityWithDefaults() *HorizontalVelocity

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

func (*HorizontalVelocity) GetBearing

func (o *HorizontalVelocity) GetBearing() int32

GetBearing returns the Bearing field value

func (*HorizontalVelocity) GetBearingOk

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

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

func (*HorizontalVelocity) GetHSpeed

func (o *HorizontalVelocity) GetHSpeed() float32

GetHSpeed returns the HSpeed field value

func (*HorizontalVelocity) GetHSpeedOk

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

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

func (HorizontalVelocity) MarshalJSON

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

func (*HorizontalVelocity) SetBearing

func (o *HorizontalVelocity) SetBearing(v int32)

SetBearing sets field value

func (*HorizontalVelocity) SetHSpeed

func (o *HorizontalVelocity) SetHSpeed(v float32)

SetHSpeed sets field value

func (HorizontalVelocity) ToMap

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

func (*HorizontalVelocity) UnmarshalJSON

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

type HorizontalVelocityWithUncertainty

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

HorizontalVelocityWithUncertainty Horizontal velocity with speed uncertainty.

func NewHorizontalVelocityWithUncertainty

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

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

func NewHorizontalVelocityWithUncertaintyWithDefaults

func NewHorizontalVelocityWithUncertaintyWithDefaults() *HorizontalVelocityWithUncertainty

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

func (*HorizontalVelocityWithUncertainty) GetBearing

func (o *HorizontalVelocityWithUncertainty) GetBearing() int32

GetBearing returns the Bearing field value

func (*HorizontalVelocityWithUncertainty) GetBearingOk

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

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

func (*HorizontalVelocityWithUncertainty) GetHSpeed

GetHSpeed returns the HSpeed field value

func (*HorizontalVelocityWithUncertainty) GetHSpeedOk

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

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

func (*HorizontalVelocityWithUncertainty) GetHUncertainty

func (o *HorizontalVelocityWithUncertainty) GetHUncertainty() float32

GetHUncertainty returns the HUncertainty field value

func (*HorizontalVelocityWithUncertainty) GetHUncertaintyOk

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

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

func (HorizontalVelocityWithUncertainty) MarshalJSON

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

func (*HorizontalVelocityWithUncertainty) SetBearing

func (o *HorizontalVelocityWithUncertainty) SetBearing(v int32)

SetBearing sets field value

func (*HorizontalVelocityWithUncertainty) SetHSpeed

SetHSpeed sets field value

func (*HorizontalVelocityWithUncertainty) SetHUncertainty

func (o *HorizontalVelocityWithUncertainty) SetHUncertainty(v float32)

SetHUncertainty sets field value

func (HorizontalVelocityWithUncertainty) ToMap

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

func (*HorizontalVelocityWithUncertainty) UnmarshalJSON

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

type HorizontalWithVerticalVelocity

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

HorizontalWithVerticalVelocity Horizontal and vertical velocity.

func NewHorizontalWithVerticalVelocity

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

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

func NewHorizontalWithVerticalVelocityWithDefaults

func NewHorizontalWithVerticalVelocityWithDefaults() *HorizontalWithVerticalVelocity

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

func (*HorizontalWithVerticalVelocity) GetBearing

func (o *HorizontalWithVerticalVelocity) GetBearing() int32

GetBearing returns the Bearing field value

func (*HorizontalWithVerticalVelocity) GetBearingOk

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

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

func (*HorizontalWithVerticalVelocity) GetHSpeed

func (o *HorizontalWithVerticalVelocity) GetHSpeed() float32

GetHSpeed returns the HSpeed field value

func (*HorizontalWithVerticalVelocity) GetHSpeedOk

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

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

func (*HorizontalWithVerticalVelocity) GetVDirection

GetVDirection returns the VDirection field value

func (*HorizontalWithVerticalVelocity) GetVDirectionOk

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

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

func (*HorizontalWithVerticalVelocity) GetVSpeed

func (o *HorizontalWithVerticalVelocity) GetVSpeed() float32

GetVSpeed returns the VSpeed field value

func (*HorizontalWithVerticalVelocity) GetVSpeedOk

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

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

func (HorizontalWithVerticalVelocity) MarshalJSON

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

func (*HorizontalWithVerticalVelocity) SetBearing

func (o *HorizontalWithVerticalVelocity) SetBearing(v int32)

SetBearing sets field value

func (*HorizontalWithVerticalVelocity) SetHSpeed

func (o *HorizontalWithVerticalVelocity) SetHSpeed(v float32)

SetHSpeed sets field value

func (*HorizontalWithVerticalVelocity) SetVDirection

SetVDirection sets field value

func (*HorizontalWithVerticalVelocity) SetVSpeed

func (o *HorizontalWithVerticalVelocity) SetVSpeed(v float32)

SetVSpeed sets field value

func (HorizontalWithVerticalVelocity) ToMap

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

func (*HorizontalWithVerticalVelocity) UnmarshalJSON

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

type HorizontalWithVerticalVelocityAndUncertainty

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

HorizontalWithVerticalVelocityAndUncertainty Horizontal and vertical velocity with speed uncertainty.

func NewHorizontalWithVerticalVelocityAndUncertainty

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

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

func NewHorizontalWithVerticalVelocityAndUncertaintyWithDefaults

func NewHorizontalWithVerticalVelocityAndUncertaintyWithDefaults() *HorizontalWithVerticalVelocityAndUncertainty

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

func (*HorizontalWithVerticalVelocityAndUncertainty) GetBearing

GetBearing returns the Bearing field value

func (*HorizontalWithVerticalVelocityAndUncertainty) GetBearingOk

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

func (*HorizontalWithVerticalVelocityAndUncertainty) GetHSpeed

GetHSpeed returns the HSpeed field value

func (*HorizontalWithVerticalVelocityAndUncertainty) GetHSpeedOk

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

func (*HorizontalWithVerticalVelocityAndUncertainty) GetHUncertainty

GetHUncertainty returns the HUncertainty field value

func (*HorizontalWithVerticalVelocityAndUncertainty) GetHUncertaintyOk

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

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

func (*HorizontalWithVerticalVelocityAndUncertainty) GetVDirection

GetVDirection returns the VDirection field value

func (*HorizontalWithVerticalVelocityAndUncertainty) GetVDirectionOk

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

func (*HorizontalWithVerticalVelocityAndUncertainty) GetVSpeed

GetVSpeed returns the VSpeed field value

func (*HorizontalWithVerticalVelocityAndUncertainty) GetVSpeedOk

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

func (*HorizontalWithVerticalVelocityAndUncertainty) GetVUncertainty

GetVUncertainty returns the VUncertainty field value

func (*HorizontalWithVerticalVelocityAndUncertainty) GetVUncertaintyOk

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

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

func (HorizontalWithVerticalVelocityAndUncertainty) MarshalJSON

func (*HorizontalWithVerticalVelocityAndUncertainty) SetBearing

SetBearing sets field value

func (*HorizontalWithVerticalVelocityAndUncertainty) SetHSpeed

SetHSpeed sets field value

func (*HorizontalWithVerticalVelocityAndUncertainty) SetHUncertainty

SetHUncertainty sets field value

func (*HorizontalWithVerticalVelocityAndUncertainty) SetVDirection

SetVDirection sets field value

func (*HorizontalWithVerticalVelocityAndUncertainty) SetVSpeed

SetVSpeed sets field value

func (*HorizontalWithVerticalVelocityAndUncertainty) SetVUncertainty

SetVUncertainty sets field value

func (HorizontalWithVerticalVelocityAndUncertainty) ToMap

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

func (*HorizontalWithVerticalVelocityAndUncertainty) UnmarshalJSON

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

type IndividualDataReportingSessionAPIService

type IndividualDataReportingSessionAPIService service

IndividualDataReportingSessionAPIService IndividualDataReportingSessionAPI service

func (*IndividualDataReportingSessionAPIService) DeleteIndDataRepSession

DeleteIndDataRepSession Deletes an already existing Data Reporting Session resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param sessionId Identifier of the Data Reporting Session.
@return ApiDeleteIndDataRepSessionRequest

func (*IndividualDataReportingSessionAPIService) DeleteIndDataRepSessionExecute

Execute executes the request

func (*IndividualDataReportingSessionAPIService) GetIndDataRepSession

GetIndDataRepSession Request the retrieval of an existing Individual Data Reporting Session resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param sessionId Identifier of the Data Reporting Session.
@return ApiGetIndDataRepSessionRequest

func (*IndividualDataReportingSessionAPIService) GetIndDataRepSessionExecute

Execute executes the request

@return DataReportingSession

func (*IndividualDataReportingSessionAPIService) ReportUEData

ReportUEData Report collected UE data.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param sessionId Identifier of the Data Reporting Session.
@return ApiReportUEDataRequest

func (*IndividualDataReportingSessionAPIService) ReportUEDataExecute

Execute executes the request

@return DataReportingSession

func (*IndividualDataReportingSessionAPIService) UpdateIndDataRepSession

UpdateIndDataRepSession Request the update of an existing Individual Data Reporting Session resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param sessionId Identifier of the Data Reporting Session.
@return ApiUpdateIndDataRepSessionRequest

func (*IndividualDataReportingSessionAPIService) UpdateIndDataRepSessionExecute

Execute executes the request

@return DataReportingSession

type InvalidParam

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

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

func NewInvalidParam

func NewInvalidParam(param string) *InvalidParam

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

func NewInvalidParamWithDefaults

func NewInvalidParamWithDefaults() *InvalidParam

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

func (*InvalidParam) GetParam

func (o *InvalidParam) GetParam() string

GetParam returns the Param field value

func (*InvalidParam) GetParamOk

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

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

func (*InvalidParam) GetReason

func (o *InvalidParam) GetReason() string

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

func (*InvalidParam) GetReasonOk

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

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

func (*InvalidParam) HasReason

func (o *InvalidParam) HasReason() bool

HasReason returns a boolean if a field has been set.

func (InvalidParam) MarshalJSON

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

func (*InvalidParam) SetParam

func (o *InvalidParam) SetParam(v string)

SetParam sets field value

func (*InvalidParam) SetReason

func (o *InvalidParam) SetReason(v string)

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

func (InvalidParam) ToMap

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

func (*InvalidParam) UnmarshalJSON

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

type IpAddr

type IpAddr struct {
	// String identifying a IPv4 address formatted in the 'dotted decimal' notation as defined in RFC 1166.
	Ipv4Addr   *string     `json:"ipv4Addr,omitempty"`
	Ipv6Addr   *Ipv6Addr   `json:"ipv6Addr,omitempty"`
	Ipv6Prefix *Ipv6Prefix `json:"ipv6Prefix,omitempty"`
}

IpAddr Contains an IP adresse.

func NewIpAddr

func NewIpAddr() *IpAddr

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

func NewIpAddrWithDefaults

func NewIpAddrWithDefaults() *IpAddr

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

func (*IpAddr) GetIpv4Addr

func (o *IpAddr) GetIpv4Addr() string

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

func (*IpAddr) GetIpv4AddrOk

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

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

func (*IpAddr) GetIpv6Addr

func (o *IpAddr) GetIpv6Addr() Ipv6Addr

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

func (*IpAddr) GetIpv6AddrOk

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

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

func (*IpAddr) GetIpv6Prefix

func (o *IpAddr) GetIpv6Prefix() Ipv6Prefix

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

func (*IpAddr) GetIpv6PrefixOk

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

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

func (*IpAddr) HasIpv4Addr

func (o *IpAddr) HasIpv4Addr() bool

HasIpv4Addr returns a boolean if a field has been set.

func (*IpAddr) HasIpv6Addr

func (o *IpAddr) HasIpv6Addr() bool

HasIpv6Addr returns a boolean if a field has been set.

func (*IpAddr) HasIpv6Prefix

func (o *IpAddr) HasIpv6Prefix() bool

HasIpv6Prefix returns a boolean if a field has been set.

func (IpAddr) MarshalJSON

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

func (*IpAddr) SetIpv4Addr

func (o *IpAddr) SetIpv4Addr(v string)

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

func (*IpAddr) SetIpv6Addr

func (o *IpAddr) SetIpv6Addr(v Ipv6Addr)

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

func (*IpAddr) SetIpv6Prefix

func (o *IpAddr) SetIpv6Prefix(v Ipv6Prefix)

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

func (IpAddr) ToMap

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

type Ipv6Addr

type Ipv6Addr struct {
}

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

func NewIpv6Addr

func NewIpv6Addr() *Ipv6Addr

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

func NewIpv6AddrWithDefaults

func NewIpv6AddrWithDefaults() *Ipv6Addr

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

func (Ipv6Addr) MarshalJSON

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

func (Ipv6Addr) ToMap

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

type Ipv6Prefix

type Ipv6Prefix struct {
}

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

func NewIpv6Prefix

func NewIpv6Prefix() *Ipv6Prefix

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

func NewIpv6PrefixWithDefaults

func NewIpv6PrefixWithDefaults() *Ipv6Prefix

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

func (Ipv6Prefix) MarshalJSON

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

func (Ipv6Prefix) ToMap

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

type Local2dPointUncertaintyEllipse

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

Local2dPointUncertaintyEllipse Local 2D point with uncertainty ellipse

func NewLocal2dPointUncertaintyEllipse

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

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

func NewLocal2dPointUncertaintyEllipseWithDefaults

func NewLocal2dPointUncertaintyEllipseWithDefaults() *Local2dPointUncertaintyEllipse

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

func (*Local2dPointUncertaintyEllipse) GetConfidence

func (o *Local2dPointUncertaintyEllipse) GetConfidence() int32

GetConfidence returns the Confidence field value

func (*Local2dPointUncertaintyEllipse) GetConfidenceOk

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

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

func (*Local2dPointUncertaintyEllipse) GetLocalOrigin

func (o *Local2dPointUncertaintyEllipse) GetLocalOrigin() LocalOrigin

GetLocalOrigin returns the LocalOrigin field value

func (*Local2dPointUncertaintyEllipse) GetLocalOriginOk

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

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

func (*Local2dPointUncertaintyEllipse) GetPoint

GetPoint returns the Point field value

func (*Local2dPointUncertaintyEllipse) GetPointOk

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

func (*Local2dPointUncertaintyEllipse) GetUncertaintyEllipse

func (o *Local2dPointUncertaintyEllipse) GetUncertaintyEllipse() UncertaintyEllipse

GetUncertaintyEllipse returns the UncertaintyEllipse field value

func (*Local2dPointUncertaintyEllipse) GetUncertaintyEllipseOk

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

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

func (Local2dPointUncertaintyEllipse) MarshalJSON

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

func (*Local2dPointUncertaintyEllipse) SetConfidence

func (o *Local2dPointUncertaintyEllipse) SetConfidence(v int32)

SetConfidence sets field value

func (*Local2dPointUncertaintyEllipse) SetLocalOrigin

func (o *Local2dPointUncertaintyEllipse) SetLocalOrigin(v LocalOrigin)

SetLocalOrigin sets field value

func (*Local2dPointUncertaintyEllipse) SetPoint

SetPoint sets field value

func (*Local2dPointUncertaintyEllipse) SetUncertaintyEllipse

func (o *Local2dPointUncertaintyEllipse) SetUncertaintyEllipse(v UncertaintyEllipse)

SetUncertaintyEllipse sets field value

func (Local2dPointUncertaintyEllipse) ToMap

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

func (*Local2dPointUncertaintyEllipse) UnmarshalJSON

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

type Local3dPointUncertaintyEllipsoid

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

Local3dPointUncertaintyEllipsoid Local 3D point with uncertainty ellipsoid

func NewLocal3dPointUncertaintyEllipsoid

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

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

func NewLocal3dPointUncertaintyEllipsoidWithDefaults

func NewLocal3dPointUncertaintyEllipsoidWithDefaults() *Local3dPointUncertaintyEllipsoid

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

func (*Local3dPointUncertaintyEllipsoid) GetConfidence

func (o *Local3dPointUncertaintyEllipsoid) GetConfidence() int32

GetConfidence returns the Confidence field value

func (*Local3dPointUncertaintyEllipsoid) GetConfidenceOk

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

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

func (*Local3dPointUncertaintyEllipsoid) GetLocalOrigin

func (o *Local3dPointUncertaintyEllipsoid) GetLocalOrigin() LocalOrigin

GetLocalOrigin returns the LocalOrigin field value

func (*Local3dPointUncertaintyEllipsoid) GetLocalOriginOk

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

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

func (*Local3dPointUncertaintyEllipsoid) GetPoint

GetPoint returns the Point field value

func (*Local3dPointUncertaintyEllipsoid) GetPointOk

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

func (*Local3dPointUncertaintyEllipsoid) GetUncertaintyEllipsoid

func (o *Local3dPointUncertaintyEllipsoid) GetUncertaintyEllipsoid() UncertaintyEllipsoid

GetUncertaintyEllipsoid returns the UncertaintyEllipsoid field value

func (*Local3dPointUncertaintyEllipsoid) GetUncertaintyEllipsoidOk

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

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

func (Local3dPointUncertaintyEllipsoid) MarshalJSON

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

func (*Local3dPointUncertaintyEllipsoid) SetConfidence

func (o *Local3dPointUncertaintyEllipsoid) SetConfidence(v int32)

SetConfidence sets field value

func (*Local3dPointUncertaintyEllipsoid) SetLocalOrigin

func (o *Local3dPointUncertaintyEllipsoid) SetLocalOrigin(v LocalOrigin)

SetLocalOrigin sets field value

func (*Local3dPointUncertaintyEllipsoid) SetPoint

SetPoint sets field value

func (*Local3dPointUncertaintyEllipsoid) SetUncertaintyEllipsoid

func (o *Local3dPointUncertaintyEllipsoid) SetUncertaintyEllipsoid(v UncertaintyEllipsoid)

SetUncertaintyEllipsoid sets field value

func (Local3dPointUncertaintyEllipsoid) ToMap

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

func (*Local3dPointUncertaintyEllipsoid) UnmarshalJSON

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

type LocalArea

type LocalArea struct {
	Local2dPointUncertaintyEllipse   *Local2dPointUncertaintyEllipse
	Local3dPointUncertaintyEllipsoid *Local3dPointUncertaintyEllipsoid
}

LocalArea - Local area specified by different shape

func Local2dPointUncertaintyEllipseAsLocalArea

func Local2dPointUncertaintyEllipseAsLocalArea(v *Local2dPointUncertaintyEllipse) LocalArea

Local2dPointUncertaintyEllipseAsLocalArea is a convenience function that returns Local2dPointUncertaintyEllipse wrapped in LocalArea

func Local3dPointUncertaintyEllipsoidAsLocalArea

func Local3dPointUncertaintyEllipsoidAsLocalArea(v *Local3dPointUncertaintyEllipsoid) LocalArea

Local3dPointUncertaintyEllipsoidAsLocalArea is a convenience function that returns Local3dPointUncertaintyEllipsoid wrapped in LocalArea

func (*LocalArea) GetActualInstance

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

Get the actual instance

func (LocalArea) MarshalJSON

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

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

func (*LocalArea) UnmarshalJSON

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

Unmarshal JSON data into one of the pointers in the struct

type LocalOrigin

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

LocalOrigin Indicates a Local origin in a reference system

func NewLocalOrigin

func NewLocalOrigin() *LocalOrigin

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

func NewLocalOriginWithDefaults

func NewLocalOriginWithDefaults() *LocalOrigin

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

func (*LocalOrigin) GetCoordinateId

func (o *LocalOrigin) GetCoordinateId() string

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

func (*LocalOrigin) GetCoordinateIdOk

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

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

func (*LocalOrigin) GetPoint

func (o *LocalOrigin) GetPoint() GeographicalCoordinates

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

func (*LocalOrigin) GetPointOk

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

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

func (*LocalOrigin) HasCoordinateId

func (o *LocalOrigin) HasCoordinateId() bool

HasCoordinateId returns a boolean if a field has been set.

func (*LocalOrigin) HasPoint

func (o *LocalOrigin) HasPoint() bool

HasPoint returns a boolean if a field has been set.

func (LocalOrigin) MarshalJSON

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

func (*LocalOrigin) SetCoordinateId

func (o *LocalOrigin) SetCoordinateId(v string)

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

func (*LocalOrigin) SetPoint

func (o *LocalOrigin) SetPoint(v GeographicalCoordinates)

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

func (LocalOrigin) ToMap

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

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

type LocationData struct {
	LocationEstimate            GeographicArea               `json:"locationEstimate"`
	AccuracyFulfilmentIndicator *AccuracyFulfilmentIndicator `json:"accuracyFulfilmentIndicator,omitempty"`
	// Indicates value of the age of the location estimate.
	AgeOfLocationEstimate *int32 `json:"ageOfLocationEstimate,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	TimestampOfLocationEstimate *time.Time                      `json:"timestampOfLocationEstimate,omitempty"`
	VelocityEstimate            *VelocityEstimate               `json:"velocityEstimate,omitempty"`
	CivicAddress                *CivicAddress                   `json:"civicAddress,omitempty"`
	LocalLocationEstimate       *LocalArea                      `json:"localLocationEstimate,omitempty"`
	PositioningDataList         []PositioningMethodAndUsage     `json:"positioningDataList,omitempty"`
	GnssPositioningDataList     []GnssPositioningMethodAndUsage `json:"gnssPositioningDataList,omitempty"`
	Ecgi                        *Ecgi                           `json:"ecgi,omitempty"`
	Ncgi                        *Ncgi                           `json:"ncgi,omitempty"`
	// Indicates value of altitude.
	Altitude *float64 `json:"altitude,omitempty"`
	// Specifies the measured uncompensated atmospheric pressure.
	BarometricPressure *int32 `json:"barometricPressure,omitempty"`
	// LMF identification.
	ServingLMFIdentification *string `json:"servingLMFIdentification,omitempty"`
	// Positioning capabilities supported by the UE. A string encoding the \"ProvideCapabilities-r9-IEs\" IE as specified in clause 6.3 of 3GPP TS 37.355 (start from octet 1).
	UePositioningCap *string                  `json:"uePositioningCap,omitempty"`
	UeAreaInd        NullableUeAreaIndication `json:"ueAreaInd,omitempty"`
	// A string used to indicate the features supported by an API that is used as defined in clause  6.6 in 3GPP TS 29.500. The string shall contain a bitmask indicating supported features in  hexadecimal representation Each character in the string shall take a value of \"0\" to \"9\",  \"a\" to \"f\" or \"A\" to \"F\" and shall represent the support of 4 features as described in  table 5.2.2-3. The most significant character representing the highest-numbered features shall  appear first in the string, and the character representing features 1 to 4 shall appear last  in the string. The list of features and their numbering (starting with 1) are defined  separately for each API. If the string contains a lower number of characters than there are  defined features for an API, all features that would be represented by characters that are not  present in the string are not supported.
	SupportedFeatures         *string                  `json:"supportedFeatures,omitempty"`
	AchievedQos               *MinorLocationQoS        `json:"achievedQos,omitempty"`
	AcceptedPeriodicEventInfo *PeriodicEventInfo       `json:"acceptedPeriodicEventInfo,omitempty"`
	HaGnssMetrics             *HighAccuracyGnssMetrics `json:"haGnssMetrics,omitempty"`
}

LocationData Information within Determine Location Response.

func NewLocationData

func NewLocationData(locationEstimate GeographicArea) *LocationData

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

func NewLocationDataWithDefaults

func NewLocationDataWithDefaults() *LocationData

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

func (*LocationData) GetAcceptedPeriodicEventInfo

func (o *LocationData) GetAcceptedPeriodicEventInfo() PeriodicEventInfo

GetAcceptedPeriodicEventInfo returns the AcceptedPeriodicEventInfo field value if set, zero value otherwise.

func (*LocationData) GetAcceptedPeriodicEventInfoOk

func (o *LocationData) GetAcceptedPeriodicEventInfoOk() (*PeriodicEventInfo, bool)

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

func (*LocationData) GetAccuracyFulfilmentIndicator

func (o *LocationData) GetAccuracyFulfilmentIndicator() AccuracyFulfilmentIndicator

GetAccuracyFulfilmentIndicator returns the AccuracyFulfilmentIndicator field value if set, zero value otherwise.

func (*LocationData) GetAccuracyFulfilmentIndicatorOk

func (o *LocationData) GetAccuracyFulfilmentIndicatorOk() (*AccuracyFulfilmentIndicator, bool)

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

func (*LocationData) GetAchievedQos

func (o *LocationData) GetAchievedQos() MinorLocationQoS

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

func (*LocationData) GetAchievedQosOk

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

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

func (*LocationData) GetAgeOfLocationEstimate

func (o *LocationData) GetAgeOfLocationEstimate() int32

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

func (*LocationData) GetAgeOfLocationEstimateOk

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

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

func (*LocationData) GetAltitude

func (o *LocationData) GetAltitude() float64

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

func (*LocationData) GetAltitudeOk

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

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

func (*LocationData) GetBarometricPressure

func (o *LocationData) GetBarometricPressure() int32

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

func (*LocationData) GetBarometricPressureOk

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

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

func (*LocationData) GetCivicAddress

func (o *LocationData) GetCivicAddress() CivicAddress

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

func (*LocationData) GetCivicAddressOk

func (o *LocationData) GetCivicAddressOk() (*CivicAddress, bool)

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

func (*LocationData) GetEcgi

func (o *LocationData) GetEcgi() Ecgi

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

func (*LocationData) GetEcgiOk

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

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

func (*LocationData) GetGnssPositioningDataList

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

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

func (*LocationData) GetGnssPositioningDataListOk

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

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

func (*LocationData) GetHaGnssMetrics

func (o *LocationData) GetHaGnssMetrics() HighAccuracyGnssMetrics

GetHaGnssMetrics returns the HaGnssMetrics field value if set, zero value otherwise.

func (*LocationData) GetHaGnssMetricsOk

func (o *LocationData) GetHaGnssMetricsOk() (*HighAccuracyGnssMetrics, bool)

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

func (*LocationData) GetLocalLocationEstimate

func (o *LocationData) GetLocalLocationEstimate() LocalArea

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

func (*LocationData) GetLocalLocationEstimateOk

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

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

func (*LocationData) GetLocationEstimate

func (o *LocationData) GetLocationEstimate() GeographicArea

GetLocationEstimate returns the LocationEstimate field value

func (*LocationData) GetLocationEstimateOk

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

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

func (*LocationData) GetNcgi

func (o *LocationData) GetNcgi() Ncgi

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

func (*LocationData) GetNcgiOk

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

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

func (*LocationData) GetPositioningDataList

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

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

func (*LocationData) GetPositioningDataListOk

func (o *LocationData) GetPositioningDataListOk() ([]PositioningMethodAndUsage, bool)

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

func (*LocationData) GetServingLMFIdentification

func (o *LocationData) GetServingLMFIdentification() string

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

func (*LocationData) GetServingLMFIdentificationOk

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

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

func (*LocationData) GetSupportedFeatures

func (o *LocationData) GetSupportedFeatures() string

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

func (*LocationData) GetSupportedFeaturesOk

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

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

func (*LocationData) GetTimestampOfLocationEstimate

func (o *LocationData) GetTimestampOfLocationEstimate() time.Time

GetTimestampOfLocationEstimate returns the TimestampOfLocationEstimate field value if set, zero value otherwise.

func (*LocationData) GetTimestampOfLocationEstimateOk

func (o *LocationData) GetTimestampOfLocationEstimateOk() (*time.Time, bool)

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

func (*LocationData) GetUeAreaInd

func (o *LocationData) GetUeAreaInd() UeAreaIndication

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

func (*LocationData) GetUeAreaIndOk

func (o *LocationData) GetUeAreaIndOk() (*UeAreaIndication, bool)

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

func (*LocationData) GetUePositioningCap

func (o *LocationData) GetUePositioningCap() string

GetUePositioningCap returns the UePositioningCap field value if set, zero value otherwise.

func (*LocationData) GetUePositioningCapOk

func (o *LocationData) GetUePositioningCapOk() (*string, bool)

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

func (*LocationData) GetVelocityEstimate

func (o *LocationData) GetVelocityEstimate() VelocityEstimate

GetVelocityEstimate returns the VelocityEstimate field value if set, zero value otherwise.

func (*LocationData) GetVelocityEstimateOk

func (o *LocationData) GetVelocityEstimateOk() (*VelocityEstimate, bool)

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

func (*LocationData) HasAcceptedPeriodicEventInfo

func (o *LocationData) HasAcceptedPeriodicEventInfo() bool

HasAcceptedPeriodicEventInfo returns a boolean if a field has been set.

func (*LocationData) HasAccuracyFulfilmentIndicator

func (o *LocationData) HasAccuracyFulfilmentIndicator() bool

HasAccuracyFulfilmentIndicator returns a boolean if a field has been set.

func (*LocationData) HasAchievedQos

func (o *LocationData) HasAchievedQos() bool

HasAchievedQos returns a boolean if a field has been set.

func (*LocationData) HasAgeOfLocationEstimate

func (o *LocationData) HasAgeOfLocationEstimate() bool

HasAgeOfLocationEstimate returns a boolean if a field has been set.

func (*LocationData) HasAltitude

func (o *LocationData) HasAltitude() bool

HasAltitude returns a boolean if a field has been set.

func (*LocationData) HasBarometricPressure

func (o *LocationData) HasBarometricPressure() bool

HasBarometricPressure returns a boolean if a field has been set.

func (*LocationData) HasCivicAddress

func (o *LocationData) HasCivicAddress() bool

HasCivicAddress returns a boolean if a field has been set.

func (*LocationData) HasEcgi

func (o *LocationData) HasEcgi() bool

HasEcgi returns a boolean if a field has been set.

func (*LocationData) HasGnssPositioningDataList

func (o *LocationData) HasGnssPositioningDataList() bool

HasGnssPositioningDataList returns a boolean if a field has been set.

func (*LocationData) HasHaGnssMetrics

func (o *LocationData) HasHaGnssMetrics() bool

HasHaGnssMetrics returns a boolean if a field has been set.

func (*LocationData) HasLocalLocationEstimate

func (o *LocationData) HasLocalLocationEstimate() bool

HasLocalLocationEstimate returns a boolean if a field has been set.

func (*LocationData) HasNcgi

func (o *LocationData) HasNcgi() bool

HasNcgi returns a boolean if a field has been set.

func (*LocationData) HasPositioningDataList

func (o *LocationData) HasPositioningDataList() bool

HasPositioningDataList returns a boolean if a field has been set.

func (*LocationData) HasServingLMFIdentification

func (o *LocationData) HasServingLMFIdentification() bool

HasServingLMFIdentification returns a boolean if a field has been set.

func (*LocationData) HasSupportedFeatures

func (o *LocationData) HasSupportedFeatures() bool

HasSupportedFeatures returns a boolean if a field has been set.

func (*LocationData) HasTimestampOfLocationEstimate

func (o *LocationData) HasTimestampOfLocationEstimate() bool

HasTimestampOfLocationEstimate returns a boolean if a field has been set.

func (*LocationData) HasUeAreaInd

func (o *LocationData) HasUeAreaInd() bool

HasUeAreaInd returns a boolean if a field has been set.

func (*LocationData) HasUePositioningCap

func (o *LocationData) HasUePositioningCap() bool

HasUePositioningCap returns a boolean if a field has been set.

func (*LocationData) HasVelocityEstimate

func (o *LocationData) HasVelocityEstimate() bool

HasVelocityEstimate returns a boolean if a field has been set.

func (LocationData) MarshalJSON

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

func (*LocationData) SetAcceptedPeriodicEventInfo

func (o *LocationData) SetAcceptedPeriodicEventInfo(v PeriodicEventInfo)

SetAcceptedPeriodicEventInfo gets a reference to the given PeriodicEventInfo and assigns it to the AcceptedPeriodicEventInfo field.

func (*LocationData) SetAccuracyFulfilmentIndicator

func (o *LocationData) SetAccuracyFulfilmentIndicator(v AccuracyFulfilmentIndicator)

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

func (*LocationData) SetAchievedQos

func (o *LocationData) SetAchievedQos(v MinorLocationQoS)

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

func (*LocationData) SetAgeOfLocationEstimate

func (o *LocationData) SetAgeOfLocationEstimate(v int32)

SetAgeOfLocationEstimate gets a reference to the given int32 and assigns it to the AgeOfLocationEstimate field.

func (*LocationData) SetAltitude

func (o *LocationData) SetAltitude(v float64)

SetAltitude gets a reference to the given float64 and assigns it to the Altitude field.

func (*LocationData) SetBarometricPressure

func (o *LocationData) SetBarometricPressure(v int32)

SetBarometricPressure gets a reference to the given int32 and assigns it to the BarometricPressure field.

func (*LocationData) SetCivicAddress

func (o *LocationData) SetCivicAddress(v CivicAddress)

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

func (*LocationData) SetEcgi

func (o *LocationData) SetEcgi(v Ecgi)

SetEcgi gets a reference to the given Ecgi and assigns it to the Ecgi field.

func (*LocationData) SetGnssPositioningDataList

func (o *LocationData) SetGnssPositioningDataList(v []GnssPositioningMethodAndUsage)

SetGnssPositioningDataList gets a reference to the given []GnssPositioningMethodAndUsage and assigns it to the GnssPositioningDataList field.

func (*LocationData) SetHaGnssMetrics

func (o *LocationData) SetHaGnssMetrics(v HighAccuracyGnssMetrics)

SetHaGnssMetrics gets a reference to the given HighAccuracyGnssMetrics and assigns it to the HaGnssMetrics field.

func (*LocationData) SetLocalLocationEstimate

func (o *LocationData) SetLocalLocationEstimate(v LocalArea)

SetLocalLocationEstimate gets a reference to the given LocalArea and assigns it to the LocalLocationEstimate field.

func (*LocationData) SetLocationEstimate

func (o *LocationData) SetLocationEstimate(v GeographicArea)

SetLocationEstimate sets field value

func (*LocationData) SetNcgi

func (o *LocationData) SetNcgi(v Ncgi)

SetNcgi gets a reference to the given Ncgi and assigns it to the Ncgi field.

func (*LocationData) SetPositioningDataList

func (o *LocationData) SetPositioningDataList(v []PositioningMethodAndUsage)

SetPositioningDataList gets a reference to the given []PositioningMethodAndUsage and assigns it to the PositioningDataList field.

func (*LocationData) SetServingLMFIdentification

func (o *LocationData) SetServingLMFIdentification(v string)

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

func (*LocationData) SetSupportedFeatures

func (o *LocationData) SetSupportedFeatures(v string)

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

func (*LocationData) SetTimestampOfLocationEstimate

func (o *LocationData) SetTimestampOfLocationEstimate(v time.Time)

SetTimestampOfLocationEstimate gets a reference to the given time.Time and assigns it to the TimestampOfLocationEstimate field.

func (*LocationData) SetUeAreaInd

func (o *LocationData) SetUeAreaInd(v UeAreaIndication)

SetUeAreaInd gets a reference to the given NullableUeAreaIndication and assigns it to the UeAreaInd field.

func (*LocationData) SetUeAreaIndNil

func (o *LocationData) SetUeAreaIndNil()

SetUeAreaIndNil sets the value for UeAreaInd to be an explicit nil

func (*LocationData) SetUePositioningCap

func (o *LocationData) SetUePositioningCap(v string)

SetUePositioningCap gets a reference to the given string and assigns it to the UePositioningCap field.

func (*LocationData) SetVelocityEstimate

func (o *LocationData) SetVelocityEstimate(v VelocityEstimate)

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

func (LocationData) ToMap

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

func (*LocationData) UnmarshalJSON

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

func (*LocationData) UnsetUeAreaInd

func (o *LocationData) UnsetUeAreaInd()

UnsetUeAreaInd ensures that no value is present for UeAreaInd, not even an explicit nil

type LocationRecord

type LocationRecord struct {
	BaseRecord
	Location LocationData `json:"location"`
}

LocationRecord A data reporting record for UE location.

func NewLocationRecord

func NewLocationRecord(location LocationData, timestamp time.Time) *LocationRecord

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

func NewLocationRecordWithDefaults

func NewLocationRecordWithDefaults() *LocationRecord

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

func (*LocationRecord) GetLocation

func (o *LocationRecord) GetLocation() LocationData

GetLocation returns the Location field value

func (*LocationRecord) GetLocationOk

func (o *LocationRecord) GetLocationOk() (*LocationData, bool)

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

func (LocationRecord) MarshalJSON

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

func (*LocationRecord) SetLocation

func (o *LocationRecord) SetLocation(v LocationData)

SetLocation sets field value

func (LocationRecord) ToMap

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

func (*LocationRecord) UnmarshalJSON

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

type MappedNullable

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

type MediaStreamingAccessRecord

type MediaStreamingAccessRecord struct {
	BaseRecord
	MediaStreamHandlerEndpointAddress EndpointAddress                                `json:"mediaStreamHandlerEndpointAddress"`
	ApplicationServerEndpointAddress  EndpointAddress                                `json:"applicationServerEndpointAddress"`
	SessionIdentifier                 *string                                        `json:"sessionIdentifier,omitempty"`
	RequestMessage                    MediaStreamingAccessRecordAllOfRequestMessage  `json:"requestMessage"`
	CacheStatus                       *CacheStatus                                   `json:"cacheStatus,omitempty"`
	ResponseMessage                   MediaStreamingAccessRecordAllOfResponseMessage `json:"responseMessage"`
	// string with format 'float' as defined in OpenAPI.
	ProcessingLatency float32                                           `json:"processingLatency"`
	ConnectionMetrics *MediaStreamingAccessRecordAllOfConnectionMetrics `json:"connectionMetrics,omitempty"`
}

MediaStreamingAccessRecord struct for MediaStreamingAccessRecord

func NewMediaStreamingAccessRecord

func NewMediaStreamingAccessRecord(mediaStreamHandlerEndpointAddress EndpointAddress, applicationServerEndpointAddress EndpointAddress, requestMessage MediaStreamingAccessRecordAllOfRequestMessage, responseMessage MediaStreamingAccessRecordAllOfResponseMessage, processingLatency float32, timestamp time.Time) *MediaStreamingAccessRecord

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

func NewMediaStreamingAccessRecordWithDefaults

func NewMediaStreamingAccessRecordWithDefaults() *MediaStreamingAccessRecord

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

func (*MediaStreamingAccessRecord) GetApplicationServerEndpointAddress

func (o *MediaStreamingAccessRecord) GetApplicationServerEndpointAddress() EndpointAddress

GetApplicationServerEndpointAddress returns the ApplicationServerEndpointAddress field value

func (*MediaStreamingAccessRecord) GetApplicationServerEndpointAddressOk

func (o *MediaStreamingAccessRecord) GetApplicationServerEndpointAddressOk() (*EndpointAddress, bool)

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

func (*MediaStreamingAccessRecord) GetCacheStatus

func (o *MediaStreamingAccessRecord) GetCacheStatus() CacheStatus

GetCacheStatus returns the CacheStatus field value if set, zero value otherwise.

func (*MediaStreamingAccessRecord) GetCacheStatusOk

func (o *MediaStreamingAccessRecord) GetCacheStatusOk() (*CacheStatus, bool)

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

func (*MediaStreamingAccessRecord) GetConnectionMetrics

GetConnectionMetrics returns the ConnectionMetrics field value if set, zero value otherwise.

func (*MediaStreamingAccessRecord) GetConnectionMetricsOk

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

func (*MediaStreamingAccessRecord) GetMediaStreamHandlerEndpointAddress

func (o *MediaStreamingAccessRecord) GetMediaStreamHandlerEndpointAddress() EndpointAddress

GetMediaStreamHandlerEndpointAddress returns the MediaStreamHandlerEndpointAddress field value

func (*MediaStreamingAccessRecord) GetMediaStreamHandlerEndpointAddressOk

func (o *MediaStreamingAccessRecord) GetMediaStreamHandlerEndpointAddressOk() (*EndpointAddress, bool)

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

func (*MediaStreamingAccessRecord) GetProcessingLatency

func (o *MediaStreamingAccessRecord) GetProcessingLatency() float32

GetProcessingLatency returns the ProcessingLatency field value

func (*MediaStreamingAccessRecord) GetProcessingLatencyOk

func (o *MediaStreamingAccessRecord) GetProcessingLatencyOk() (*float32, bool)

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

func (*MediaStreamingAccessRecord) GetRequestMessage

GetRequestMessage returns the RequestMessage field value

func (*MediaStreamingAccessRecord) GetRequestMessageOk

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

func (*MediaStreamingAccessRecord) GetResponseMessage

GetResponseMessage returns the ResponseMessage field value

func (*MediaStreamingAccessRecord) GetResponseMessageOk

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

func (*MediaStreamingAccessRecord) GetSessionIdentifier

func (o *MediaStreamingAccessRecord) GetSessionIdentifier() string

GetSessionIdentifier returns the SessionIdentifier field value if set, zero value otherwise.

func (*MediaStreamingAccessRecord) GetSessionIdentifierOk

func (o *MediaStreamingAccessRecord) GetSessionIdentifierOk() (*string, bool)

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

func (*MediaStreamingAccessRecord) HasCacheStatus

func (o *MediaStreamingAccessRecord) HasCacheStatus() bool

HasCacheStatus returns a boolean if a field has been set.

func (*MediaStreamingAccessRecord) HasConnectionMetrics

func (o *MediaStreamingAccessRecord) HasConnectionMetrics() bool

HasConnectionMetrics returns a boolean if a field has been set.

func (*MediaStreamingAccessRecord) HasSessionIdentifier

func (o *MediaStreamingAccessRecord) HasSessionIdentifier() bool

HasSessionIdentifier returns a boolean if a field has been set.

func (MediaStreamingAccessRecord) MarshalJSON

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

func (*MediaStreamingAccessRecord) SetApplicationServerEndpointAddress

func (o *MediaStreamingAccessRecord) SetApplicationServerEndpointAddress(v EndpointAddress)

SetApplicationServerEndpointAddress sets field value

func (*MediaStreamingAccessRecord) SetCacheStatus

func (o *MediaStreamingAccessRecord) SetCacheStatus(v CacheStatus)

SetCacheStatus gets a reference to the given CacheStatus and assigns it to the CacheStatus field.

func (*MediaStreamingAccessRecord) SetConnectionMetrics

SetConnectionMetrics gets a reference to the given MediaStreamingAccessRecordAllOfConnectionMetrics and assigns it to the ConnectionMetrics field.

func (*MediaStreamingAccessRecord) SetMediaStreamHandlerEndpointAddress

func (o *MediaStreamingAccessRecord) SetMediaStreamHandlerEndpointAddress(v EndpointAddress)

SetMediaStreamHandlerEndpointAddress sets field value

func (*MediaStreamingAccessRecord) SetProcessingLatency

func (o *MediaStreamingAccessRecord) SetProcessingLatency(v float32)

SetProcessingLatency sets field value

func (*MediaStreamingAccessRecord) SetRequestMessage

SetRequestMessage sets field value

func (*MediaStreamingAccessRecord) SetResponseMessage

SetResponseMessage sets field value

func (*MediaStreamingAccessRecord) SetSessionIdentifier

func (o *MediaStreamingAccessRecord) SetSessionIdentifier(v string)

SetSessionIdentifier gets a reference to the given string and assigns it to the SessionIdentifier field.

func (MediaStreamingAccessRecord) ToMap

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

func (*MediaStreamingAccessRecord) UnmarshalJSON

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

type MediaStreamingAccessRecordAllOfConnectionMetrics

type MediaStreamingAccessRecordAllOfConnectionMetrics struct {
	// string with format 'float' as defined in OpenAPI.
	MeanNetworkRoundTripTime float32 `json:"meanNetworkRoundTripTime"`
	// string with format 'float' as defined in OpenAPI.
	NetworkRoundTripTimeVariation float32 `json:"networkRoundTripTimeVariation"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	CongestionWindowSize int32 `json:"congestionWindowSize"`
}

MediaStreamingAccessRecordAllOfConnectionMetrics struct for MediaStreamingAccessRecordAllOfConnectionMetrics

func NewMediaStreamingAccessRecordAllOfConnectionMetrics

func NewMediaStreamingAccessRecordAllOfConnectionMetrics(meanNetworkRoundTripTime float32, networkRoundTripTimeVariation float32, congestionWindowSize int32) *MediaStreamingAccessRecordAllOfConnectionMetrics

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

func NewMediaStreamingAccessRecordAllOfConnectionMetricsWithDefaults

func NewMediaStreamingAccessRecordAllOfConnectionMetricsWithDefaults() *MediaStreamingAccessRecordAllOfConnectionMetrics

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

func (*MediaStreamingAccessRecordAllOfConnectionMetrics) GetCongestionWindowSize

func (o *MediaStreamingAccessRecordAllOfConnectionMetrics) GetCongestionWindowSize() int32

GetCongestionWindowSize returns the CongestionWindowSize field value

func (*MediaStreamingAccessRecordAllOfConnectionMetrics) GetCongestionWindowSizeOk

func (o *MediaStreamingAccessRecordAllOfConnectionMetrics) GetCongestionWindowSizeOk() (*int32, bool)

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

func (*MediaStreamingAccessRecordAllOfConnectionMetrics) GetMeanNetworkRoundTripTime

func (o *MediaStreamingAccessRecordAllOfConnectionMetrics) GetMeanNetworkRoundTripTime() float32

GetMeanNetworkRoundTripTime returns the MeanNetworkRoundTripTime field value

func (*MediaStreamingAccessRecordAllOfConnectionMetrics) GetMeanNetworkRoundTripTimeOk

func (o *MediaStreamingAccessRecordAllOfConnectionMetrics) GetMeanNetworkRoundTripTimeOk() (*float32, bool)

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

func (*MediaStreamingAccessRecordAllOfConnectionMetrics) GetNetworkRoundTripTimeVariation

func (o *MediaStreamingAccessRecordAllOfConnectionMetrics) GetNetworkRoundTripTimeVariation() float32

GetNetworkRoundTripTimeVariation returns the NetworkRoundTripTimeVariation field value

func (*MediaStreamingAccessRecordAllOfConnectionMetrics) GetNetworkRoundTripTimeVariationOk

func (o *MediaStreamingAccessRecordAllOfConnectionMetrics) GetNetworkRoundTripTimeVariationOk() (*float32, bool)

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

func (MediaStreamingAccessRecordAllOfConnectionMetrics) MarshalJSON

func (*MediaStreamingAccessRecordAllOfConnectionMetrics) SetCongestionWindowSize

func (o *MediaStreamingAccessRecordAllOfConnectionMetrics) SetCongestionWindowSize(v int32)

SetCongestionWindowSize sets field value

func (*MediaStreamingAccessRecordAllOfConnectionMetrics) SetMeanNetworkRoundTripTime

func (o *MediaStreamingAccessRecordAllOfConnectionMetrics) SetMeanNetworkRoundTripTime(v float32)

SetMeanNetworkRoundTripTime sets field value

func (*MediaStreamingAccessRecordAllOfConnectionMetrics) SetNetworkRoundTripTimeVariation

func (o *MediaStreamingAccessRecordAllOfConnectionMetrics) SetNetworkRoundTripTimeVariation(v float32)

SetNetworkRoundTripTimeVariation sets field value

func (MediaStreamingAccessRecordAllOfConnectionMetrics) ToMap

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

func (*MediaStreamingAccessRecordAllOfConnectionMetrics) UnmarshalJSON

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

type MediaStreamingAccessRecordAllOfRequestMessage

type MediaStreamingAccessRecordAllOfRequestMessage struct {
	Method string `json:"method"`
	// Absolute Uniform Resource Locator, conforming with the \"absolute-URI\" production specified in IETF RFC 3986, section 4.3 in which the scheme part is \"http\" or \"https\". Note that the \"query\" suffix is permitted by this production but the \"fragment\" suffix is not.
	Url             string  `json:"url"`
	ProtocolVersion string  `json:"protocolVersion"`
	Range           *string `json:"range,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	Size int32 `json:"size"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	BodySize     int32   `json:"bodySize"`
	ContentType  *string `json:"contentType,omitempty"`
	UserAgent    *string `json:"userAgent,omitempty"`
	UserIdentity *string `json:"userIdentity,omitempty"`
	// Absolute Uniform Resource Locator, conforming with the \"absolute-URI\" production specified in IETF RFC 3986, section 4.3 in which the scheme part is \"http\" or \"https\". Note that the \"query\" suffix is permitted by this production but the \"fragment\" suffix is not.
	Referer *string `json:"referer,omitempty"`
}

MediaStreamingAccessRecordAllOfRequestMessage struct for MediaStreamingAccessRecordAllOfRequestMessage

func NewMediaStreamingAccessRecordAllOfRequestMessage

func NewMediaStreamingAccessRecordAllOfRequestMessage(method string, url string, protocolVersion string, size int32, bodySize int32) *MediaStreamingAccessRecordAllOfRequestMessage

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

func NewMediaStreamingAccessRecordAllOfRequestMessageWithDefaults

func NewMediaStreamingAccessRecordAllOfRequestMessageWithDefaults() *MediaStreamingAccessRecordAllOfRequestMessage

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

func (*MediaStreamingAccessRecordAllOfRequestMessage) GetBodySize

GetBodySize returns the BodySize field value

func (*MediaStreamingAccessRecordAllOfRequestMessage) GetBodySizeOk

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

func (*MediaStreamingAccessRecordAllOfRequestMessage) GetContentType

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

func (*MediaStreamingAccessRecordAllOfRequestMessage) GetContentTypeOk

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

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

func (*MediaStreamingAccessRecordAllOfRequestMessage) GetMethod

GetMethod returns the Method field value

func (*MediaStreamingAccessRecordAllOfRequestMessage) GetMethodOk

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

func (*MediaStreamingAccessRecordAllOfRequestMessage) GetProtocolVersion

func (o *MediaStreamingAccessRecordAllOfRequestMessage) GetProtocolVersion() string

GetProtocolVersion returns the ProtocolVersion field value

func (*MediaStreamingAccessRecordAllOfRequestMessage) GetProtocolVersionOk

func (o *MediaStreamingAccessRecordAllOfRequestMessage) GetProtocolVersionOk() (*string, bool)

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

func (*MediaStreamingAccessRecordAllOfRequestMessage) GetRange

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

func (*MediaStreamingAccessRecordAllOfRequestMessage) GetRangeOk

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

func (*MediaStreamingAccessRecordAllOfRequestMessage) GetReferer

GetReferer returns the Referer field value if set, zero value otherwise.

func (*MediaStreamingAccessRecordAllOfRequestMessage) GetRefererOk

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

func (*MediaStreamingAccessRecordAllOfRequestMessage) GetSize

GetSize returns the Size field value

func (*MediaStreamingAccessRecordAllOfRequestMessage) GetSizeOk

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

func (*MediaStreamingAccessRecordAllOfRequestMessage) GetUrl

GetUrl returns the Url field value

func (*MediaStreamingAccessRecordAllOfRequestMessage) GetUrlOk

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

func (*MediaStreamingAccessRecordAllOfRequestMessage) GetUserAgent

GetUserAgent returns the UserAgent field value if set, zero value otherwise.

func (*MediaStreamingAccessRecordAllOfRequestMessage) GetUserAgentOk

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

func (*MediaStreamingAccessRecordAllOfRequestMessage) GetUserIdentity

GetUserIdentity returns the UserIdentity field value if set, zero value otherwise.

func (*MediaStreamingAccessRecordAllOfRequestMessage) GetUserIdentityOk

func (o *MediaStreamingAccessRecordAllOfRequestMessage) GetUserIdentityOk() (*string, bool)

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

func (*MediaStreamingAccessRecordAllOfRequestMessage) HasContentType

HasContentType returns a boolean if a field has been set.

func (*MediaStreamingAccessRecordAllOfRequestMessage) HasRange

HasRange returns a boolean if a field has been set.

func (*MediaStreamingAccessRecordAllOfRequestMessage) HasReferer

HasReferer returns a boolean if a field has been set.

func (*MediaStreamingAccessRecordAllOfRequestMessage) HasUserAgent

HasUserAgent returns a boolean if a field has been set.

func (*MediaStreamingAccessRecordAllOfRequestMessage) HasUserIdentity

HasUserIdentity returns a boolean if a field has been set.

func (MediaStreamingAccessRecordAllOfRequestMessage) MarshalJSON

func (*MediaStreamingAccessRecordAllOfRequestMessage) SetBodySize

SetBodySize sets field value

func (*MediaStreamingAccessRecordAllOfRequestMessage) SetContentType

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

func (*MediaStreamingAccessRecordAllOfRequestMessage) SetMethod

SetMethod sets field value

func (*MediaStreamingAccessRecordAllOfRequestMessage) SetProtocolVersion

func (o *MediaStreamingAccessRecordAllOfRequestMessage) SetProtocolVersion(v string)

SetProtocolVersion sets field value

func (*MediaStreamingAccessRecordAllOfRequestMessage) SetRange

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

func (*MediaStreamingAccessRecordAllOfRequestMessage) SetReferer

SetReferer gets a reference to the given string and assigns it to the Referer field.

func (*MediaStreamingAccessRecordAllOfRequestMessage) SetSize

SetSize sets field value

func (*MediaStreamingAccessRecordAllOfRequestMessage) SetUrl

SetUrl sets field value

func (*MediaStreamingAccessRecordAllOfRequestMessage) SetUserAgent

SetUserAgent gets a reference to the given string and assigns it to the UserAgent field.

func (*MediaStreamingAccessRecordAllOfRequestMessage) SetUserIdentity

SetUserIdentity gets a reference to the given string and assigns it to the UserIdentity field.

func (MediaStreamingAccessRecordAllOfRequestMessage) ToMap

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

func (*MediaStreamingAccessRecordAllOfRequestMessage) UnmarshalJSON

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

type MediaStreamingAccessRecordAllOfResponseMessage

type MediaStreamingAccessRecordAllOfResponseMessage struct {
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	ResponseCode int32 `json:"responseCode"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	Size int32 `json:"size"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	BodySize    int32   `json:"bodySize"`
	ContentType *string `json:"contentType,omitempty"`
}

MediaStreamingAccessRecordAllOfResponseMessage struct for MediaStreamingAccessRecordAllOfResponseMessage

func NewMediaStreamingAccessRecordAllOfResponseMessage

func NewMediaStreamingAccessRecordAllOfResponseMessage(responseCode int32, size int32, bodySize int32) *MediaStreamingAccessRecordAllOfResponseMessage

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

func NewMediaStreamingAccessRecordAllOfResponseMessageWithDefaults

func NewMediaStreamingAccessRecordAllOfResponseMessageWithDefaults() *MediaStreamingAccessRecordAllOfResponseMessage

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

func (*MediaStreamingAccessRecordAllOfResponseMessage) GetBodySize

GetBodySize returns the BodySize field value

func (*MediaStreamingAccessRecordAllOfResponseMessage) GetBodySizeOk

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

func (*MediaStreamingAccessRecordAllOfResponseMessage) GetContentType

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

func (*MediaStreamingAccessRecordAllOfResponseMessage) GetContentTypeOk

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

func (*MediaStreamingAccessRecordAllOfResponseMessage) GetResponseCode

GetResponseCode returns the ResponseCode field value

func (*MediaStreamingAccessRecordAllOfResponseMessage) GetResponseCodeOk

func (o *MediaStreamingAccessRecordAllOfResponseMessage) GetResponseCodeOk() (*int32, bool)

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

func (*MediaStreamingAccessRecordAllOfResponseMessage) GetSize

GetSize returns the Size field value

func (*MediaStreamingAccessRecordAllOfResponseMessage) GetSizeOk

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

func (*MediaStreamingAccessRecordAllOfResponseMessage) HasContentType

HasContentType returns a boolean if a field has been set.

func (MediaStreamingAccessRecordAllOfResponseMessage) MarshalJSON

func (*MediaStreamingAccessRecordAllOfResponseMessage) SetBodySize

SetBodySize sets field value

func (*MediaStreamingAccessRecordAllOfResponseMessage) SetContentType

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

func (*MediaStreamingAccessRecordAllOfResponseMessage) SetResponseCode

SetResponseCode sets field value

func (*MediaStreamingAccessRecordAllOfResponseMessage) SetSize

SetSize sets field value

func (MediaStreamingAccessRecordAllOfResponseMessage) ToMap

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

func (*MediaStreamingAccessRecordAllOfResponseMessage) UnmarshalJSON

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

type MinorLocationQoS

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

MinorLocationQoS Contain Minor Location QoS.

func NewMinorLocationQoS

func NewMinorLocationQoS() *MinorLocationQoS

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

func NewMinorLocationQoSWithDefaults

func NewMinorLocationQoSWithDefaults() *MinorLocationQoS

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

func (*MinorLocationQoS) GetHAccuracy

func (o *MinorLocationQoS) GetHAccuracy() float32

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

func (*MinorLocationQoS) GetHAccuracyOk

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

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

func (*MinorLocationQoS) GetVAccuracy

func (o *MinorLocationQoS) GetVAccuracy() float32

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

func (*MinorLocationQoS) GetVAccuracyOk

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

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

func (*MinorLocationQoS) HasHAccuracy

func (o *MinorLocationQoS) HasHAccuracy() bool

HasHAccuracy returns a boolean if a field has been set.

func (*MinorLocationQoS) HasVAccuracy

func (o *MinorLocationQoS) HasVAccuracy() bool

HasVAccuracy returns a boolean if a field has been set.

func (MinorLocationQoS) MarshalJSON

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

func (*MinorLocationQoS) SetHAccuracy

func (o *MinorLocationQoS) SetHAccuracy(v float32)

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

func (*MinorLocationQoS) SetVAccuracy

func (o *MinorLocationQoS) SetVAccuracy(v float32)

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

func (MinorLocationQoS) ToMap

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

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

func (*Ncgi) UnmarshalJSON

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

type NetworkAreaInfo

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

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

func NewNetworkAreaInfo

func NewNetworkAreaInfo() *NetworkAreaInfo

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

func NewNetworkAreaInfoWithDefaults

func NewNetworkAreaInfoWithDefaults() *NetworkAreaInfo

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

func (*NetworkAreaInfo) GetEcgis

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

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

func (*NetworkAreaInfo) GetEcgisOk

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

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

func (*NetworkAreaInfo) GetGRanNodeIds

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

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

func (*NetworkAreaInfo) GetGRanNodeIdsOk

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

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

func (*NetworkAreaInfo) GetNcgis

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

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

func (*NetworkAreaInfo) GetNcgisOk

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

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

func (*NetworkAreaInfo) GetTais

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

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

func (*NetworkAreaInfo) GetTaisOk

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

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

func (*NetworkAreaInfo) HasEcgis

func (o *NetworkAreaInfo) HasEcgis() bool

HasEcgis returns a boolean if a field has been set.

func (*NetworkAreaInfo) HasGRanNodeIds

func (o *NetworkAreaInfo) HasGRanNodeIds() bool

HasGRanNodeIds returns a boolean if a field has been set.

func (*NetworkAreaInfo) HasNcgis

func (o *NetworkAreaInfo) HasNcgis() bool

HasNcgis returns a boolean if a field has been set.

func (*NetworkAreaInfo) HasTais

func (o *NetworkAreaInfo) HasTais() bool

HasTais returns a boolean if a field has been set.

func (NetworkAreaInfo) MarshalJSON

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

func (*NetworkAreaInfo) SetEcgis

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

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

func (*NetworkAreaInfo) SetGRanNodeIds

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

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

func (*NetworkAreaInfo) SetNcgis

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

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

func (*NetworkAreaInfo) SetTais

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

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

func (NetworkAreaInfo) ToMap

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

type NullableAccuracyFulfilmentIndicator

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

func (NullableAccuracyFulfilmentIndicator) Get

func (NullableAccuracyFulfilmentIndicator) IsSet

func (NullableAccuracyFulfilmentIndicator) MarshalJSON

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

func (*NullableAccuracyFulfilmentIndicator) Set

func (*NullableAccuracyFulfilmentIndicator) UnmarshalJSON

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

func (*NullableAccuracyFulfilmentIndicator) Unset

type NullableAddrFqdn

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

func NewNullableAddrFqdn

func NewNullableAddrFqdn(val *AddrFqdn) *NullableAddrFqdn

func (NullableAddrFqdn) Get

func (v NullableAddrFqdn) Get() *AddrFqdn

func (NullableAddrFqdn) IsSet

func (v NullableAddrFqdn) IsSet() bool

func (NullableAddrFqdn) MarshalJSON

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

func (*NullableAddrFqdn) Set

func (v *NullableAddrFqdn) Set(val *AddrFqdn)

func (*NullableAddrFqdn) UnmarshalJSON

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

func (*NullableAddrFqdn) Unset

func (v *NullableAddrFqdn) Unset()

type NullableApplicationSpecificRecord

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

func (NullableApplicationSpecificRecord) Get

func (NullableApplicationSpecificRecord) IsSet

func (NullableApplicationSpecificRecord) MarshalJSON

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

func (*NullableApplicationSpecificRecord) Set

func (*NullableApplicationSpecificRecord) UnmarshalJSON

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

func (*NullableApplicationSpecificRecord) Unset

type NullableBaseRecord

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

func NewNullableBaseRecord

func NewNullableBaseRecord(val *BaseRecord) *NullableBaseRecord

func (NullableBaseRecord) Get

func (v NullableBaseRecord) Get() *BaseRecord

func (NullableBaseRecord) IsSet

func (v NullableBaseRecord) IsSet() bool

func (NullableBaseRecord) MarshalJSON

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

func (*NullableBaseRecord) Set

func (v *NullableBaseRecord) Set(val *BaseRecord)

func (*NullableBaseRecord) UnmarshalJSON

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

func (*NullableBaseRecord) Unset

func (v *NullableBaseRecord) 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 NullableCacheStatus

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

func NewNullableCacheStatus

func NewNullableCacheStatus(val *CacheStatus) *NullableCacheStatus

func (NullableCacheStatus) Get

func (NullableCacheStatus) IsSet

func (v NullableCacheStatus) IsSet() bool

func (NullableCacheStatus) MarshalJSON

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

func (*NullableCacheStatus) Set

func (v *NullableCacheStatus) Set(val *CacheStatus)

func (*NullableCacheStatus) UnmarshalJSON

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

func (*NullableCacheStatus) Unset

func (v *NullableCacheStatus) 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 NullableCommunicationRecord

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

func NewNullableCommunicationRecord

func NewNullableCommunicationRecord(val *CommunicationRecord) *NullableCommunicationRecord

func (NullableCommunicationRecord) Get

func (NullableCommunicationRecord) IsSet

func (NullableCommunicationRecord) MarshalJSON

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

func (*NullableCommunicationRecord) Set

func (*NullableCommunicationRecord) UnmarshalJSON

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

func (*NullableCommunicationRecord) Unset

func (v *NullableCommunicationRecord) Unset()

type NullableDataDomain

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

func NewNullableDataDomain

func NewNullableDataDomain(val *DataDomain) *NullableDataDomain

func (NullableDataDomain) Get

func (v NullableDataDomain) Get() *DataDomain

func (NullableDataDomain) IsSet

func (v NullableDataDomain) IsSet() bool

func (NullableDataDomain) MarshalJSON

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

func (*NullableDataDomain) Set

func (v *NullableDataDomain) Set(val *DataDomain)

func (*NullableDataDomain) UnmarshalJSON

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

func (*NullableDataDomain) Unset

func (v *NullableDataDomain) Unset()

type NullableDataReport

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

func NewNullableDataReport

func NewNullableDataReport(val *DataReport) *NullableDataReport

func (NullableDataReport) Get

func (v NullableDataReport) Get() *DataReport

func (NullableDataReport) IsSet

func (v NullableDataReport) IsSet() bool

func (NullableDataReport) MarshalJSON

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

func (*NullableDataReport) Set

func (v *NullableDataReport) Set(val *DataReport)

func (*NullableDataReport) UnmarshalJSON

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

func (*NullableDataReport) Unset

func (v *NullableDataReport) Unset()

type NullableDataReportingRule

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

func NewNullableDataReportingRule

func NewNullableDataReportingRule(val *DataReportingRule) *NullableDataReportingRule

func (NullableDataReportingRule) Get

func (NullableDataReportingRule) IsSet

func (v NullableDataReportingRule) IsSet() bool

func (NullableDataReportingRule) MarshalJSON

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

func (*NullableDataReportingRule) Set

func (*NullableDataReportingRule) UnmarshalJSON

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

func (*NullableDataReportingRule) Unset

func (v *NullableDataReportingRule) Unset()

type NullableDataReportingSession

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

func NewNullableDataReportingSession

func NewNullableDataReportingSession(val *DataReportingSession) *NullableDataReportingSession

func (NullableDataReportingSession) Get

func (NullableDataReportingSession) IsSet

func (NullableDataReportingSession) MarshalJSON

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

func (*NullableDataReportingSession) Set

func (*NullableDataReportingSession) UnmarshalJSON

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

func (*NullableDataReportingSession) Unset

func (v *NullableDataReportingSession) Unset()

type NullableDataReportingSessionReportingConditionsInner

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

func (NullableDataReportingSessionReportingConditionsInner) Get

func (NullableDataReportingSessionReportingConditionsInner) IsSet

func (NullableDataReportingSessionReportingConditionsInner) MarshalJSON

func (*NullableDataReportingSessionReportingConditionsInner) Set

func (*NullableDataReportingSessionReportingConditionsInner) UnmarshalJSON

func (*NullableDataReportingSessionReportingConditionsInner) Unset

type NullableDataReportingSessionReportingRulesInner

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

func (NullableDataReportingSessionReportingRulesInner) Get

func (NullableDataReportingSessionReportingRulesInner) IsSet

func (NullableDataReportingSessionReportingRulesInner) MarshalJSON

func (*NullableDataReportingSessionReportingRulesInner) Set

func (*NullableDataReportingSessionReportingRulesInner) UnmarshalJSON

func (*NullableDataReportingSessionReportingRulesInner) Unset

type NullableDataReportingSessionSamplingRulesInner

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

func (NullableDataReportingSessionSamplingRulesInner) Get

func (NullableDataReportingSessionSamplingRulesInner) IsSet

func (NullableDataReportingSessionSamplingRulesInner) MarshalJSON

func (*NullableDataReportingSessionSamplingRulesInner) Set

func (*NullableDataReportingSessionSamplingRulesInner) UnmarshalJSON

func (*NullableDataReportingSessionSamplingRulesInner) Unset

type NullableDataSamplingRule

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

func NewNullableDataSamplingRule

func NewNullableDataSamplingRule(val *DataSamplingRule) *NullableDataSamplingRule

func (NullableDataSamplingRule) Get

func (NullableDataSamplingRule) IsSet

func (v NullableDataSamplingRule) IsSet() bool

func (NullableDataSamplingRule) MarshalJSON

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

func (*NullableDataSamplingRule) Set

func (*NullableDataSamplingRule) UnmarshalJSON

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

func (*NullableDataSamplingRule) Unset

func (v *NullableDataSamplingRule) 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 NullableEndpointAddress

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

func NewNullableEndpointAddress

func NewNullableEndpointAddress(val *EndpointAddress) *NullableEndpointAddress

func (NullableEndpointAddress) Get

func (NullableEndpointAddress) IsSet

func (v NullableEndpointAddress) IsSet() bool

func (NullableEndpointAddress) MarshalJSON

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

func (*NullableEndpointAddress) Set

func (*NullableEndpointAddress) UnmarshalJSON

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

func (*NullableEndpointAddress) Unset

func (v *NullableEndpointAddress) Unset()

type NullableFixType

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

func NewNullableFixType

func NewNullableFixType(val *FixType) *NullableFixType

func (NullableFixType) Get

func (v NullableFixType) Get() *FixType

func (NullableFixType) IsSet

func (v NullableFixType) IsSet() bool

func (NullableFixType) MarshalJSON

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

func (*NullableFixType) Set

func (v *NullableFixType) Set(val *FixType)

func (*NullableFixType) UnmarshalJSON

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

func (*NullableFixType) Unset

func (v *NullableFixType) 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 NullableGnssId

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

func NewNullableGnssId

func NewNullableGnssId(val *GnssId) *NullableGnssId

func (NullableGnssId) Get

func (v NullableGnssId) Get() *GnssId

func (NullableGnssId) IsSet

func (v NullableGnssId) IsSet() bool

func (NullableGnssId) MarshalJSON

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

func (*NullableGnssId) Set

func (v *NullableGnssId) Set(val *GnssId)

func (*NullableGnssId) UnmarshalJSON

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

func (*NullableGnssId) Unset

func (v *NullableGnssId) Unset()

type NullableGnssPositioningMethodAndUsage

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

func (NullableGnssPositioningMethodAndUsage) Get

func (NullableGnssPositioningMethodAndUsage) IsSet

func (NullableGnssPositioningMethodAndUsage) MarshalJSON

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

func (*NullableGnssPositioningMethodAndUsage) Set

func (*NullableGnssPositioningMethodAndUsage) UnmarshalJSON

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

func (*NullableGnssPositioningMethodAndUsage) Unset

type NullableHighAccuracyGnssMetrics

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

func (NullableHighAccuracyGnssMetrics) Get

func (NullableHighAccuracyGnssMetrics) IsSet

func (NullableHighAccuracyGnssMetrics) MarshalJSON

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

func (*NullableHighAccuracyGnssMetrics) Set

func (*NullableHighAccuracyGnssMetrics) UnmarshalJSON

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

func (*NullableHighAccuracyGnssMetrics) Unset

type NullableHorizontalVelocity

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

func NewNullableHorizontalVelocity

func NewNullableHorizontalVelocity(val *HorizontalVelocity) *NullableHorizontalVelocity

func (NullableHorizontalVelocity) Get

func (NullableHorizontalVelocity) IsSet

func (v NullableHorizontalVelocity) IsSet() bool

func (NullableHorizontalVelocity) MarshalJSON

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

func (*NullableHorizontalVelocity) Set

func (*NullableHorizontalVelocity) UnmarshalJSON

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

func (*NullableHorizontalVelocity) Unset

func (v *NullableHorizontalVelocity) Unset()

type NullableHorizontalVelocityWithUncertainty

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

func (NullableHorizontalVelocityWithUncertainty) Get

func (NullableHorizontalVelocityWithUncertainty) IsSet

func (NullableHorizontalVelocityWithUncertainty) MarshalJSON

func (*NullableHorizontalVelocityWithUncertainty) Set

func (*NullableHorizontalVelocityWithUncertainty) UnmarshalJSON

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

func (*NullableHorizontalVelocityWithUncertainty) Unset

type NullableHorizontalWithVerticalVelocity

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

func (NullableHorizontalWithVerticalVelocity) Get

func (NullableHorizontalWithVerticalVelocity) IsSet

func (NullableHorizontalWithVerticalVelocity) MarshalJSON

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

func (*NullableHorizontalWithVerticalVelocity) Set

func (*NullableHorizontalWithVerticalVelocity) UnmarshalJSON

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

func (*NullableHorizontalWithVerticalVelocity) Unset

type NullableHorizontalWithVerticalVelocityAndUncertainty

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

func (NullableHorizontalWithVerticalVelocityAndUncertainty) Get

func (NullableHorizontalWithVerticalVelocityAndUncertainty) IsSet

func (NullableHorizontalWithVerticalVelocityAndUncertainty) MarshalJSON

func (*NullableHorizontalWithVerticalVelocityAndUncertainty) Set

func (*NullableHorizontalWithVerticalVelocityAndUncertainty) UnmarshalJSON

func (*NullableHorizontalWithVerticalVelocityAndUncertainty) Unset

type NullableInt

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

func NewNullableInt

func NewNullableInt(val *int) *NullableInt

func (NullableInt) Get

func (v NullableInt) Get() *int

func (NullableInt) IsSet

func (v NullableInt) IsSet() bool

func (NullableInt) MarshalJSON

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

func (*NullableInt) Set

func (v *NullableInt) Set(val *int)

func (*NullableInt) UnmarshalJSON

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

func (*NullableInt) Unset

func (v *NullableInt) Unset()

type NullableInt32

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

func NewNullableInt32

func NewNullableInt32(val *int32) *NullableInt32

func (NullableInt32) Get

func (v NullableInt32) Get() *int32

func (NullableInt32) IsSet

func (v NullableInt32) IsSet() bool

func (NullableInt32) MarshalJSON

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

func (*NullableInt32) Set

func (v *NullableInt32) Set(val *int32)

func (*NullableInt32) UnmarshalJSON

func (v *NullableInt32) UnmarshalJSON(src []byte) error

func (*NullableInt32) Unset

func (v *NullableInt32) Unset()

type NullableInt64

type NullableInt64 struct {
	// contains filtered or unexported fields
}

func NewNullableInt64

func NewNullableInt64(val *int64) *NullableInt64

func (NullableInt64) Get

func (v NullableInt64) Get() *int64

func (NullableInt64) IsSet

func (v NullableInt64) IsSet() bool

func (NullableInt64) MarshalJSON

func (v NullableInt64) MarshalJSON() ([]byte, error)

func (*NullableInt64) Set

func (v *NullableInt64) Set(val *int64)

func (*NullableInt64) UnmarshalJSON

func (v *NullableInt64) UnmarshalJSON(src []byte) error

func (*NullableInt64) Unset

func (v *NullableInt64) Unset()

type NullableInvalidParam

type NullableInvalidParam struct {
	// contains filtered or unexported fields
}

func NewNullableInvalidParam

func NewNullableInvalidParam(val *InvalidParam) *NullableInvalidParam

func (NullableInvalidParam) Get

func (NullableInvalidParam) IsSet

func (v NullableInvalidParam) IsSet() bool

func (NullableInvalidParam) MarshalJSON

func (v NullableInvalidParam) MarshalJSON() ([]byte, error)

func (*NullableInvalidParam) Set

func (v *NullableInvalidParam) Set(val *InvalidParam)

func (*NullableInvalidParam) UnmarshalJSON

func (v *NullableInvalidParam) UnmarshalJSON(src []byte) error

func (*NullableInvalidParam) Unset

func (v *NullableInvalidParam) Unset()

type NullableIpAddr

type NullableIpAddr struct {
	// contains filtered or unexported fields
}

func NewNullableIpAddr

func NewNullableIpAddr(val *IpAddr) *NullableIpAddr

func (NullableIpAddr) Get

func (v NullableIpAddr) Get() *IpAddr

func (NullableIpAddr) IsSet

func (v NullableIpAddr) IsSet() bool

func (NullableIpAddr) MarshalJSON

func (v NullableIpAddr) MarshalJSON() ([]byte, error)

func (*NullableIpAddr) Set

func (v *NullableIpAddr) Set(val *IpAddr)

func (*NullableIpAddr) UnmarshalJSON

func (v *NullableIpAddr) UnmarshalJSON(src []byte) error

func (*NullableIpAddr) Unset

func (v *NullableIpAddr) Unset()

type NullableIpv6Addr

type NullableIpv6Addr struct {
	// contains filtered or unexported fields
}

func NewNullableIpv6Addr

func NewNullableIpv6Addr(val *Ipv6Addr) *NullableIpv6Addr

func (NullableIpv6Addr) Get

func (v NullableIpv6Addr) Get() *Ipv6Addr

func (NullableIpv6Addr) IsSet

func (v NullableIpv6Addr) IsSet() bool

func (NullableIpv6Addr) MarshalJSON

func (v NullableIpv6Addr) MarshalJSON() ([]byte, error)

func (*NullableIpv6Addr) Set

func (v *NullableIpv6Addr) Set(val *Ipv6Addr)

func (*NullableIpv6Addr) UnmarshalJSON

func (v *NullableIpv6Addr) UnmarshalJSON(src []byte) error

func (*NullableIpv6Addr) Unset

func (v *NullableIpv6Addr) Unset()

type NullableIpv6Prefix

type NullableIpv6Prefix struct {
	// contains filtered or unexported fields
}

func NewNullableIpv6Prefix

func NewNullableIpv6Prefix(val *Ipv6Prefix) *NullableIpv6Prefix

func (NullableIpv6Prefix) Get

func (v NullableIpv6Prefix) Get() *Ipv6Prefix

func (NullableIpv6Prefix) IsSet

func (v NullableIpv6Prefix) IsSet() bool

func (NullableIpv6Prefix) MarshalJSON

func (v NullableIpv6Prefix) MarshalJSON() ([]byte, error)

func (*NullableIpv6Prefix) Set

func (v *NullableIpv6Prefix) Set(val *Ipv6Prefix)

func (*NullableIpv6Prefix) UnmarshalJSON

func (v *NullableIpv6Prefix) UnmarshalJSON(src []byte) error

func (*NullableIpv6Prefix) Unset

func (v *NullableIpv6Prefix) Unset()

type NullableLocal2dPointUncertaintyEllipse

type NullableLocal2dPointUncertaintyEllipse struct {
	// contains filtered or unexported fields
}

func (NullableLocal2dPointUncertaintyEllipse) Get

func (NullableLocal2dPointUncertaintyEllipse) IsSet

func (NullableLocal2dPointUncertaintyEllipse) MarshalJSON

func (v NullableLocal2dPointUncertaintyEllipse) MarshalJSON() ([]byte, error)

func (*NullableLocal2dPointUncertaintyEllipse) Set

func (*NullableLocal2dPointUncertaintyEllipse) UnmarshalJSON

func (v *NullableLocal2dPointUncertaintyEllipse) UnmarshalJSON(src []byte) error

func (*NullableLocal2dPointUncertaintyEllipse) Unset

type NullableLocal3dPointUncertaintyEllipsoid

type NullableLocal3dPointUncertaintyEllipsoid struct {
	// contains filtered or unexported fields
}

func (NullableLocal3dPointUncertaintyEllipsoid) Get

func (NullableLocal3dPointUncertaintyEllipsoid) IsSet

func (NullableLocal3dPointUncertaintyEllipsoid) MarshalJSON

func (*NullableLocal3dPointUncertaintyEllipsoid) Set

func (*NullableLocal3dPointUncertaintyEllipsoid) UnmarshalJSON

func (v *NullableLocal3dPointUncertaintyEllipsoid) UnmarshalJSON(src []byte) error

func (*NullableLocal3dPointUncertaintyEllipsoid) Unset

type NullableLocalArea

type NullableLocalArea struct {
	// contains filtered or unexported fields
}

func NewNullableLocalArea

func NewNullableLocalArea(val *LocalArea) *NullableLocalArea

func (NullableLocalArea) Get

func (v NullableLocalArea) Get() *LocalArea

func (NullableLocalArea) IsSet

func (v NullableLocalArea) IsSet() bool

func (NullableLocalArea) MarshalJSON

func (v NullableLocalArea) MarshalJSON() ([]byte, error)

func (*NullableLocalArea) Set

func (v *NullableLocalArea) Set(val *LocalArea)

func (*NullableLocalArea) UnmarshalJSON

func (v *NullableLocalArea) UnmarshalJSON(src []byte) error

func (*NullableLocalArea) Unset

func (v *NullableLocalArea) Unset()

type NullableLocalOrigin

type NullableLocalOrigin struct {
	// contains filtered or unexported fields
}

func NewNullableLocalOrigin

func NewNullableLocalOrigin(val *LocalOrigin) *NullableLocalOrigin

func (NullableLocalOrigin) Get

func (NullableLocalOrigin) IsSet

func (v NullableLocalOrigin) IsSet() bool

func (NullableLocalOrigin) MarshalJSON

func (v NullableLocalOrigin) MarshalJSON() ([]byte, error)

func (*NullableLocalOrigin) Set

func (v *NullableLocalOrigin) Set(val *LocalOrigin)

func (*NullableLocalOrigin) UnmarshalJSON

func (v *NullableLocalOrigin) UnmarshalJSON(src []byte) error

func (*NullableLocalOrigin) Unset

func (v *NullableLocalOrigin) Unset()

type 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 NullableLocationData

type NullableLocationData struct {
	// contains filtered or unexported fields
}

func NewNullableLocationData

func NewNullableLocationData(val *LocationData) *NullableLocationData

func (NullableLocationData) Get

func (NullableLocationData) IsSet

func (v NullableLocationData) IsSet() bool

func (NullableLocationData) MarshalJSON

func (v NullableLocationData) MarshalJSON() ([]byte, error)

func (*NullableLocationData) Set

func (v *NullableLocationData) Set(val *LocationData)

func (*NullableLocationData) UnmarshalJSON

func (v *NullableLocationData) UnmarshalJSON(src []byte) error

func (*NullableLocationData) Unset

func (v *NullableLocationData) Unset()

type NullableLocationRecord

type NullableLocationRecord struct {
	// contains filtered or unexported fields
}

func NewNullableLocationRecord

func NewNullableLocationRecord(val *LocationRecord) *NullableLocationRecord

func (NullableLocationRecord) Get

func (NullableLocationRecord) IsSet

func (v NullableLocationRecord) IsSet() bool

func (NullableLocationRecord) MarshalJSON

func (v NullableLocationRecord) MarshalJSON() ([]byte, error)

func (*NullableLocationRecord) Set

func (*NullableLocationRecord) UnmarshalJSON

func (v *NullableLocationRecord) UnmarshalJSON(src []byte) error

func (*NullableLocationRecord) Unset

func (v *NullableLocationRecord) Unset()

type NullableMediaStreamingAccessRecord

type NullableMediaStreamingAccessRecord struct {
	// contains filtered or unexported fields
}

func (NullableMediaStreamingAccessRecord) Get

func (NullableMediaStreamingAccessRecord) IsSet

func (NullableMediaStreamingAccessRecord) MarshalJSON

func (v NullableMediaStreamingAccessRecord) MarshalJSON() ([]byte, error)

func (*NullableMediaStreamingAccessRecord) Set

func (*NullableMediaStreamingAccessRecord) UnmarshalJSON

func (v *NullableMediaStreamingAccessRecord) UnmarshalJSON(src []byte) error

func (*NullableMediaStreamingAccessRecord) Unset

type NullableMediaStreamingAccessRecordAllOfConnectionMetrics

type NullableMediaStreamingAccessRecordAllOfConnectionMetrics struct {
	// contains filtered or unexported fields
}

func (NullableMediaStreamingAccessRecordAllOfConnectionMetrics) Get

func (NullableMediaStreamingAccessRecordAllOfConnectionMetrics) IsSet

func (NullableMediaStreamingAccessRecordAllOfConnectionMetrics) MarshalJSON

func (*NullableMediaStreamingAccessRecordAllOfConnectionMetrics) Set

func (*NullableMediaStreamingAccessRecordAllOfConnectionMetrics) UnmarshalJSON

func (*NullableMediaStreamingAccessRecordAllOfConnectionMetrics) Unset

type NullableMediaStreamingAccessRecordAllOfRequestMessage

type NullableMediaStreamingAccessRecordAllOfRequestMessage struct {
	// contains filtered or unexported fields
}

func (NullableMediaStreamingAccessRecordAllOfRequestMessage) Get

func (NullableMediaStreamingAccessRecordAllOfRequestMessage) IsSet

func (NullableMediaStreamingAccessRecordAllOfRequestMessage) MarshalJSON

func (*NullableMediaStreamingAccessRecordAllOfRequestMessage) Set

func (*NullableMediaStreamingAccessRecordAllOfRequestMessage) UnmarshalJSON

func (*NullableMediaStreamingAccessRecordAllOfRequestMessage) Unset

type NullableMediaStreamingAccessRecordAllOfResponseMessage

type NullableMediaStreamingAccessRecordAllOfResponseMessage struct {
	// contains filtered or unexported fields
}

func (NullableMediaStreamingAccessRecordAllOfResponseMessage) Get

func (NullableMediaStreamingAccessRecordAllOfResponseMessage) IsSet

func (NullableMediaStreamingAccessRecordAllOfResponseMessage) MarshalJSON

func (*NullableMediaStreamingAccessRecordAllOfResponseMessage) Set

func (*NullableMediaStreamingAccessRecordAllOfResponseMessage) UnmarshalJSON

func (*NullableMediaStreamingAccessRecordAllOfResponseMessage) Unset

type NullableMinorLocationQoS

type NullableMinorLocationQoS struct {
	// contains filtered or unexported fields
}

func NewNullableMinorLocationQoS

func NewNullableMinorLocationQoS(val *MinorLocationQoS) *NullableMinorLocationQoS

func (NullableMinorLocationQoS) Get

func (NullableMinorLocationQoS) IsSet

func (v NullableMinorLocationQoS) IsSet() bool

func (NullableMinorLocationQoS) MarshalJSON

func (v NullableMinorLocationQoS) MarshalJSON() ([]byte, error)

func (*NullableMinorLocationQoS) Set

func (*NullableMinorLocationQoS) UnmarshalJSON

func (v *NullableMinorLocationQoS) UnmarshalJSON(src []byte) error

func (*NullableMinorLocationQoS) Unset

func (v *NullableMinorLocationQoS) Unset()

type 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 NullablePerFlowServiceExperienceInfo

type NullablePerFlowServiceExperienceInfo struct {
	// contains filtered or unexported fields
}

func (NullablePerFlowServiceExperienceInfo) Get

func (NullablePerFlowServiceExperienceInfo) IsSet

func (NullablePerFlowServiceExperienceInfo) MarshalJSON

func (v NullablePerFlowServiceExperienceInfo) MarshalJSON() ([]byte, error)

func (*NullablePerFlowServiceExperienceInfo) Set

func (*NullablePerFlowServiceExperienceInfo) UnmarshalJSON

func (v *NullablePerFlowServiceExperienceInfo) UnmarshalJSON(src []byte) error

func (*NullablePerFlowServiceExperienceInfo) Unset

type NullablePerformanceDataRecord

type NullablePerformanceDataRecord struct {
	// contains filtered or unexported fields
}

func (NullablePerformanceDataRecord) Get

func (NullablePerformanceDataRecord) IsSet

func (NullablePerformanceDataRecord) MarshalJSON

func (v NullablePerformanceDataRecord) MarshalJSON() ([]byte, error)

func (*NullablePerformanceDataRecord) Set

func (*NullablePerformanceDataRecord) UnmarshalJSON

func (v *NullablePerformanceDataRecord) UnmarshalJSON(src []byte) error

func (*NullablePerformanceDataRecord) Unset

func (v *NullablePerformanceDataRecord) Unset()

type NullablePeriodicEventInfo

type NullablePeriodicEventInfo struct {
	// contains filtered or unexported fields
}

func NewNullablePeriodicEventInfo

func NewNullablePeriodicEventInfo(val *PeriodicEventInfo) *NullablePeriodicEventInfo

func (NullablePeriodicEventInfo) Get

func (NullablePeriodicEventInfo) IsSet

func (v NullablePeriodicEventInfo) IsSet() bool

func (NullablePeriodicEventInfo) MarshalJSON

func (v NullablePeriodicEventInfo) MarshalJSON() ([]byte, error)

func (*NullablePeriodicEventInfo) Set

func (*NullablePeriodicEventInfo) UnmarshalJSON

func (v *NullablePeriodicEventInfo) UnmarshalJSON(src []byte) error

func (*NullablePeriodicEventInfo) Unset

func (v *NullablePeriodicEventInfo) Unset()

type NullablePlmnId

type NullablePlmnId struct {
	// contains filtered or unexported fields
}

func NewNullablePlmnId

func NewNullablePlmnId(val *PlmnId) *NullablePlmnId

func (NullablePlmnId) Get

func (v NullablePlmnId) Get() *PlmnId

func (NullablePlmnId) IsSet

func (v NullablePlmnId) IsSet() bool

func (NullablePlmnId) MarshalJSON

func (v NullablePlmnId) MarshalJSON() ([]byte, error)

func (*NullablePlmnId) Set

func (v *NullablePlmnId) Set(val *PlmnId)

func (*NullablePlmnId) UnmarshalJSON

func (v *NullablePlmnId) UnmarshalJSON(src []byte) error

func (*NullablePlmnId) Unset

func (v *NullablePlmnId) Unset()

type NullablePoint

type NullablePoint struct {
	// contains filtered or unexported fields
}

func NewNullablePoint

func NewNullablePoint(val *Point) *NullablePoint

func (NullablePoint) Get

func (v NullablePoint) Get() *Point

func (NullablePoint) IsSet

func (v NullablePoint) IsSet() bool

func (NullablePoint) MarshalJSON

func (v NullablePoint) MarshalJSON() ([]byte, error)

func (*NullablePoint) Set

func (v *NullablePoint) Set(val *Point)

func (*NullablePoint) UnmarshalJSON

func (v *NullablePoint) UnmarshalJSON(src []byte) error

func (*NullablePoint) Unset

func (v *NullablePoint) Unset()

type NullablePointAltitude

type NullablePointAltitude struct {
	// contains filtered or unexported fields
}

func NewNullablePointAltitude

func NewNullablePointAltitude(val *PointAltitude) *NullablePointAltitude

func (NullablePointAltitude) Get

func (NullablePointAltitude) IsSet

func (v NullablePointAltitude) IsSet() bool

func (NullablePointAltitude) MarshalJSON

func (v NullablePointAltitude) MarshalJSON() ([]byte, error)

func (*NullablePointAltitude) Set

func (v *NullablePointAltitude) Set(val *PointAltitude)

func (*NullablePointAltitude) UnmarshalJSON

func (v *NullablePointAltitude) UnmarshalJSON(src []byte) error

func (*NullablePointAltitude) Unset

func (v *NullablePointAltitude) Unset()

type NullablePointAltitudeUncertainty

type NullablePointAltitudeUncertainty struct {
	// contains filtered or unexported fields
}

func (NullablePointAltitudeUncertainty) Get

func (NullablePointAltitudeUncertainty) IsSet

func (NullablePointAltitudeUncertainty) MarshalJSON

func (v NullablePointAltitudeUncertainty) MarshalJSON() ([]byte, error)

func (*NullablePointAltitudeUncertainty) Set

func (*NullablePointAltitudeUncertainty) UnmarshalJSON

func (v *NullablePointAltitudeUncertainty) UnmarshalJSON(src []byte) error

func (*NullablePointAltitudeUncertainty) Unset

type NullablePointUncertaintyCircle

type NullablePointUncertaintyCircle struct {
	// contains filtered or unexported fields
}

func (NullablePointUncertaintyCircle) Get

func (NullablePointUncertaintyCircle) IsSet

func (NullablePointUncertaintyCircle) MarshalJSON

func (v NullablePointUncertaintyCircle) MarshalJSON() ([]byte, error)

func (*NullablePointUncertaintyCircle) Set

func (*NullablePointUncertaintyCircle) UnmarshalJSON

func (v *NullablePointUncertaintyCircle) UnmarshalJSON(src []byte) error

func (*NullablePointUncertaintyCircle) Unset

func (v *NullablePointUncertaintyCircle) Unset()

type NullablePointUncertaintyEllipse

type NullablePointUncertaintyEllipse struct {
	// contains filtered or unexported fields
}

func (NullablePointUncertaintyEllipse) Get

func (NullablePointUncertaintyEllipse) IsSet

func (NullablePointUncertaintyEllipse) MarshalJSON

func (v NullablePointUncertaintyEllipse) MarshalJSON() ([]byte, error)

func (*NullablePointUncertaintyEllipse) Set

func (*NullablePointUncertaintyEllipse) UnmarshalJSON

func (v *NullablePointUncertaintyEllipse) UnmarshalJSON(src []byte) error

func (*NullablePointUncertaintyEllipse) Unset

type NullablePolygon

type NullablePolygon struct {
	// contains filtered or unexported fields
}

func NewNullablePolygon

func NewNullablePolygon(val *Polygon) *NullablePolygon

func (NullablePolygon) Get

func (v NullablePolygon) Get() *Polygon

func (NullablePolygon) IsSet

func (v NullablePolygon) IsSet() bool

func (NullablePolygon) MarshalJSON

func (v NullablePolygon) MarshalJSON() ([]byte, error)

func (*NullablePolygon) Set

func (v *NullablePolygon) Set(val *Polygon)

func (*NullablePolygon) UnmarshalJSON

func (v *NullablePolygon) UnmarshalJSON(src []byte) error

func (*NullablePolygon) Unset

func (v *NullablePolygon) Unset()

type NullablePositioningMethod

type NullablePositioningMethod struct {
	// contains filtered or unexported fields
}

func NewNullablePositioningMethod

func NewNullablePositioningMethod(val *PositioningMethod) *NullablePositioningMethod

func (NullablePositioningMethod) Get

func (NullablePositioningMethod) IsSet

func (v NullablePositioningMethod) IsSet() bool

func (NullablePositioningMethod) MarshalJSON

func (v NullablePositioningMethod) MarshalJSON() ([]byte, error)

func (*NullablePositioningMethod) Set

func (*NullablePositioningMethod) UnmarshalJSON

func (v *NullablePositioningMethod) UnmarshalJSON(src []byte) error

func (*NullablePositioningMethod) Unset

func (v *NullablePositioningMethod) Unset()

type NullablePositioningMethodAndUsage

type NullablePositioningMethodAndUsage struct {
	// contains filtered or unexported fields
}

func (NullablePositioningMethodAndUsage) Get

func (NullablePositioningMethodAndUsage) IsSet

func (NullablePositioningMethodAndUsage) MarshalJSON

func (v NullablePositioningMethodAndUsage) MarshalJSON() ([]byte, error)

func (*NullablePositioningMethodAndUsage) Set

func (*NullablePositioningMethodAndUsage) UnmarshalJSON

func (v *NullablePositioningMethodAndUsage) UnmarshalJSON(src []byte) error

func (*NullablePositioningMethodAndUsage) Unset

type NullablePositioningMode

type NullablePositioningMode struct {
	// contains filtered or unexported fields
}

func NewNullablePositioningMode

func NewNullablePositioningMode(val *PositioningMode) *NullablePositioningMode

func (NullablePositioningMode) Get

func (NullablePositioningMode) IsSet

func (v NullablePositioningMode) IsSet() bool

func (NullablePositioningMode) MarshalJSON

func (v NullablePositioningMode) MarshalJSON() ([]byte, error)

func (*NullablePositioningMode) Set

func (*NullablePositioningMode) UnmarshalJSON

func (v *NullablePositioningMode) UnmarshalJSON(src []byte) error

func (*NullablePositioningMode) Unset

func (v *NullablePositioningMode) Unset()

type NullableProblemDetails

type NullableProblemDetails struct {
	// contains filtered or unexported fields
}

func NewNullableProblemDetails

func NewNullableProblemDetails(val *ProblemDetails) *NullableProblemDetails

func (NullableProblemDetails) Get

func (NullableProblemDetails) IsSet

func (v NullableProblemDetails) IsSet() bool

func (NullableProblemDetails) MarshalJSON

func (v NullableProblemDetails) MarshalJSON() ([]byte, error)

func (*NullableProblemDetails) Set

func (*NullableProblemDetails) UnmarshalJSON

func (v *NullableProblemDetails) UnmarshalJSON(src []byte) error

func (*NullableProblemDetails) Unset

func (v *NullableProblemDetails) Unset()

type 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 NullableReportingCondition

type NullableReportingCondition struct {
	// contains filtered or unexported fields
}

func NewNullableReportingCondition

func NewNullableReportingCondition(val *ReportingCondition) *NullableReportingCondition

func (NullableReportingCondition) Get

func (NullableReportingCondition) IsSet

func (v NullableReportingCondition) IsSet() bool

func (NullableReportingCondition) MarshalJSON

func (v NullableReportingCondition) MarshalJSON() ([]byte, error)

func (*NullableReportingCondition) Set

func (*NullableReportingCondition) UnmarshalJSON

func (v *NullableReportingCondition) UnmarshalJSON(src []byte) error

func (*NullableReportingCondition) Unset

func (v *NullableReportingCondition) Unset()

type NullableReportingConditionThreshold

type NullableReportingConditionThreshold struct {
	// contains filtered or unexported fields
}

func (NullableReportingConditionThreshold) Get

func (NullableReportingConditionThreshold) IsSet

func (NullableReportingConditionThreshold) MarshalJSON

func (v NullableReportingConditionThreshold) MarshalJSON() ([]byte, error)

func (*NullableReportingConditionThreshold) Set

func (*NullableReportingConditionThreshold) UnmarshalJSON

func (v *NullableReportingConditionThreshold) UnmarshalJSON(src []byte) error

func (*NullableReportingConditionThreshold) Unset

type NullableReportingConditionType

type NullableReportingConditionType struct {
	// contains filtered or unexported fields
}

func (NullableReportingConditionType) Get

func (NullableReportingConditionType) IsSet

func (NullableReportingConditionType) MarshalJSON

func (v NullableReportingConditionType) MarshalJSON() ([]byte, error)

func (*NullableReportingConditionType) Set

func (*NullableReportingConditionType) UnmarshalJSON

func (v *NullableReportingConditionType) UnmarshalJSON(src []byte) error

func (*NullableReportingConditionType) Unset

func (v *NullableReportingConditionType) Unset()

type NullableReportingEventTrigger

type NullableReportingEventTrigger struct {
	// contains filtered or unexported fields
}

func (NullableReportingEventTrigger) Get

func (NullableReportingEventTrigger) IsSet

func (NullableReportingEventTrigger) MarshalJSON

func (v NullableReportingEventTrigger) MarshalJSON() ([]byte, error)

func (*NullableReportingEventTrigger) Set

func (*NullableReportingEventTrigger) UnmarshalJSON

func (v *NullableReportingEventTrigger) UnmarshalJSON(src []byte) error

func (*NullableReportingEventTrigger) Unset

func (v *NullableReportingEventTrigger) Unset()

type NullableServiceExperienceRecord

type NullableServiceExperienceRecord struct {
	// contains filtered or unexported fields
}

func (NullableServiceExperienceRecord) Get

func (NullableServiceExperienceRecord) IsSet

func (NullableServiceExperienceRecord) MarshalJSON

func (v NullableServiceExperienceRecord) MarshalJSON() ([]byte, error)

func (*NullableServiceExperienceRecord) Set

func (*NullableServiceExperienceRecord) UnmarshalJSON

func (v *NullableServiceExperienceRecord) UnmarshalJSON(src []byte) error

func (*NullableServiceExperienceRecord) 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 NullableSvcExperience

type NullableSvcExperience struct {
	// contains filtered or unexported fields
}

func NewNullableSvcExperience

func NewNullableSvcExperience(val *SvcExperience) *NullableSvcExperience

func (NullableSvcExperience) Get

func (NullableSvcExperience) IsSet

func (v NullableSvcExperience) IsSet() bool

func (NullableSvcExperience) MarshalJSON

func (v NullableSvcExperience) MarshalJSON() ([]byte, error)

func (*NullableSvcExperience) Set

func (v *NullableSvcExperience) Set(val *SvcExperience)

func (*NullableSvcExperience) UnmarshalJSON

func (v *NullableSvcExperience) UnmarshalJSON(src []byte) error

func (*NullableSvcExperience) Unset

func (v *NullableSvcExperience) Unset()

type NullableTai

type NullableTai struct {
	// contains filtered or unexported fields
}

func NewNullableTai

func NewNullableTai(val *Tai) *NullableTai

func (NullableTai) Get

func (v NullableTai) Get() *Tai

func (NullableTai) IsSet

func (v NullableTai) IsSet() bool

func (NullableTai) MarshalJSON

func (v NullableTai) MarshalJSON() ([]byte, error)

func (*NullableTai) Set

func (v *NullableTai) Set(val *Tai)

func (*NullableTai) UnmarshalJSON

func (v *NullableTai) UnmarshalJSON(src []byte) error

func (*NullableTai) Unset

func (v *NullableTai) Unset()

type NullableTime

type NullableTime struct {
	// contains filtered or unexported fields
}

func NewNullableTime

func NewNullableTime(val *time.Time) *NullableTime

func (NullableTime) Get

func (v NullableTime) Get() *time.Time

func (NullableTime) IsSet

func (v NullableTime) IsSet() bool

func (NullableTime) MarshalJSON

func (v NullableTime) MarshalJSON() ([]byte, error)

func (*NullableTime) Set

func (v *NullableTime) Set(val *time.Time)

func (*NullableTime) UnmarshalJSON

func (v *NullableTime) UnmarshalJSON(src []byte) error

func (*NullableTime) Unset

func (v *NullableTime) Unset()

type NullableTimeWindow

type NullableTimeWindow struct {
	// contains filtered or unexported fields
}

func NewNullableTimeWindow

func NewNullableTimeWindow(val *TimeWindow) *NullableTimeWindow

func (NullableTimeWindow) Get

func (v NullableTimeWindow) Get() *TimeWindow

func (NullableTimeWindow) IsSet

func (v NullableTimeWindow) IsSet() bool

func (NullableTimeWindow) MarshalJSON

func (v NullableTimeWindow) MarshalJSON() ([]byte, error)

func (*NullableTimeWindow) Set

func (v *NullableTimeWindow) Set(val *TimeWindow)

func (*NullableTimeWindow) UnmarshalJSON

func (v *NullableTimeWindow) UnmarshalJSON(src []byte) error

func (*NullableTimeWindow) Unset

func (v *NullableTimeWindow) Unset()

type NullableTripPlanRecord

type NullableTripPlanRecord struct {
	// contains filtered or unexported fields
}

func NewNullableTripPlanRecord

func NewNullableTripPlanRecord(val *TripPlanRecord) *NullableTripPlanRecord

func (NullableTripPlanRecord) Get

func (NullableTripPlanRecord) IsSet

func (v NullableTripPlanRecord) IsSet() bool

func (NullableTripPlanRecord) MarshalJSON

func (v NullableTripPlanRecord) MarshalJSON() ([]byte, error)

func (*NullableTripPlanRecord) Set

func (*NullableTripPlanRecord) UnmarshalJSON

func (v *NullableTripPlanRecord) UnmarshalJSON(src []byte) error

func (*NullableTripPlanRecord) Unset

func (v *NullableTripPlanRecord) Unset()

type NullableUeAreaIndication

type NullableUeAreaIndication struct {
	// contains filtered or unexported fields
}

func NewNullableUeAreaIndication

func NewNullableUeAreaIndication(val *UeAreaIndication) *NullableUeAreaIndication

func (NullableUeAreaIndication) Get

func (NullableUeAreaIndication) IsSet

func (v NullableUeAreaIndication) IsSet() bool

func (NullableUeAreaIndication) MarshalJSON

func (v NullableUeAreaIndication) MarshalJSON() ([]byte, error)

func (*NullableUeAreaIndication) Set

func (*NullableUeAreaIndication) UnmarshalJSON

func (v *NullableUeAreaIndication) UnmarshalJSON(src []byte) error

func (*NullableUeAreaIndication) Unset

func (v *NullableUeAreaIndication) Unset()

type NullableUncertaintyEllipse

type NullableUncertaintyEllipse struct {
	// contains filtered or unexported fields
}

func NewNullableUncertaintyEllipse

func NewNullableUncertaintyEllipse(val *UncertaintyEllipse) *NullableUncertaintyEllipse

func (NullableUncertaintyEllipse) Get

func (NullableUncertaintyEllipse) IsSet

func (v NullableUncertaintyEllipse) IsSet() bool

func (NullableUncertaintyEllipse) MarshalJSON

func (v NullableUncertaintyEllipse) MarshalJSON() ([]byte, error)

func (*NullableUncertaintyEllipse) Set

func (*NullableUncertaintyEllipse) UnmarshalJSON

func (v *NullableUncertaintyEllipse) UnmarshalJSON(src []byte) error

func (*NullableUncertaintyEllipse) Unset

func (v *NullableUncertaintyEllipse) Unset()

type NullableUncertaintyEllipsoid

type NullableUncertaintyEllipsoid struct {
	// contains filtered or unexported fields
}

func NewNullableUncertaintyEllipsoid

func NewNullableUncertaintyEllipsoid(val *UncertaintyEllipsoid) *NullableUncertaintyEllipsoid

func (NullableUncertaintyEllipsoid) Get

func (NullableUncertaintyEllipsoid) IsSet

func (NullableUncertaintyEllipsoid) MarshalJSON

func (v NullableUncertaintyEllipsoid) MarshalJSON() ([]byte, error)

func (*NullableUncertaintyEllipsoid) Set

func (*NullableUncertaintyEllipsoid) UnmarshalJSON

func (v *NullableUncertaintyEllipsoid) UnmarshalJSON(src []byte) error

func (*NullableUncertaintyEllipsoid) Unset

func (v *NullableUncertaintyEllipsoid) Unset()

type NullableUsage

type NullableUsage struct {
	// contains filtered or unexported fields
}

func NewNullableUsage

func NewNullableUsage(val *Usage) *NullableUsage

func (NullableUsage) Get

func (v NullableUsage) Get() *Usage

func (NullableUsage) IsSet

func (v NullableUsage) IsSet() bool

func (NullableUsage) MarshalJSON

func (v NullableUsage) MarshalJSON() ([]byte, error)

func (*NullableUsage) Set

func (v *NullableUsage) Set(val *Usage)

func (*NullableUsage) UnmarshalJSON

func (v *NullableUsage) UnmarshalJSON(src []byte) error

func (*NullableUsage) Unset

func (v *NullableUsage) Unset()

type NullableVelocityEstimate

type NullableVelocityEstimate struct {
	// contains filtered or unexported fields
}

func NewNullableVelocityEstimate

func NewNullableVelocityEstimate(val *VelocityEstimate) *NullableVelocityEstimate

func (NullableVelocityEstimate) Get

func (NullableVelocityEstimate) IsSet

func (v NullableVelocityEstimate) IsSet() bool

func (NullableVelocityEstimate) MarshalJSON

func (v NullableVelocityEstimate) MarshalJSON() ([]byte, error)

func (*NullableVelocityEstimate) Set

func (*NullableVelocityEstimate) UnmarshalJSON

func (v *NullableVelocityEstimate) UnmarshalJSON(src []byte) error

func (*NullableVelocityEstimate) Unset

func (v *NullableVelocityEstimate) Unset()

type NullableVerticalDirection

type NullableVerticalDirection struct {
	// contains filtered or unexported fields
}

func NewNullableVerticalDirection

func NewNullableVerticalDirection(val *VerticalDirection) *NullableVerticalDirection

func (NullableVerticalDirection) Get

func (NullableVerticalDirection) IsSet

func (v NullableVerticalDirection) IsSet() bool

func (NullableVerticalDirection) MarshalJSON

func (v NullableVerticalDirection) MarshalJSON() ([]byte, error)

func (*NullableVerticalDirection) Set

func (*NullableVerticalDirection) UnmarshalJSON

func (v *NullableVerticalDirection) UnmarshalJSON(src []byte) error

func (*NullableVerticalDirection) Unset

func (v *NullableVerticalDirection) Unset()

type PerFlowServiceExperienceInfo

type PerFlowServiceExperienceInfo struct {
	ServiceExperience SvcExperience `json:"serviceExperience"`
	TimeInterval      TimeWindow    `json:"timeInterval"`
	RemoteEndpoint    AddrFqdn      `json:"remoteEndpoint"`
}

PerFlowServiceExperienceInfo Information about the service experience of a single flow.

func NewPerFlowServiceExperienceInfo

func NewPerFlowServiceExperienceInfo(serviceExperience SvcExperience, timeInterval TimeWindow, remoteEndpoint AddrFqdn) *PerFlowServiceExperienceInfo

NewPerFlowServiceExperienceInfo instantiates a new PerFlowServiceExperienceInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPerFlowServiceExperienceInfoWithDefaults

func NewPerFlowServiceExperienceInfoWithDefaults() *PerFlowServiceExperienceInfo

NewPerFlowServiceExperienceInfoWithDefaults instantiates a new PerFlowServiceExperienceInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PerFlowServiceExperienceInfo) GetRemoteEndpoint

func (o *PerFlowServiceExperienceInfo) GetRemoteEndpoint() AddrFqdn

GetRemoteEndpoint returns the RemoteEndpoint field value

func (*PerFlowServiceExperienceInfo) GetRemoteEndpointOk

func (o *PerFlowServiceExperienceInfo) GetRemoteEndpointOk() (*AddrFqdn, bool)

GetRemoteEndpointOk returns a tuple with the RemoteEndpoint field value and a boolean to check if the value has been set.

func (*PerFlowServiceExperienceInfo) GetServiceExperience

func (o *PerFlowServiceExperienceInfo) GetServiceExperience() SvcExperience

GetServiceExperience returns the ServiceExperience field value

func (*PerFlowServiceExperienceInfo) GetServiceExperienceOk

func (o *PerFlowServiceExperienceInfo) GetServiceExperienceOk() (*SvcExperience, bool)

GetServiceExperienceOk returns a tuple with the ServiceExperience field value and a boolean to check if the value has been set.

func (*PerFlowServiceExperienceInfo) GetTimeInterval

func (o *PerFlowServiceExperienceInfo) GetTimeInterval() TimeWindow

GetTimeInterval returns the TimeInterval field value

func (*PerFlowServiceExperienceInfo) GetTimeIntervalOk

func (o *PerFlowServiceExperienceInfo) GetTimeIntervalOk() (*TimeWindow, bool)

GetTimeIntervalOk returns a tuple with the TimeInterval field value and a boolean to check if the value has been set.

func (PerFlowServiceExperienceInfo) MarshalJSON

func (o PerFlowServiceExperienceInfo) MarshalJSON() ([]byte, error)

func (*PerFlowServiceExperienceInfo) SetRemoteEndpoint

func (o *PerFlowServiceExperienceInfo) SetRemoteEndpoint(v AddrFqdn)

SetRemoteEndpoint sets field value

func (*PerFlowServiceExperienceInfo) SetServiceExperience

func (o *PerFlowServiceExperienceInfo) SetServiceExperience(v SvcExperience)

SetServiceExperience sets field value

func (*PerFlowServiceExperienceInfo) SetTimeInterval

func (o *PerFlowServiceExperienceInfo) SetTimeInterval(v TimeWindow)

SetTimeInterval sets field value

func (PerFlowServiceExperienceInfo) ToMap

func (o PerFlowServiceExperienceInfo) ToMap() (map[string]interface{}, error)

func (*PerFlowServiceExperienceInfo) UnmarshalJSON

func (o *PerFlowServiceExperienceInfo) UnmarshalJSON(bytes []byte) (err error)

type PerformanceDataRecord

type PerformanceDataRecord struct {
	BaseRecord
	TimeInterval   TimeWindow      `json:"timeInterval"`
	Location       *LocationArea5G `json:"location,omitempty"`
	RemoteEndpoint *AddrFqdn       `json:"remoteEndpoint,omitempty"`
	// Unsigned integer indicating Packet Delay Budget (see clauses 5.7.3.4 and 5.7.4 of 3GPP TS 23.501), expressed in milliseconds.
	PacketDelayBudget *int32 `json:"packetDelayBudget,omitempty"`
	// Unsigned integer indicating Packet Loss Rate (see clauses 5.7.2.8 and 5.7.4 of 3GPP TS 23.501), expressed in tenth of percent.
	PacketLossRate *int32 `json:"packetLossRate,omitempty"`
	// String representing a bit rate; the prefixes follow the standard symbols from The International System of Units, and represent x1000 multipliers, with the exception that prefix \"K\" is used to represent the standard symbol \"k\".
	UplinkThroughput *string `json:"uplinkThroughput,omitempty"`
	// String representing a bit rate; the prefixes follow the standard symbols from The International System of Units, and represent x1000 multipliers, with the exception that prefix \"K\" is used to represent the standard symbol \"k\".
	DownlinkThrougput *string `json:"downlinkThrougput,omitempty"`
}

PerformanceDataRecord A data reporting record for UE performance.

func NewPerformanceDataRecord

func NewPerformanceDataRecord(timeInterval TimeWindow, timestamp time.Time) *PerformanceDataRecord

NewPerformanceDataRecord instantiates a new PerformanceDataRecord object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPerformanceDataRecordWithDefaults

func NewPerformanceDataRecordWithDefaults() *PerformanceDataRecord

NewPerformanceDataRecordWithDefaults instantiates a new PerformanceDataRecord object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PerformanceDataRecord) GetDownlinkThrougput

func (o *PerformanceDataRecord) GetDownlinkThrougput() string

GetDownlinkThrougput returns the DownlinkThrougput field value if set, zero value otherwise.

func (*PerformanceDataRecord) GetDownlinkThrougputOk

func (o *PerformanceDataRecord) GetDownlinkThrougputOk() (*string, bool)

GetDownlinkThrougputOk returns a tuple with the DownlinkThrougput field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PerformanceDataRecord) GetLocation

func (o *PerformanceDataRecord) GetLocation() LocationArea5G

GetLocation returns the Location field value if set, zero value otherwise.

func (*PerformanceDataRecord) GetLocationOk

func (o *PerformanceDataRecord) GetLocationOk() (*LocationArea5G, bool)

GetLocationOk returns a tuple with the Location field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PerformanceDataRecord) GetPacketDelayBudget

func (o *PerformanceDataRecord) GetPacketDelayBudget() int32

GetPacketDelayBudget returns the PacketDelayBudget field value if set, zero value otherwise.

func (*PerformanceDataRecord) GetPacketDelayBudgetOk

func (o *PerformanceDataRecord) GetPacketDelayBudgetOk() (*int32, bool)

GetPacketDelayBudgetOk returns a tuple with the PacketDelayBudget field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PerformanceDataRecord) GetPacketLossRate

func (o *PerformanceDataRecord) GetPacketLossRate() int32

GetPacketLossRate returns the PacketLossRate field value if set, zero value otherwise.

func (*PerformanceDataRecord) GetPacketLossRateOk

func (o *PerformanceDataRecord) GetPacketLossRateOk() (*int32, bool)

GetPacketLossRateOk returns a tuple with the PacketLossRate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PerformanceDataRecord) GetRemoteEndpoint

func (o *PerformanceDataRecord) GetRemoteEndpoint() AddrFqdn

GetRemoteEndpoint returns the RemoteEndpoint field value if set, zero value otherwise.

func (*PerformanceDataRecord) GetRemoteEndpointOk

func (o *PerformanceDataRecord) GetRemoteEndpointOk() (*AddrFqdn, bool)

GetRemoteEndpointOk returns a tuple with the RemoteEndpoint field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PerformanceDataRecord) GetTimeInterval

func (o *PerformanceDataRecord) GetTimeInterval() TimeWindow

GetTimeInterval returns the TimeInterval field value

func (*PerformanceDataRecord) GetTimeIntervalOk

func (o *PerformanceDataRecord) GetTimeIntervalOk() (*TimeWindow, bool)

GetTimeIntervalOk returns a tuple with the TimeInterval field value and a boolean to check if the value has been set.

func (*PerformanceDataRecord) GetUplinkThroughput

func (o *PerformanceDataRecord) GetUplinkThroughput() string

GetUplinkThroughput returns the UplinkThroughput field value if set, zero value otherwise.

func (*PerformanceDataRecord) GetUplinkThroughputOk

func (o *PerformanceDataRecord) GetUplinkThroughputOk() (*string, bool)

GetUplinkThroughputOk returns a tuple with the UplinkThroughput field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PerformanceDataRecord) HasDownlinkThrougput

func (o *PerformanceDataRecord) HasDownlinkThrougput() bool

HasDownlinkThrougput returns a boolean if a field has been set.

func (*PerformanceDataRecord) HasLocation

func (o *PerformanceDataRecord) HasLocation() bool

HasLocation returns a boolean if a field has been set.

func (*PerformanceDataRecord) HasPacketDelayBudget

func (o *PerformanceDataRecord) HasPacketDelayBudget() bool

HasPacketDelayBudget returns a boolean if a field has been set.

func (*PerformanceDataRecord) HasPacketLossRate

func (o *PerformanceDataRecord) HasPacketLossRate() bool

HasPacketLossRate returns a boolean if a field has been set.

func (*PerformanceDataRecord) HasRemoteEndpoint

func (o *PerformanceDataRecord) HasRemoteEndpoint() bool

HasRemoteEndpoint returns a boolean if a field has been set.

func (*PerformanceDataRecord) HasUplinkThroughput

func (o *PerformanceDataRecord) HasUplinkThroughput() bool

HasUplinkThroughput returns a boolean if a field has been set.

func (PerformanceDataRecord) MarshalJSON

func (o PerformanceDataRecord) MarshalJSON() ([]byte, error)

func (*PerformanceDataRecord) SetDownlinkThrougput

func (o *PerformanceDataRecord) SetDownlinkThrougput(v string)

SetDownlinkThrougput gets a reference to the given string and assigns it to the DownlinkThrougput field.

func (*PerformanceDataRecord) SetLocation

func (o *PerformanceDataRecord) SetLocation(v LocationArea5G)

SetLocation gets a reference to the given LocationArea5G and assigns it to the Location field.

func (*PerformanceDataRecord) SetPacketDelayBudget

func (o *PerformanceDataRecord) SetPacketDelayBudget(v int32)

SetPacketDelayBudget gets a reference to the given int32 and assigns it to the PacketDelayBudget field.

func (*PerformanceDataRecord) SetPacketLossRate

func (o *PerformanceDataRecord) SetPacketLossRate(v int32)

SetPacketLossRate gets a reference to the given int32 and assigns it to the PacketLossRate field.

func (*PerformanceDataRecord) SetRemoteEndpoint

func (o *PerformanceDataRecord) SetRemoteEndpoint(v AddrFqdn)

SetRemoteEndpoint gets a reference to the given AddrFqdn and assigns it to the RemoteEndpoint field.

func (*PerformanceDataRecord) SetTimeInterval

func (o *PerformanceDataRecord) SetTimeInterval(v TimeWindow)

SetTimeInterval sets field value

func (*PerformanceDataRecord) SetUplinkThroughput

func (o *PerformanceDataRecord) SetUplinkThroughput(v string)

SetUplinkThroughput gets a reference to the given string and assigns it to the UplinkThroughput field.

func (PerformanceDataRecord) ToMap

func (o PerformanceDataRecord) ToMap() (map[string]interface{}, error)

func (*PerformanceDataRecord) UnmarshalJSON

func (o *PerformanceDataRecord) UnmarshalJSON(bytes []byte) (err error)

type PeriodicEventInfo

type PeriodicEventInfo struct {
	// Number of required periodic event reports.
	ReportingAmount int32 `json:"reportingAmount"`
	// Event reporting periodic interval in seconds.
	ReportingInterval    int32 `json:"reportingInterval"`
	ReportingInfiniteInd *bool `json:"reportingInfiniteInd,omitempty"`
	// Event reporting periodic interval in milliseconds.
	ReportingIntervalMs *int32 `json:"reportingIntervalMs,omitempty"`
}

PeriodicEventInfo Indicates the information of periodic event reporting.

func NewPeriodicEventInfo

func NewPeriodicEventInfo(reportingAmount int32, reportingInterval int32) *PeriodicEventInfo

NewPeriodicEventInfo instantiates a new PeriodicEventInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPeriodicEventInfoWithDefaults

func NewPeriodicEventInfoWithDefaults() *PeriodicEventInfo

NewPeriodicEventInfoWithDefaults instantiates a new PeriodicEventInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PeriodicEventInfo) GetReportingAmount

func (o *PeriodicEventInfo) GetReportingAmount() int32

GetReportingAmount returns the ReportingAmount field value

func (*PeriodicEventInfo) GetReportingAmountOk

func (o *PeriodicEventInfo) GetReportingAmountOk() (*int32, bool)

GetReportingAmountOk returns a tuple with the ReportingAmount field value and a boolean to check if the value has been set.

func (*PeriodicEventInfo) GetReportingInfiniteInd

func (o *PeriodicEventInfo) GetReportingInfiniteInd() bool

GetReportingInfiniteInd returns the ReportingInfiniteInd field value if set, zero value otherwise.

func (*PeriodicEventInfo) GetReportingInfiniteIndOk

func (o *PeriodicEventInfo) GetReportingInfiniteIndOk() (*bool, bool)

GetReportingInfiniteIndOk returns a tuple with the ReportingInfiniteInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PeriodicEventInfo) GetReportingInterval

func (o *PeriodicEventInfo) GetReportingInterval() int32

GetReportingInterval returns the ReportingInterval field value

func (*PeriodicEventInfo) GetReportingIntervalMs

func (o *PeriodicEventInfo) GetReportingIntervalMs() int32

GetReportingIntervalMs returns the ReportingIntervalMs field value if set, zero value otherwise.

func (*PeriodicEventInfo) GetReportingIntervalMsOk

func (o *PeriodicEventInfo) GetReportingIntervalMsOk() (*int32, bool)

GetReportingIntervalMsOk returns a tuple with the ReportingIntervalMs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PeriodicEventInfo) GetReportingIntervalOk

func (o *PeriodicEventInfo) GetReportingIntervalOk() (*int32, bool)

GetReportingIntervalOk returns a tuple with the ReportingInterval field value and a boolean to check if the value has been set.

func (*PeriodicEventInfo) HasReportingInfiniteInd

func (o *PeriodicEventInfo) HasReportingInfiniteInd() bool

HasReportingInfiniteInd returns a boolean if a field has been set.

func (*PeriodicEventInfo) HasReportingIntervalMs

func (o *PeriodicEventInfo) HasReportingIntervalMs() bool

HasReportingIntervalMs returns a boolean if a field has been set.

func (PeriodicEventInfo) MarshalJSON

func (o PeriodicEventInfo) MarshalJSON() ([]byte, error)

func (*PeriodicEventInfo) SetReportingAmount

func (o *PeriodicEventInfo) SetReportingAmount(v int32)

SetReportingAmount sets field value

func (*PeriodicEventInfo) SetReportingInfiniteInd

func (o *PeriodicEventInfo) SetReportingInfiniteInd(v bool)

SetReportingInfiniteInd gets a reference to the given bool and assigns it to the ReportingInfiniteInd field.

func (*PeriodicEventInfo) SetReportingInterval

func (o *PeriodicEventInfo) SetReportingInterval(v int32)

SetReportingInterval sets field value

func (*PeriodicEventInfo) SetReportingIntervalMs

func (o *PeriodicEventInfo) SetReportingIntervalMs(v int32)

SetReportingIntervalMs gets a reference to the given int32 and assigns it to the ReportingIntervalMs field.

func (PeriodicEventInfo) ToMap

func (o PeriodicEventInfo) ToMap() (map[string]interface{}, error)

func (*PeriodicEventInfo) UnmarshalJSON

func (o *PeriodicEventInfo) UnmarshalJSON(bytes []byte) (err error)

type PlmnId

type PlmnId struct {
	// Mobile Country Code part of the PLMN, comprising 3 digits, as defined in clause 9.3.3.5 of 3GPP TS 38.413.
	Mcc string `json:"mcc"`
	// Mobile Network Code part of the PLMN, comprising 2 or 3 digits, as defined in clause 9.3.3.5 of 3GPP TS 38.413.
	Mnc string `json:"mnc"`
}

PlmnId When PlmnId needs to be converted to string (e.g. when used in maps as key), the string shall be composed of three digits \"mcc\" followed by \"-\" and two or three digits \"mnc\".

func NewPlmnId

func NewPlmnId(mcc string, mnc string) *PlmnId

NewPlmnId instantiates a new PlmnId object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPlmnIdWithDefaults

func NewPlmnIdWithDefaults() *PlmnId

NewPlmnIdWithDefaults instantiates a new PlmnId object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PlmnId) GetMcc

func (o *PlmnId) GetMcc() string

GetMcc returns the Mcc field value

func (*PlmnId) GetMccOk

func (o *PlmnId) GetMccOk() (*string, bool)

GetMccOk returns a tuple with the Mcc field value and a boolean to check if the value has been set.

func (*PlmnId) GetMnc

func (o *PlmnId) GetMnc() string

GetMnc returns the Mnc field value

func (*PlmnId) GetMncOk

func (o *PlmnId) GetMncOk() (*string, bool)

GetMncOk returns a tuple with the Mnc field value and a boolean to check if the value has been set.

func (PlmnId) MarshalJSON

func (o PlmnId) MarshalJSON() ([]byte, error)

func (*PlmnId) SetMcc

func (o *PlmnId) SetMcc(v string)

SetMcc sets field value

func (*PlmnId) SetMnc

func (o *PlmnId) SetMnc(v string)

SetMnc sets field value

func (PlmnId) ToMap

func (o PlmnId) ToMap() (map[string]interface{}, error)

func (*PlmnId) UnmarshalJSON

func (o *PlmnId) UnmarshalJSON(bytes []byte) (err error)

type Point

type Point struct {
	GADShape
	Point GeographicalCoordinates `json:"point"`
}

Point Ellipsoid Point.

func NewPoint

func NewPoint(point GeographicalCoordinates, shape SupportedGADShapes) *Point

NewPoint instantiates a new Point object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPointWithDefaults

func NewPointWithDefaults() *Point

NewPointWithDefaults instantiates a new Point object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Point) GetPoint

func (o *Point) GetPoint() GeographicalCoordinates

GetPoint returns the Point field value

func (*Point) GetPointOk

func (o *Point) GetPointOk() (*GeographicalCoordinates, bool)

GetPointOk returns a tuple with the Point field value and a boolean to check if the value has been set.

func (Point) MarshalJSON

func (o Point) MarshalJSON() ([]byte, error)

func (*Point) SetPoint

func (o *Point) SetPoint(v GeographicalCoordinates)

SetPoint sets field value

func (Point) ToMap

func (o Point) ToMap() (map[string]interface{}, error)

func (*Point) UnmarshalJSON

func (o *Point) UnmarshalJSON(bytes []byte) (err error)

type PointAltitude

type PointAltitude struct {
	GADShape
	Point GeographicalCoordinates `json:"point"`
	// Indicates value of altitude.
	Altitude float64 `json:"altitude"`
}

PointAltitude Ellipsoid point with altitude.

func NewPointAltitude

func NewPointAltitude(point GeographicalCoordinates, altitude float64, shape SupportedGADShapes) *PointAltitude

NewPointAltitude instantiates a new PointAltitude object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPointAltitudeWithDefaults

func NewPointAltitudeWithDefaults() *PointAltitude

NewPointAltitudeWithDefaults instantiates a new PointAltitude object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PointAltitude) GetAltitude

func (o *PointAltitude) GetAltitude() float64

GetAltitude returns the Altitude field value

func (*PointAltitude) GetAltitudeOk

func (o *PointAltitude) GetAltitudeOk() (*float64, bool)

GetAltitudeOk returns a tuple with the Altitude field value and a boolean to check if the value has been set.

func (*PointAltitude) GetPoint

func (o *PointAltitude) GetPoint() GeographicalCoordinates

GetPoint returns the Point field value

func (*PointAltitude) GetPointOk

func (o *PointAltitude) GetPointOk() (*GeographicalCoordinates, bool)

GetPointOk returns a tuple with the Point field value and a boolean to check if the value has been set.

func (PointAltitude) MarshalJSON

func (o PointAltitude) MarshalJSON() ([]byte, error)

func (*PointAltitude) SetAltitude

func (o *PointAltitude) SetAltitude(v float64)

SetAltitude sets field value

func (*PointAltitude) SetPoint

func (o *PointAltitude) SetPoint(v GeographicalCoordinates)

SetPoint sets field value

func (PointAltitude) ToMap

func (o PointAltitude) ToMap() (map[string]interface{}, error)

func (*PointAltitude) UnmarshalJSON

func (o *PointAltitude) UnmarshalJSON(bytes []byte) (err error)

type PointAltitudeUncertainty

type PointAltitudeUncertainty struct {
	GADShape
	Point GeographicalCoordinates `json:"point"`
	// Indicates value of altitude.
	Altitude           float64            `json:"altitude"`
	UncertaintyEllipse UncertaintyEllipse `json:"uncertaintyEllipse"`
	// Indicates value of uncertainty.
	UncertaintyAltitude float32 `json:"uncertaintyAltitude"`
	// Indicates value of confidence.
	Confidence int32 `json:"confidence"`
}

PointAltitudeUncertainty Ellipsoid point with altitude and uncertainty ellipsoid.

func NewPointAltitudeUncertainty

func NewPointAltitudeUncertainty(point GeographicalCoordinates, altitude float64, uncertaintyEllipse UncertaintyEllipse, uncertaintyAltitude float32, confidence int32, shape SupportedGADShapes) *PointAltitudeUncertainty

NewPointAltitudeUncertainty instantiates a new PointAltitudeUncertainty object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPointAltitudeUncertaintyWithDefaults

func NewPointAltitudeUncertaintyWithDefaults() *PointAltitudeUncertainty

NewPointAltitudeUncertaintyWithDefaults instantiates a new PointAltitudeUncertainty object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PointAltitudeUncertainty) GetAltitude

func (o *PointAltitudeUncertainty) GetAltitude() float64

GetAltitude returns the Altitude field value

func (*PointAltitudeUncertainty) GetAltitudeOk

func (o *PointAltitudeUncertainty) GetAltitudeOk() (*float64, bool)

GetAltitudeOk returns a tuple with the Altitude field value and a boolean to check if the value has been set.

func (*PointAltitudeUncertainty) GetConfidence

func (o *PointAltitudeUncertainty) GetConfidence() int32

GetConfidence returns the Confidence field value

func (*PointAltitudeUncertainty) GetConfidenceOk

func (o *PointAltitudeUncertainty) GetConfidenceOk() (*int32, bool)

GetConfidenceOk returns a tuple with the Confidence field value and a boolean to check if the value has been set.

func (*PointAltitudeUncertainty) GetPoint

GetPoint returns the Point field value

func (*PointAltitudeUncertainty) GetPointOk

GetPointOk returns a tuple with the Point field value and a boolean to check if the value has been set.

func (*PointAltitudeUncertainty) GetUncertaintyAltitude

func (o *PointAltitudeUncertainty) GetUncertaintyAltitude() float32

GetUncertaintyAltitude returns the UncertaintyAltitude field value

func (*PointAltitudeUncertainty) GetUncertaintyAltitudeOk

func (o *PointAltitudeUncertainty) GetUncertaintyAltitudeOk() (*float32, bool)

GetUncertaintyAltitudeOk returns a tuple with the UncertaintyAltitude field value and a boolean to check if the value has been set.

func (*PointAltitudeUncertainty) GetUncertaintyEllipse

func (o *PointAltitudeUncertainty) GetUncertaintyEllipse() UncertaintyEllipse

GetUncertaintyEllipse returns the UncertaintyEllipse field value

func (*PointAltitudeUncertainty) GetUncertaintyEllipseOk

func (o *PointAltitudeUncertainty) GetUncertaintyEllipseOk() (*UncertaintyEllipse, bool)

GetUncertaintyEllipseOk returns a tuple with the UncertaintyEllipse field value and a boolean to check if the value has been set.

func (PointAltitudeUncertainty) MarshalJSON

func (o PointAltitudeUncertainty) MarshalJSON() ([]byte, error)

func (*PointAltitudeUncertainty) SetAltitude

func (o *PointAltitudeUncertainty) SetAltitude(v float64)

SetAltitude sets field value

func (*PointAltitudeUncertainty) SetConfidence

func (o *PointAltitudeUncertainty) SetConfidence(v int32)

SetConfidence sets field value

func (*PointAltitudeUncertainty) SetPoint

SetPoint sets field value

func (*PointAltitudeUncertainty) SetUncertaintyAltitude

func (o *PointAltitudeUncertainty) SetUncertaintyAltitude(v float32)

SetUncertaintyAltitude sets field value

func (*PointAltitudeUncertainty) SetUncertaintyEllipse

func (o *PointAltitudeUncertainty) SetUncertaintyEllipse(v UncertaintyEllipse)

SetUncertaintyEllipse sets field value

func (PointAltitudeUncertainty) ToMap

func (o PointAltitudeUncertainty) ToMap() (map[string]interface{}, error)

func (*PointAltitudeUncertainty) UnmarshalJSON

func (o *PointAltitudeUncertainty) UnmarshalJSON(bytes []byte) (err error)

type PointUncertaintyCircle

type PointUncertaintyCircle struct {
	GADShape
	Point GeographicalCoordinates `json:"point"`
	// Indicates value of uncertainty.
	Uncertainty float32 `json:"uncertainty"`
}

PointUncertaintyCircle Ellipsoid point with uncertainty circle.

func NewPointUncertaintyCircle

func NewPointUncertaintyCircle(point GeographicalCoordinates, uncertainty float32, shape SupportedGADShapes) *PointUncertaintyCircle

NewPointUncertaintyCircle instantiates a new PointUncertaintyCircle object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPointUncertaintyCircleWithDefaults

func NewPointUncertaintyCircleWithDefaults() *PointUncertaintyCircle

NewPointUncertaintyCircleWithDefaults instantiates a new PointUncertaintyCircle object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PointUncertaintyCircle) GetPoint

GetPoint returns the Point field value

func (*PointUncertaintyCircle) GetPointOk

GetPointOk returns a tuple with the Point field value and a boolean to check if the value has been set.

func (*PointUncertaintyCircle) GetUncertainty

func (o *PointUncertaintyCircle) GetUncertainty() float32

GetUncertainty returns the Uncertainty field value

func (*PointUncertaintyCircle) GetUncertaintyOk

func (o *PointUncertaintyCircle) GetUncertaintyOk() (*float32, bool)

GetUncertaintyOk returns a tuple with the Uncertainty field value and a boolean to check if the value has been set.

func (PointUncertaintyCircle) MarshalJSON

func (o PointUncertaintyCircle) MarshalJSON() ([]byte, error)

func (*PointUncertaintyCircle) SetPoint

SetPoint sets field value

func (*PointUncertaintyCircle) SetUncertainty

func (o *PointUncertaintyCircle) SetUncertainty(v float32)

SetUncertainty sets field value

func (PointUncertaintyCircle) ToMap

func (o PointUncertaintyCircle) ToMap() (map[string]interface{}, error)

func (*PointUncertaintyCircle) UnmarshalJSON

func (o *PointUncertaintyCircle) UnmarshalJSON(bytes []byte) (err error)

type PointUncertaintyEllipse

type PointUncertaintyEllipse struct {
	GADShape
	Point              GeographicalCoordinates `json:"point"`
	UncertaintyEllipse UncertaintyEllipse      `json:"uncertaintyEllipse"`
	// Indicates value of confidence.
	Confidence int32 `json:"confidence"`
}

PointUncertaintyEllipse Ellipsoid point with uncertainty ellipse.

func NewPointUncertaintyEllipse

func NewPointUncertaintyEllipse(point GeographicalCoordinates, uncertaintyEllipse UncertaintyEllipse, confidence int32, shape SupportedGADShapes) *PointUncertaintyEllipse

NewPointUncertaintyEllipse instantiates a new PointUncertaintyEllipse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPointUncertaintyEllipseWithDefaults

func NewPointUncertaintyEllipseWithDefaults() *PointUncertaintyEllipse

NewPointUncertaintyEllipseWithDefaults instantiates a new PointUncertaintyEllipse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PointUncertaintyEllipse) GetConfidence

func (o *PointUncertaintyEllipse) GetConfidence() int32

GetConfidence returns the Confidence field value

func (*PointUncertaintyEllipse) GetConfidenceOk

func (o *PointUncertaintyEllipse) GetConfidenceOk() (*int32, bool)

GetConfidenceOk returns a tuple with the Confidence field value and a boolean to check if the value has been set.

func (*PointUncertaintyEllipse) GetPoint

GetPoint returns the Point field value

func (*PointUncertaintyEllipse) GetPointOk

GetPointOk returns a tuple with the Point field value and a boolean to check if the value has been set.

func (*PointUncertaintyEllipse) GetUncertaintyEllipse

func (o *PointUncertaintyEllipse) GetUncertaintyEllipse() UncertaintyEllipse

GetUncertaintyEllipse returns the UncertaintyEllipse field value

func (*PointUncertaintyEllipse) GetUncertaintyEllipseOk

func (o *PointUncertaintyEllipse) GetUncertaintyEllipseOk() (*UncertaintyEllipse, bool)

GetUncertaintyEllipseOk returns a tuple with the UncertaintyEllipse field value and a boolean to check if the value has been set.

func (PointUncertaintyEllipse) MarshalJSON

func (o PointUncertaintyEllipse) MarshalJSON() ([]byte, error)

func (*PointUncertaintyEllipse) SetConfidence

func (o *PointUncertaintyEllipse) SetConfidence(v int32)

SetConfidence sets field value

func (*PointUncertaintyEllipse) SetPoint

SetPoint sets field value

func (*PointUncertaintyEllipse) SetUncertaintyEllipse

func (o *PointUncertaintyEllipse) SetUncertaintyEllipse(v UncertaintyEllipse)

SetUncertaintyEllipse sets field value

func (PointUncertaintyEllipse) ToMap

func (o PointUncertaintyEllipse) ToMap() (map[string]interface{}, error)

func (*PointUncertaintyEllipse) UnmarshalJSON

func (o *PointUncertaintyEllipse) UnmarshalJSON(bytes []byte) (err error)

type Polygon

type Polygon struct {
	GADShape
	// List of points.
	PointList []GeographicalCoordinates `json:"pointList"`
}

Polygon Polygon.

func NewPolygon

func NewPolygon(pointList []GeographicalCoordinates, shape SupportedGADShapes) *Polygon

NewPolygon instantiates a new Polygon object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPolygonWithDefaults

func NewPolygonWithDefaults() *Polygon

NewPolygonWithDefaults instantiates a new Polygon object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Polygon) GetPointList

func (o *Polygon) GetPointList() []GeographicalCoordinates

GetPointList returns the PointList field value

func (*Polygon) GetPointListOk

func (o *Polygon) GetPointListOk() ([]GeographicalCoordinates, bool)

GetPointListOk returns a tuple with the PointList field value and a boolean to check if the value has been set.

func (Polygon) MarshalJSON

func (o Polygon) MarshalJSON() ([]byte, error)

func (*Polygon) SetPointList

func (o *Polygon) SetPointList(v []GeographicalCoordinates)

SetPointList sets field value

func (Polygon) ToMap

func (o Polygon) ToMap() (map[string]interface{}, error)

func (*Polygon) UnmarshalJSON

func (o *Polygon) UnmarshalJSON(bytes []byte) (err error)

type PositioningMethod

type PositioningMethod struct {
	// contains filtered or unexported fields
}

PositioningMethod Indicates supported positioning methods.

func (*PositioningMethod) MarshalJSON

func (src *PositioningMethod) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*PositioningMethod) UnmarshalJSON

func (dst *PositioningMethod) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type PositioningMethodAndUsage

type PositioningMethodAndUsage struct {
	Method     PositioningMethod `json:"method"`
	Mode       PositioningMode   `json:"mode"`
	Usage      Usage             `json:"usage"`
	MethodCode *int32            `json:"methodCode,omitempty"`
}

PositioningMethodAndUsage Indicates the usage of a positioning method.

func NewPositioningMethodAndUsage

func NewPositioningMethodAndUsage(method PositioningMethod, mode PositioningMode, usage Usage) *PositioningMethodAndUsage

NewPositioningMethodAndUsage instantiates a new PositioningMethodAndUsage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPositioningMethodAndUsageWithDefaults

func NewPositioningMethodAndUsageWithDefaults() *PositioningMethodAndUsage

NewPositioningMethodAndUsageWithDefaults instantiates a new PositioningMethodAndUsage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PositioningMethodAndUsage) GetMethod

GetMethod returns the Method field value

func (*PositioningMethodAndUsage) GetMethodCode

func (o *PositioningMethodAndUsage) GetMethodCode() int32

GetMethodCode returns the MethodCode field value if set, zero value otherwise.

func (*PositioningMethodAndUsage) GetMethodCodeOk

func (o *PositioningMethodAndUsage) GetMethodCodeOk() (*int32, bool)

GetMethodCodeOk returns a tuple with the MethodCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PositioningMethodAndUsage) GetMethodOk

func (o *PositioningMethodAndUsage) GetMethodOk() (*PositioningMethod, bool)

GetMethodOk returns a tuple with the Method field value and a boolean to check if the value has been set.

func (*PositioningMethodAndUsage) GetMode

GetMode returns the Mode field value

func (*PositioningMethodAndUsage) GetModeOk

func (o *PositioningMethodAndUsage) GetModeOk() (*PositioningMode, bool)

GetModeOk returns a tuple with the Mode field value and a boolean to check if the value has been set.

func (*PositioningMethodAndUsage) GetUsage

func (o *PositioningMethodAndUsage) GetUsage() Usage

GetUsage returns the Usage field value

func (*PositioningMethodAndUsage) GetUsageOk

func (o *PositioningMethodAndUsage) GetUsageOk() (*Usage, bool)

GetUsageOk returns a tuple with the Usage field value and a boolean to check if the value has been set.

func (*PositioningMethodAndUsage) HasMethodCode

func (o *PositioningMethodAndUsage) HasMethodCode() bool

HasMethodCode returns a boolean if a field has been set.

func (PositioningMethodAndUsage) MarshalJSON

func (o PositioningMethodAndUsage) MarshalJSON() ([]byte, error)

func (*PositioningMethodAndUsage) SetMethod

SetMethod sets field value

func (*PositioningMethodAndUsage) SetMethodCode

func (o *PositioningMethodAndUsage) SetMethodCode(v int32)

SetMethodCode gets a reference to the given int32 and assigns it to the MethodCode field.

func (*PositioningMethodAndUsage) SetMode

SetMode sets field value

func (*PositioningMethodAndUsage) SetUsage

func (o *PositioningMethodAndUsage) SetUsage(v Usage)

SetUsage sets field value

func (PositioningMethodAndUsage) ToMap

func (o PositioningMethodAndUsage) ToMap() (map[string]interface{}, error)

func (*PositioningMethodAndUsage) UnmarshalJSON

func (o *PositioningMethodAndUsage) UnmarshalJSON(bytes []byte) (err error)

type PositioningMode

type PositioningMode struct {
	// contains filtered or unexported fields
}

PositioningMode Indicates supported modes used for positioning method.

func (*PositioningMode) MarshalJSON

func (src *PositioningMode) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*PositioningMode) UnmarshalJSON

func (dst *PositioningMode) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type ProblemDetails

type ProblemDetails struct {
	// string providing an URI formatted according to IETF RFC 3986.
	Type *string `json:"type,omitempty"`
	// A short, human-readable summary of the problem type. It should not change from occurrence to occurrence of the problem.
	Title *string `json:"title,omitempty"`
	// The HTTP status code for this occurrence of the problem.
	Status *int32 `json:"status,omitempty"`
	// A human-readable explanation specific to this occurrence of the problem.
	Detail *string `json:"detail,omitempty"`
	// string providing an URI formatted according to IETF RFC 3986.
	Instance *string `json:"instance,omitempty"`
	// A machine-readable application error cause specific to this occurrence of the problem. This IE should be present and provide application-related error information, if available.
	Cause *string `json:"cause,omitempty"`
	// Description of invalid parameters, for a request rejected due to invalid parameters.
	InvalidParams []InvalidParam `json:"invalidParams,omitempty"`
	// A string used to indicate the features supported by an API that is used as defined in clause  6.6 in 3GPP TS 29.500. The string shall contain a bitmask indicating supported features in  hexadecimal representation Each character in the string shall take a value of \"0\" to \"9\",  \"a\" to \"f\" or \"A\" to \"F\" and shall represent the support of 4 features as described in  table 5.2.2-3. The most significant character representing the highest-numbered features shall  appear first in the string, and the character representing features 1 to 4 shall appear last  in the string. The list of features and their numbering (starting with 1) are defined  separately for each API. If the string contains a lower number of characters than there are  defined features for an API, all features that would be represented by characters that are not  present in the string are not supported.
	SupportedFeatures *string `json:"supportedFeatures,omitempty"`
}

ProblemDetails Represents additional information and details on an error response.

func NewProblemDetails

func NewProblemDetails() *ProblemDetails

NewProblemDetails instantiates a new ProblemDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewProblemDetailsWithDefaults

func NewProblemDetailsWithDefaults() *ProblemDetails

NewProblemDetailsWithDefaults instantiates a new ProblemDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ProblemDetails) GetCause

func (o *ProblemDetails) GetCause() string

GetCause returns the Cause field value if set, zero value otherwise.

func (*ProblemDetails) GetCauseOk

func (o *ProblemDetails) GetCauseOk() (*string, bool)

GetCauseOk returns a tuple with the Cause field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProblemDetails) GetDetail

func (o *ProblemDetails) GetDetail() string

GetDetail returns the Detail field value if set, zero value otherwise.

func (*ProblemDetails) GetDetailOk

func (o *ProblemDetails) GetDetailOk() (*string, bool)

GetDetailOk returns a tuple with the Detail field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProblemDetails) GetInstance

func (o *ProblemDetails) GetInstance() string

GetInstance returns the Instance field value if set, zero value otherwise.

func (*ProblemDetails) GetInstanceOk

func (o *ProblemDetails) GetInstanceOk() (*string, bool)

GetInstanceOk returns a tuple with the Instance field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProblemDetails) GetInvalidParams

func (o *ProblemDetails) GetInvalidParams() []InvalidParam

GetInvalidParams returns the InvalidParams field value if set, zero value otherwise.

func (*ProblemDetails) GetInvalidParamsOk

func (o *ProblemDetails) GetInvalidParamsOk() ([]InvalidParam, bool)

GetInvalidParamsOk returns a tuple with the InvalidParams field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProblemDetails) GetStatus

func (o *ProblemDetails) GetStatus() int32

GetStatus returns the Status field value if set, zero value otherwise.

func (*ProblemDetails) GetStatusOk

func (o *ProblemDetails) GetStatusOk() (*int32, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProblemDetails) GetSupportedFeatures

func (o *ProblemDetails) GetSupportedFeatures() string

GetSupportedFeatures returns the SupportedFeatures field value if set, zero value otherwise.

func (*ProblemDetails) GetSupportedFeaturesOk

func (o *ProblemDetails) GetSupportedFeaturesOk() (*string, bool)

GetSupportedFeaturesOk returns a tuple with the SupportedFeatures field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProblemDetails) GetTitle

func (o *ProblemDetails) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*ProblemDetails) GetTitleOk

func (o *ProblemDetails) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProblemDetails) GetType

func (o *ProblemDetails) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*ProblemDetails) GetTypeOk

func (o *ProblemDetails) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProblemDetails) HasCause

func (o *ProblemDetails) HasCause() bool

HasCause returns a boolean if a field has been set.

func (*ProblemDetails) HasDetail

func (o *ProblemDetails) HasDetail() bool

HasDetail returns a boolean if a field has been set.

func (*ProblemDetails) HasInstance

func (o *ProblemDetails) HasInstance() bool

HasInstance returns a boolean if a field has been set.

func (*ProblemDetails) HasInvalidParams

func (o *ProblemDetails) HasInvalidParams() bool

HasInvalidParams returns a boolean if a field has been set.

func (*ProblemDetails) HasStatus

func (o *ProblemDetails) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*ProblemDetails) HasSupportedFeatures

func (o *ProblemDetails) HasSupportedFeatures() bool

HasSupportedFeatures returns a boolean if a field has been set.

func (*ProblemDetails) HasTitle

func (o *ProblemDetails) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*ProblemDetails) HasType

func (o *ProblemDetails) HasType() bool

HasType returns a boolean if a field has been set.

func (ProblemDetails) MarshalJSON

func (o ProblemDetails) MarshalJSON() ([]byte, error)

func (*ProblemDetails) SetCause

func (o *ProblemDetails) SetCause(v string)

SetCause gets a reference to the given string and assigns it to the Cause field.

func (*ProblemDetails) SetDetail

func (o *ProblemDetails) SetDetail(v string)

SetDetail gets a reference to the given string and assigns it to the Detail field.

func (*ProblemDetails) SetInstance

func (o *ProblemDetails) SetInstance(v string)

SetInstance gets a reference to the given string and assigns it to the Instance field.

func (*ProblemDetails) SetInvalidParams

func (o *ProblemDetails) SetInvalidParams(v []InvalidParam)

SetInvalidParams gets a reference to the given []InvalidParam and assigns it to the InvalidParams field.

func (*ProblemDetails) SetStatus

func (o *ProblemDetails) SetStatus(v int32)

SetStatus gets a reference to the given int32 and assigns it to the Status field.

func (*ProblemDetails) SetSupportedFeatures

func (o *ProblemDetails) SetSupportedFeatures(v string)

SetSupportedFeatures gets a reference to the given string and assigns it to the SupportedFeatures field.

func (*ProblemDetails) SetTitle

func (o *ProblemDetails) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (*ProblemDetails) SetType

func (o *ProblemDetails) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (ProblemDetails) ToMap

func (o ProblemDetails) ToMap() (map[string]interface{}, error)

type RelativeCartesianLocation

type RelativeCartesianLocation struct {
	// string with format 'float' as defined in OpenAPI.
	X float32 `json:"x"`
	// string with format 'float' as defined in OpenAPI.
	Y float32 `json:"y"`
	// string with format 'float' as defined in OpenAPI.
	Z *float32 `json:"z,omitempty"`
}

RelativeCartesianLocation Relative Cartesian Location

func NewRelativeCartesianLocation

func NewRelativeCartesianLocation(x float32, y float32) *RelativeCartesianLocation

NewRelativeCartesianLocation instantiates a new RelativeCartesianLocation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRelativeCartesianLocationWithDefaults

func NewRelativeCartesianLocationWithDefaults() *RelativeCartesianLocation

NewRelativeCartesianLocationWithDefaults instantiates a new RelativeCartesianLocation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RelativeCartesianLocation) GetX

GetX returns the X field value

func (*RelativeCartesianLocation) GetXOk

func (o *RelativeCartesianLocation) GetXOk() (*float32, bool)

GetXOk returns a tuple with the X field value and a boolean to check if the value has been set.

func (*RelativeCartesianLocation) GetY

GetY returns the Y field value

func (*RelativeCartesianLocation) GetYOk

func (o *RelativeCartesianLocation) GetYOk() (*float32, bool)

GetYOk returns a tuple with the Y field value and a boolean to check if the value has been set.

func (*RelativeCartesianLocation) GetZ

GetZ returns the Z field value if set, zero value otherwise.

func (*RelativeCartesianLocation) GetZOk

func (o *RelativeCartesianLocation) GetZOk() (*float32, bool)

GetZOk returns a tuple with the Z field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RelativeCartesianLocation) HasZ

func (o *RelativeCartesianLocation) HasZ() bool

HasZ returns a boolean if a field has been set.

func (RelativeCartesianLocation) MarshalJSON

func (o RelativeCartesianLocation) MarshalJSON() ([]byte, error)

func (*RelativeCartesianLocation) SetX

SetX sets field value

func (*RelativeCartesianLocation) SetY

SetY sets field value

func (*RelativeCartesianLocation) SetZ

SetZ gets a reference to the given float32 and assigns it to the Z field.

func (RelativeCartesianLocation) ToMap

func (o RelativeCartesianLocation) ToMap() (map[string]interface{}, error)

func (*RelativeCartesianLocation) UnmarshalJSON

func (o *RelativeCartesianLocation) UnmarshalJSON(bytes []byte) (err error)

type ReportingCondition

type ReportingCondition struct {
	Type ReportingConditionType `json:"type"`
	// indicating a time in seconds.
	Period          *int32                       `json:"period,omitempty"`
	Parameter       *string                      `json:"parameter,omitempty"`
	Threshold       *ReportingConditionThreshold `json:"threshold,omitempty"`
	ReportWhenBelow *bool                        `json:"reportWhenBelow,omitempty"`
	EventTrigger    *ReportingEventTrigger       `json:"eventTrigger,omitempty"`
}

ReportingCondition A condition that triggers data reporting by a data collection client to the Data Collection AF.

func NewReportingCondition

func NewReportingCondition(type_ ReportingConditionType) *ReportingCondition

NewReportingCondition instantiates a new ReportingCondition object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReportingConditionWithDefaults

func NewReportingConditionWithDefaults() *ReportingCondition

NewReportingConditionWithDefaults instantiates a new ReportingCondition object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReportingCondition) GetEventTrigger

func (o *ReportingCondition) GetEventTrigger() ReportingEventTrigger

GetEventTrigger returns the EventTrigger field value if set, zero value otherwise.

func (*ReportingCondition) GetEventTriggerOk

func (o *ReportingCondition) GetEventTriggerOk() (*ReportingEventTrigger, bool)

GetEventTriggerOk returns a tuple with the EventTrigger field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReportingCondition) GetParameter

func (o *ReportingCondition) GetParameter() string

GetParameter returns the Parameter field value if set, zero value otherwise.

func (*ReportingCondition) GetParameterOk

func (o *ReportingCondition) GetParameterOk() (*string, bool)

GetParameterOk returns a tuple with the Parameter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReportingCondition) GetPeriod

func (o *ReportingCondition) GetPeriod() int32

GetPeriod returns the Period field value if set, zero value otherwise.

func (*ReportingCondition) GetPeriodOk

func (o *ReportingCondition) GetPeriodOk() (*int32, bool)

GetPeriodOk returns a tuple with the Period field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReportingCondition) GetReportWhenBelow

func (o *ReportingCondition) GetReportWhenBelow() bool

GetReportWhenBelow returns the ReportWhenBelow field value if set, zero value otherwise.

func (*ReportingCondition) GetReportWhenBelowOk

func (o *ReportingCondition) GetReportWhenBelowOk() (*bool, bool)

GetReportWhenBelowOk returns a tuple with the ReportWhenBelow field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReportingCondition) GetThreshold

GetThreshold returns the Threshold field value if set, zero value otherwise.

func (*ReportingCondition) GetThresholdOk

func (o *ReportingCondition) GetThresholdOk() (*ReportingConditionThreshold, bool)

GetThresholdOk returns a tuple with the Threshold field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReportingCondition) GetType

GetType returns the Type field value

func (*ReportingCondition) GetTypeOk

func (o *ReportingCondition) GetTypeOk() (*ReportingConditionType, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (*ReportingCondition) HasEventTrigger

func (o *ReportingCondition) HasEventTrigger() bool

HasEventTrigger returns a boolean if a field has been set.

func (*ReportingCondition) HasParameter

func (o *ReportingCondition) HasParameter() bool

HasParameter returns a boolean if a field has been set.

func (*ReportingCondition) HasPeriod

func (o *ReportingCondition) HasPeriod() bool

HasPeriod returns a boolean if a field has been set.

func (*ReportingCondition) HasReportWhenBelow

func (o *ReportingCondition) HasReportWhenBelow() bool

HasReportWhenBelow returns a boolean if a field has been set.

func (*ReportingCondition) HasThreshold

func (o *ReportingCondition) HasThreshold() bool

HasThreshold returns a boolean if a field has been set.

func (ReportingCondition) MarshalJSON

func (o ReportingCondition) MarshalJSON() ([]byte, error)

func (*ReportingCondition) SetEventTrigger

func (o *ReportingCondition) SetEventTrigger(v ReportingEventTrigger)

SetEventTrigger gets a reference to the given ReportingEventTrigger and assigns it to the EventTrigger field.

func (*ReportingCondition) SetParameter

func (o *ReportingCondition) SetParameter(v string)

SetParameter gets a reference to the given string and assigns it to the Parameter field.

func (*ReportingCondition) SetPeriod

func (o *ReportingCondition) SetPeriod(v int32)

SetPeriod gets a reference to the given int32 and assigns it to the Period field.

func (*ReportingCondition) SetReportWhenBelow

func (o *ReportingCondition) SetReportWhenBelow(v bool)

SetReportWhenBelow gets a reference to the given bool and assigns it to the ReportWhenBelow field.

func (*ReportingCondition) SetThreshold

SetThreshold gets a reference to the given ReportingConditionThreshold and assigns it to the Threshold field.

func (*ReportingCondition) SetType

SetType sets field value

func (ReportingCondition) ToMap

func (o ReportingCondition) ToMap() (map[string]interface{}, error)

func (*ReportingCondition) UnmarshalJSON

func (o *ReportingCondition) UnmarshalJSON(bytes []byte) (err error)

type ReportingConditionThreshold

type ReportingConditionThreshold struct {
	// contains filtered or unexported fields
}

ReportingConditionThreshold struct for ReportingConditionThreshold

func (*ReportingConditionThreshold) MarshalJSON

func (src *ReportingConditionThreshold) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*ReportingConditionThreshold) UnmarshalJSON

func (dst *ReportingConditionThreshold) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type ReportingConditionType

type ReportingConditionType struct {
	// contains filtered or unexported fields
}

ReportingConditionType The type of condition that triggers reporting by a data collection client to the Data Collection AF.

func (*ReportingConditionType) MarshalJSON

func (src *ReportingConditionType) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*ReportingConditionType) UnmarshalJSON

func (dst *ReportingConditionType) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type ReportingEventTrigger

type ReportingEventTrigger struct {
	// contains filtered or unexported fields
}

ReportingEventTrigger The type of event that triggers reporting by a data collection client to the Data Collection AF.

func (*ReportingEventTrigger) MarshalJSON

func (src *ReportingEventTrigger) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*ReportingEventTrigger) UnmarshalJSON

func (dst *ReportingEventTrigger) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type ServerConfiguration

type ServerConfiguration struct {
	URL         string
	Description string
	Variables   map[string]ServerVariable
}

ServerConfiguration stores the information about a server

type ServerConfigurations

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL

func (sc ServerConfigurations) URL(index int, variables map[string]string) (string, error)

URL formats template on a index using given variables

type ServerVariable

type ServerVariable struct {
	Description  string
	DefaultValue string
	EnumValues   []string
}

ServerVariable stores the information about a server variable

type ServiceExperienceRecord

type ServiceExperienceRecord struct {
	BaseRecord
	ServiceExperienceInfos []PerFlowServiceExperienceInfo `json:"serviceExperienceInfos"`
}

ServiceExperienceRecord A data reporting record for UE service experience.

func NewServiceExperienceRecord

func NewServiceExperienceRecord(serviceExperienceInfos []PerFlowServiceExperienceInfo, timestamp time.Time) *ServiceExperienceRecord

NewServiceExperienceRecord instantiates a new ServiceExperienceRecord object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewServiceExperienceRecordWithDefaults

func NewServiceExperienceRecordWithDefaults() *ServiceExperienceRecord

NewServiceExperienceRecordWithDefaults instantiates a new ServiceExperienceRecord object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ServiceExperienceRecord) GetServiceExperienceInfos

func (o *ServiceExperienceRecord) GetServiceExperienceInfos() []PerFlowServiceExperienceInfo

GetServiceExperienceInfos returns the ServiceExperienceInfos field value

func (*ServiceExperienceRecord) GetServiceExperienceInfosOk

func (o *ServiceExperienceRecord) GetServiceExperienceInfosOk() ([]PerFlowServiceExperienceInfo, bool)

GetServiceExperienceInfosOk returns a tuple with the ServiceExperienceInfos field value and a boolean to check if the value has been set.

func (ServiceExperienceRecord) MarshalJSON

func (o ServiceExperienceRecord) MarshalJSON() ([]byte, error)

func (*ServiceExperienceRecord) SetServiceExperienceInfos

func (o *ServiceExperienceRecord) SetServiceExperienceInfos(v []PerFlowServiceExperienceInfo)

SetServiceExperienceInfos sets field value

func (ServiceExperienceRecord) ToMap

func (o ServiceExperienceRecord) ToMap() (map[string]interface{}, error)

func (*ServiceExperienceRecord) UnmarshalJSON

func (o *ServiceExperienceRecord) UnmarshalJSON(bytes []byte) (err error)

type SupportedGADShapes

type SupportedGADShapes struct {
	// contains filtered or unexported fields
}

SupportedGADShapes Indicates supported GAD shapes.

func (*SupportedGADShapes) MarshalJSON

func (src *SupportedGADShapes) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*SupportedGADShapes) UnmarshalJSON

func (dst *SupportedGADShapes) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type SvcExperience

type SvcExperience struct {
	// string with format 'float' as defined in OpenAPI.
	Mos *float32 `json:"mos,omitempty"`
	// string with format 'float' as defined in OpenAPI.
	UpperRange *float32 `json:"upperRange,omitempty"`
	// string with format 'float' as defined in OpenAPI.
	LowerRange *float32 `json:"lowerRange,omitempty"`
}

SvcExperience Contains a mean opinion score with the customized range.

func NewSvcExperience

func NewSvcExperience() *SvcExperience

NewSvcExperience instantiates a new SvcExperience object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSvcExperienceWithDefaults

func NewSvcExperienceWithDefaults() *SvcExperience

NewSvcExperienceWithDefaults instantiates a new SvcExperience object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SvcExperience) GetLowerRange

func (o *SvcExperience) GetLowerRange() float32

GetLowerRange returns the LowerRange field value if set, zero value otherwise.

func (*SvcExperience) GetLowerRangeOk

func (o *SvcExperience) GetLowerRangeOk() (*float32, bool)

GetLowerRangeOk returns a tuple with the LowerRange field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SvcExperience) GetMos

func (o *SvcExperience) GetMos() float32

GetMos returns the Mos field value if set, zero value otherwise.

func (*SvcExperience) GetMosOk

func (o *SvcExperience) GetMosOk() (*float32, bool)

GetMosOk returns a tuple with the Mos field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SvcExperience) GetUpperRange

func (o *SvcExperience) GetUpperRange() float32

GetUpperRange returns the UpperRange field value if set, zero value otherwise.

func (*SvcExperience) GetUpperRangeOk

func (o *SvcExperience) GetUpperRangeOk() (*float32, bool)

GetUpperRangeOk returns a tuple with the UpperRange field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SvcExperience) HasLowerRange

func (o *SvcExperience) HasLowerRange() bool

HasLowerRange returns a boolean if a field has been set.

func (*SvcExperience) HasMos

func (o *SvcExperience) HasMos() bool

HasMos returns a boolean if a field has been set.

func (*SvcExperience) HasUpperRange

func (o *SvcExperience) HasUpperRange() bool

HasUpperRange returns a boolean if a field has been set.

func (SvcExperience) MarshalJSON

func (o SvcExperience) MarshalJSON() ([]byte, error)

func (*SvcExperience) SetLowerRange

func (o *SvcExperience) SetLowerRange(v float32)

SetLowerRange gets a reference to the given float32 and assigns it to the LowerRange field.

func (*SvcExperience) SetMos

func (o *SvcExperience) SetMos(v float32)

SetMos gets a reference to the given float32 and assigns it to the Mos field.

func (*SvcExperience) SetUpperRange

func (o *SvcExperience) SetUpperRange(v float32)

SetUpperRange gets a reference to the given float32 and assigns it to the UpperRange field.

func (SvcExperience) ToMap

func (o SvcExperience) ToMap() (map[string]interface{}, error)

type Tai

type Tai struct {
	PlmnId PlmnId `json:"plmnId"`
	// 2 or 3-octet string identifying a tracking area code as specified in clause 9.3.3.10  of 3GPP TS 38.413, in hexadecimal representation. Each character in the string shall  take a value of \"0\" to \"9\", \"a\" to \"f\" or \"A\" to \"F\" and shall represent 4 bits. The most significant character representing the 4 most significant bits of the TAC shall  appear first in the string, and the character representing the 4 least significant bit  of the TAC shall appear last in the string.
	Tac string `json:"tac"`
	// This represents the Network Identifier, which together with a PLMN ID is used to identify an SNPN (see 3GPP TS 23.003 and 3GPP TS 23.501 clause 5.30.2.1).
	Nid *string `json:"nid,omitempty"`
}

Tai Contains the tracking area identity as described in 3GPP 23.003

func NewTai

func NewTai(plmnId PlmnId, tac string) *Tai

NewTai instantiates a new Tai object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTaiWithDefaults

func NewTaiWithDefaults() *Tai

NewTaiWithDefaults instantiates a new Tai object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Tai) GetNid

func (o *Tai) GetNid() string

GetNid returns the Nid field value if set, zero value otherwise.

func (*Tai) GetNidOk

func (o *Tai) GetNidOk() (*string, bool)

GetNidOk returns a tuple with the Nid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Tai) GetPlmnId

func (o *Tai) GetPlmnId() PlmnId

GetPlmnId returns the PlmnId field value

func (*Tai) GetPlmnIdOk

func (o *Tai) GetPlmnIdOk() (*PlmnId, bool)

GetPlmnIdOk returns a tuple with the PlmnId field value and a boolean to check if the value has been set.

func (*Tai) GetTac

func (o *Tai) GetTac() string

GetTac returns the Tac field value

func (*Tai) GetTacOk

func (o *Tai) GetTacOk() (*string, bool)

GetTacOk returns a tuple with the Tac field value and a boolean to check if the value has been set.

func (*Tai) HasNid

func (o *Tai) HasNid() bool

HasNid returns a boolean if a field has been set.

func (Tai) MarshalJSON

func (o Tai) MarshalJSON() ([]byte, error)

func (*Tai) SetNid

func (o *Tai) SetNid(v string)

SetNid gets a reference to the given string and assigns it to the Nid field.

func (*Tai) SetPlmnId

func (o *Tai) SetPlmnId(v PlmnId)

SetPlmnId sets field value

func (*Tai) SetTac

func (o *Tai) SetTac(v string)

SetTac sets field value

func (Tai) ToMap

func (o Tai) ToMap() (map[string]interface{}, error)

func (*Tai) UnmarshalJSON

func (o *Tai) UnmarshalJSON(bytes []byte) (err error)

type TimeWindow

type TimeWindow struct {
	// string with format \"date-time\" as defined in OpenAPI.
	StartTime time.Time `json:"startTime"`
	// string with format \"date-time\" as defined in OpenAPI.
	StopTime time.Time `json:"stopTime"`
}

TimeWindow Represents a time window identified by a start time and a stop time.

func NewTimeWindow

func NewTimeWindow(startTime time.Time, stopTime time.Time) *TimeWindow

NewTimeWindow instantiates a new TimeWindow object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTimeWindowWithDefaults

func NewTimeWindowWithDefaults() *TimeWindow

NewTimeWindowWithDefaults instantiates a new TimeWindow object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TimeWindow) GetStartTime

func (o *TimeWindow) GetStartTime() time.Time

GetStartTime returns the StartTime field value

func (*TimeWindow) GetStartTimeOk

func (o *TimeWindow) GetStartTimeOk() (*time.Time, bool)

GetStartTimeOk returns a tuple with the StartTime field value and a boolean to check if the value has been set.

func (*TimeWindow) GetStopTime

func (o *TimeWindow) GetStopTime() time.Time

GetStopTime returns the StopTime field value

func (*TimeWindow) GetStopTimeOk

func (o *TimeWindow) GetStopTimeOk() (*time.Time, bool)

GetStopTimeOk returns a tuple with the StopTime field value and a boolean to check if the value has been set.

func (TimeWindow) MarshalJSON

func (o TimeWindow) MarshalJSON() ([]byte, error)

func (*TimeWindow) SetStartTime

func (o *TimeWindow) SetStartTime(v time.Time)

SetStartTime sets field value

func (*TimeWindow) SetStopTime

func (o *TimeWindow) SetStopTime(v time.Time)

SetStopTime sets field value

func (TimeWindow) ToMap

func (o TimeWindow) ToMap() (map[string]interface{}, error)

func (*TimeWindow) UnmarshalJSON

func (o *TimeWindow) UnmarshalJSON(bytes []byte) (err error)

type TripPlanRecord

type TripPlanRecord struct {
	BaseRecord
	StartingPoint LocationData   `json:"startingPoint"`
	Waypoints     []LocationData `json:"waypoints,omitempty"`
	Destination   LocationData   `json:"destination"`
	// Indicates value of horizontal speed.
	EstimatedAverageSpeed *float32 `json:"estimatedAverageSpeed,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	EstimatedArrivalTime *time.Time `json:"estimatedArrivalTime,omitempty"`
}

TripPlanRecord A data reporting record for UE performance.

func NewTripPlanRecord

func NewTripPlanRecord(startingPoint LocationData, destination LocationData, timestamp time.Time) *TripPlanRecord

NewTripPlanRecord instantiates a new TripPlanRecord object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTripPlanRecordWithDefaults

func NewTripPlanRecordWithDefaults() *TripPlanRecord

NewTripPlanRecordWithDefaults instantiates a new TripPlanRecord object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TripPlanRecord) GetDestination

func (o *TripPlanRecord) GetDestination() LocationData

GetDestination returns the Destination field value

func (*TripPlanRecord) GetDestinationOk

func (o *TripPlanRecord) GetDestinationOk() (*LocationData, bool)

GetDestinationOk returns a tuple with the Destination field value and a boolean to check if the value has been set.

func (*TripPlanRecord) GetEstimatedArrivalTime

func (o *TripPlanRecord) GetEstimatedArrivalTime() time.Time

GetEstimatedArrivalTime returns the EstimatedArrivalTime field value if set, zero value otherwise.

func (*TripPlanRecord) GetEstimatedArrivalTimeOk

func (o *TripPlanRecord) GetEstimatedArrivalTimeOk() (*time.Time, bool)

GetEstimatedArrivalTimeOk returns a tuple with the EstimatedArrivalTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TripPlanRecord) GetEstimatedAverageSpeed

func (o *TripPlanRecord) GetEstimatedAverageSpeed() float32

GetEstimatedAverageSpeed returns the EstimatedAverageSpeed field value if set, zero value otherwise.

func (*TripPlanRecord) GetEstimatedAverageSpeedOk

func (o *TripPlanRecord) GetEstimatedAverageSpeedOk() (*float32, bool)

GetEstimatedAverageSpeedOk returns a tuple with the EstimatedAverageSpeed field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TripPlanRecord) GetStartingPoint

func (o *TripPlanRecord) GetStartingPoint() LocationData

GetStartingPoint returns the StartingPoint field value

func (*TripPlanRecord) GetStartingPointOk

func (o *TripPlanRecord) GetStartingPointOk() (*LocationData, bool)

GetStartingPointOk returns a tuple with the StartingPoint field value and a boolean to check if the value has been set.

func (*TripPlanRecord) GetWaypoints

func (o *TripPlanRecord) GetWaypoints() []LocationData

GetWaypoints returns the Waypoints field value if set, zero value otherwise.

func (*TripPlanRecord) GetWaypointsOk

func (o *TripPlanRecord) GetWaypointsOk() ([]LocationData, bool)

GetWaypointsOk returns a tuple with the Waypoints field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TripPlanRecord) HasEstimatedArrivalTime

func (o *TripPlanRecord) HasEstimatedArrivalTime() bool

HasEstimatedArrivalTime returns a boolean if a field has been set.

func (*TripPlanRecord) HasEstimatedAverageSpeed

func (o *TripPlanRecord) HasEstimatedAverageSpeed() bool

HasEstimatedAverageSpeed returns a boolean if a field has been set.

func (*TripPlanRecord) HasWaypoints

func (o *TripPlanRecord) HasWaypoints() bool

HasWaypoints returns a boolean if a field has been set.

func (TripPlanRecord) MarshalJSON

func (o TripPlanRecord) MarshalJSON() ([]byte, error)

func (*TripPlanRecord) SetDestination

func (o *TripPlanRecord) SetDestination(v LocationData)

SetDestination sets field value

func (*TripPlanRecord) SetEstimatedArrivalTime

func (o *TripPlanRecord) SetEstimatedArrivalTime(v time.Time)

SetEstimatedArrivalTime gets a reference to the given time.Time and assigns it to the EstimatedArrivalTime field.

func (*TripPlanRecord) SetEstimatedAverageSpeed

func (o *TripPlanRecord) SetEstimatedAverageSpeed(v float32)

SetEstimatedAverageSpeed gets a reference to the given float32 and assigns it to the EstimatedAverageSpeed field.

func (*TripPlanRecord) SetStartingPoint

func (o *TripPlanRecord) SetStartingPoint(v LocationData)

SetStartingPoint sets field value

func (*TripPlanRecord) SetWaypoints

func (o *TripPlanRecord) SetWaypoints(v []LocationData)

SetWaypoints gets a reference to the given []LocationData and assigns it to the Waypoints field.

func (TripPlanRecord) ToMap

func (o TripPlanRecord) ToMap() (map[string]interface{}, error)

func (*TripPlanRecord) UnmarshalJSON

func (o *TripPlanRecord) UnmarshalJSON(bytes []byte) (err error)

type UeAreaIndication

type UeAreaIndication struct {
	// Indicates country or area in a country where UE is located
	Country *string `json:"country,omitempty"`
	// Indicates international area indication if UE is located in international area
	InternationalAreaInd *bool `json:"internationalAreaInd,omitempty"`
}

UeAreaIndication Indicates area (country, area in a country or international area) where UE is located

func NewUeAreaIndication

func NewUeAreaIndication() *UeAreaIndication

NewUeAreaIndication instantiates a new UeAreaIndication object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUeAreaIndicationWithDefaults

func NewUeAreaIndicationWithDefaults() *UeAreaIndication

NewUeAreaIndicationWithDefaults instantiates a new UeAreaIndication object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UeAreaIndication) GetCountry

func (o *UeAreaIndication) GetCountry() string

GetCountry returns the Country field value if set, zero value otherwise.

func (*UeAreaIndication) GetCountryOk

func (o *UeAreaIndication) 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 (*UeAreaIndication) GetInternationalAreaInd

func (o *UeAreaIndication) GetInternationalAreaInd() bool

GetInternationalAreaInd returns the InternationalAreaInd field value if set, zero value otherwise.

func (*UeAreaIndication) GetInternationalAreaIndOk

func (o *UeAreaIndication) GetInternationalAreaIndOk() (*bool, bool)

GetInternationalAreaIndOk returns a tuple with the InternationalAreaInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UeAreaIndication) HasCountry

func (o *UeAreaIndication) HasCountry() bool

HasCountry returns a boolean if a field has been set.

func (*UeAreaIndication) HasInternationalAreaInd

func (o *UeAreaIndication) HasInternationalAreaInd() bool

HasInternationalAreaInd returns a boolean if a field has been set.

func (UeAreaIndication) MarshalJSON

func (o UeAreaIndication) MarshalJSON() ([]byte, error)

func (*UeAreaIndication) SetCountry

func (o *UeAreaIndication) SetCountry(v string)

SetCountry gets a reference to the given string and assigns it to the Country field.

func (*UeAreaIndication) SetInternationalAreaInd

func (o *UeAreaIndication) SetInternationalAreaInd(v bool)

SetInternationalAreaInd gets a reference to the given bool and assigns it to the InternationalAreaInd field.

func (UeAreaIndication) ToMap

func (o UeAreaIndication) 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)

func (*UncertaintyEllipse) UnmarshalJSON

func (o *UncertaintyEllipse) UnmarshalJSON(bytes []byte) (err error)

type UncertaintyEllipsoid

type UncertaintyEllipsoid struct {
	// Indicates value of uncertainty.
	SemiMajor float32 `json:"semiMajor"`
	// Indicates value of uncertainty.
	SemiMinor float32 `json:"semiMinor"`
	// Indicates value of uncertainty.
	Vertical float32 `json:"vertical"`
	// Indicates value of orientation angle.
	OrientationMajor int32 `json:"orientationMajor"`
}

UncertaintyEllipsoid Ellipsoid with uncertainty

func NewUncertaintyEllipsoid

func NewUncertaintyEllipsoid(semiMajor float32, semiMinor float32, vertical float32, orientationMajor int32) *UncertaintyEllipsoid

NewUncertaintyEllipsoid instantiates a new UncertaintyEllipsoid object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUncertaintyEllipsoidWithDefaults

func NewUncertaintyEllipsoidWithDefaults() *UncertaintyEllipsoid

NewUncertaintyEllipsoidWithDefaults instantiates a new UncertaintyEllipsoid object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UncertaintyEllipsoid) GetOrientationMajor

func (o *UncertaintyEllipsoid) GetOrientationMajor() int32

GetOrientationMajor returns the OrientationMajor field value

func (*UncertaintyEllipsoid) GetOrientationMajorOk

func (o *UncertaintyEllipsoid) GetOrientationMajorOk() (*int32, bool)

GetOrientationMajorOk returns a tuple with the OrientationMajor field value and a boolean to check if the value has been set.

func (*UncertaintyEllipsoid) GetSemiMajor

func (o *UncertaintyEllipsoid) GetSemiMajor() float32

GetSemiMajor returns the SemiMajor field value

func (*UncertaintyEllipsoid) GetSemiMajorOk

func (o *UncertaintyEllipsoid) GetSemiMajorOk() (*float32, bool)

GetSemiMajorOk returns a tuple with the SemiMajor field value and a boolean to check if the value has been set.

func (*UncertaintyEllipsoid) GetSemiMinor

func (o *UncertaintyEllipsoid) GetSemiMinor() float32

GetSemiMinor returns the SemiMinor field value

func (*UncertaintyEllipsoid) GetSemiMinorOk

func (o *UncertaintyEllipsoid) GetSemiMinorOk() (*float32, bool)

GetSemiMinorOk returns a tuple with the SemiMinor field value and a boolean to check if the value has been set.

func (*UncertaintyEllipsoid) GetVertical

func (o *UncertaintyEllipsoid) GetVertical() float32

GetVertical returns the Vertical field value

func (*UncertaintyEllipsoid) GetVerticalOk

func (o *UncertaintyEllipsoid) GetVerticalOk() (*float32, bool)

GetVerticalOk returns a tuple with the Vertical field value and a boolean to check if the value has been set.

func (UncertaintyEllipsoid) MarshalJSON

func (o UncertaintyEllipsoid) MarshalJSON() ([]byte, error)

func (*UncertaintyEllipsoid) SetOrientationMajor

func (o *UncertaintyEllipsoid) SetOrientationMajor(v int32)

SetOrientationMajor sets field value

func (*UncertaintyEllipsoid) SetSemiMajor

func (o *UncertaintyEllipsoid) SetSemiMajor(v float32)

SetSemiMajor sets field value

func (*UncertaintyEllipsoid) SetSemiMinor

func (o *UncertaintyEllipsoid) SetSemiMinor(v float32)

SetSemiMinor sets field value

func (*UncertaintyEllipsoid) SetVertical

func (o *UncertaintyEllipsoid) SetVertical(v float32)

SetVertical sets field value

func (UncertaintyEllipsoid) ToMap

func (o UncertaintyEllipsoid) ToMap() (map[string]interface{}, error)

func (*UncertaintyEllipsoid) UnmarshalJSON

func (o *UncertaintyEllipsoid) UnmarshalJSON(bytes []byte) (err error)

type Usage

type Usage struct {
	// contains filtered or unexported fields
}

Usage Indicates usage made of the location measurement.

func (*Usage) MarshalJSON

func (src *Usage) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*Usage) UnmarshalJSON

func (dst *Usage) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type VelocityEstimate

type VelocityEstimate struct {
	HorizontalVelocity                           *HorizontalVelocity
	HorizontalVelocityWithUncertainty            *HorizontalVelocityWithUncertainty
	HorizontalWithVerticalVelocity               *HorizontalWithVerticalVelocity
	HorizontalWithVerticalVelocityAndUncertainty *HorizontalWithVerticalVelocityAndUncertainty
}

VelocityEstimate - Velocity estimate.

func HorizontalVelocityAsVelocityEstimate

func HorizontalVelocityAsVelocityEstimate(v *HorizontalVelocity) VelocityEstimate

HorizontalVelocityAsVelocityEstimate is a convenience function that returns HorizontalVelocity wrapped in VelocityEstimate

func HorizontalVelocityWithUncertaintyAsVelocityEstimate

func HorizontalVelocityWithUncertaintyAsVelocityEstimate(v *HorizontalVelocityWithUncertainty) VelocityEstimate

HorizontalVelocityWithUncertaintyAsVelocityEstimate is a convenience function that returns HorizontalVelocityWithUncertainty wrapped in VelocityEstimate

func HorizontalWithVerticalVelocityAndUncertaintyAsVelocityEstimate

func HorizontalWithVerticalVelocityAndUncertaintyAsVelocityEstimate(v *HorizontalWithVerticalVelocityAndUncertainty) VelocityEstimate

HorizontalWithVerticalVelocityAndUncertaintyAsVelocityEstimate is a convenience function that returns HorizontalWithVerticalVelocityAndUncertainty wrapped in VelocityEstimate

func HorizontalWithVerticalVelocityAsVelocityEstimate

func HorizontalWithVerticalVelocityAsVelocityEstimate(v *HorizontalWithVerticalVelocity) VelocityEstimate

HorizontalWithVerticalVelocityAsVelocityEstimate is a convenience function that returns HorizontalWithVerticalVelocity wrapped in VelocityEstimate

func (*VelocityEstimate) GetActualInstance

func (obj *VelocityEstimate) GetActualInstance() interface{}

Get the actual instance

func (VelocityEstimate) MarshalJSON

func (src VelocityEstimate) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*VelocityEstimate) UnmarshalJSON

func (dst *VelocityEstimate) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type VerticalDirection

type VerticalDirection string

VerticalDirection Indicates direction of vertical speed.

const (
	VERTICALDIRECTION_UPWARD   VerticalDirection = "UPWARD"
	VERTICALDIRECTION_DOWNWARD VerticalDirection = "DOWNWARD"
)

List of VerticalDirection

func NewVerticalDirectionFromValue

func NewVerticalDirectionFromValue(v string) (*VerticalDirection, error)

NewVerticalDirectionFromValue returns a pointer to a valid VerticalDirection for the value passed as argument, or an error if the value passed is not allowed by the enum

func (VerticalDirection) IsValid

func (v VerticalDirection) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (VerticalDirection) Ptr

Ptr returns reference to VerticalDirection value

func (*VerticalDirection) UnmarshalJSON

func (v *VerticalDirection) UnmarshalJSON(src []byte) error

Source Files

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL