OpenAPI_SS_Events

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_SS_Events

API for SEAL Events management.
© 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.1.1
  • Package version: 1.0.0
  • Build package: org.openapitools.codegen.languages.GoClientCodegen

Installation

Install the following dependencies:

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

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

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

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

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

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

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

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

Documentation for API Endpoints

All URIs are relative to https://example.com/ss-events/v1

Class Method HTTP request Description
IndividualSEALEventsSubscriptionDocumentAPI DeleteIndSealEventSubsc Delete /subscriptions/{subscriptionId}
IndividualSEALEventsSubscriptionDocumentAPI ModifyIndSealEventSubsc Patch /subscriptions/{subscriptionId}
IndividualSEALEventsSubscriptionDocumentAPI UpdateIndSealEventSubsc Put /subscriptions/{subscriptionId}
SEALEventsSubscriptionsCollectionAPI CreateSealEventSubsc Post /subscriptions

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_SS_Events.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_SS_Events.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 {
	IndividualSEALEventsSubscriptionDocumentAPI *IndividualSEALEventsSubscriptionDocumentAPIService

	SEALEventsSubscriptionsCollectionAPI *SEALEventsSubscriptionsCollectionAPIService
	// contains filtered or unexported fields
}

APIClient manages communication with the SS_Events API v1.1.1 In most cases there should be only one, shared, APIClient.

func NewAPIClient

func NewAPIClient(cfg *Configuration) *APIClient

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

func (*APIClient) GetConfig

func (c *APIClient) GetConfig() *Configuration

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

type APIKey

type APIKey struct {
	Key    string
	Prefix string
}

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

type APIResponse

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

APIResponse stores the API response returned by the server.

func NewAPIResponse

func NewAPIResponse(r *http.Response) *APIResponse

NewAPIResponse returns a new APIResponse object.

func NewAPIResponseWithError

func NewAPIResponseWithError(errorMessage string) *APIResponse

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

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

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

AnalyticsEvent Possible values are: - UE_MOBILITY: The AF requests to be notified about analytics information of UE mobility. - UE_COMM: The AF requests to be notified about analytics information of UE communication. - ABNORMAL_BEHAVIOR: The AF requests to be notified about analytics information of UE's abnormal behavior. - CONGESTION: The AF requests to be notified about analytics information of user data congestion information. - NETWORK_PERFORMANCE: The AF requests to be notified about analytics information of network performance. - QOS_SUSTAINABILITY: The AF requests to be notified about analytics information of QoS sustainability. - DISPERSION: The AF requests to be notified about analytics information of Dispersion analytics. - DN_PERFORMANCE: The AF requests to be notified about analytics information of DN performance. - SERVICE_EXPERIENCE: The AF requests to be notified about analytics information of service experience.

func (*AnalyticsEvent) MarshalJSON

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

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

func (*AnalyticsEvent) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type ApiCreateSealEventSubscRequest

type ApiCreateSealEventSubscRequest struct {
	ApiService *SEALEventsSubscriptionsCollectionAPIService
	// contains filtered or unexported fields
}

func (ApiCreateSealEventSubscRequest) Execute

func (ApiCreateSealEventSubscRequest) SEALEventSubscription

func (r ApiCreateSealEventSubscRequest) SEALEventSubscription(sEALEventSubscription SEALEventSubscription) ApiCreateSealEventSubscRequest

type ApiDeleteIndSealEventSubscRequest

type ApiDeleteIndSealEventSubscRequest struct {
	ApiService *IndividualSEALEventsSubscriptionDocumentAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteIndSealEventSubscRequest) Execute

type ApiModifyIndSealEventSubscRequest

type ApiModifyIndSealEventSubscRequest struct {
	ApiService *IndividualSEALEventsSubscriptionDocumentAPIService
	// contains filtered or unexported fields
}

func (ApiModifyIndSealEventSubscRequest) Execute

func (ApiModifyIndSealEventSubscRequest) SEALEventSubscriptionPatch

func (r ApiModifyIndSealEventSubscRequest) SEALEventSubscriptionPatch(sEALEventSubscriptionPatch SEALEventSubscriptionPatch) ApiModifyIndSealEventSubscRequest

type ApiUpdateIndSealEventSubscRequest

type ApiUpdateIndSealEventSubscRequest struct {
	ApiService *IndividualSEALEventsSubscriptionDocumentAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateIndSealEventSubscRequest) Execute

func (ApiUpdateIndSealEventSubscRequest) SEALEventSubscription

func (r ApiUpdateIndSealEventSubscRequest) SEALEventSubscription(sEALEventSubscription SEALEventSubscription) ApiUpdateIndSealEventSubscRequest

Individual SEAL events subscription to be replaced.

type BasicAuth

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

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

type CivicAddress

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

CivicAddress Indicates a Civic address.

func NewCivicAddress

func NewCivicAddress() *CivicAddress

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

func NewCivicAddressWithDefaults

func NewCivicAddressWithDefaults() *CivicAddress

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

func (*CivicAddress) GetA1

func (o *CivicAddress) GetA1() string

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

func (*CivicAddress) GetA1Ok

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

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

func (*CivicAddress) GetA2

func (o *CivicAddress) GetA2() string

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

func (*CivicAddress) GetA2Ok

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

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

func (*CivicAddress) GetA3

func (o *CivicAddress) GetA3() string

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

func (*CivicAddress) GetA3Ok

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

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

func (*CivicAddress) GetA4

func (o *CivicAddress) GetA4() string

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

func (*CivicAddress) GetA4Ok

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

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

func (*CivicAddress) GetA5

func (o *CivicAddress) GetA5() string

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

func (*CivicAddress) GetA5Ok

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

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

func (*CivicAddress) GetA6

func (o *CivicAddress) GetA6() string

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

func (*CivicAddress) GetA6Ok

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

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

func (*CivicAddress) GetADDCODE

func (o *CivicAddress) GetADDCODE() string

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

func (*CivicAddress) GetADDCODEOk

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

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

func (*CivicAddress) GetBLD

func (o *CivicAddress) GetBLD() string

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

func (*CivicAddress) GetBLDOk

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

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

func (*CivicAddress) GetCountry

func (o *CivicAddress) GetCountry() string

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

func (*CivicAddress) GetCountryOk

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

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

func (*CivicAddress) GetFLR

func (o *CivicAddress) GetFLR() string

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

func (*CivicAddress) GetFLROk

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

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

func (*CivicAddress) GetHNO

func (o *CivicAddress) GetHNO() string

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

func (*CivicAddress) GetHNOOk

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

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

func (*CivicAddress) GetHNS

func (o *CivicAddress) GetHNS() string

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

func (*CivicAddress) GetHNSOk

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

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

func (*CivicAddress) GetLMK

func (o *CivicAddress) GetLMK() string

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

func (*CivicAddress) GetLMKOk

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

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

func (*CivicAddress) GetLOC

func (o *CivicAddress) GetLOC() string

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

func (*CivicAddress) GetLOCOk

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

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

func (*CivicAddress) GetMethod

func (o *CivicAddress) GetMethod() string

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

func (*CivicAddress) GetMethodOk

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

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

func (*CivicAddress) GetNAM

func (o *CivicAddress) GetNAM() string

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

func (*CivicAddress) GetNAMOk

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

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

func (*CivicAddress) GetPC

func (o *CivicAddress) GetPC() string

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

func (*CivicAddress) GetPCN

func (o *CivicAddress) GetPCN() string

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

func (*CivicAddress) GetPCNOk

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

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

func (*CivicAddress) GetPCOk

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

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

func (*CivicAddress) GetPLC

func (o *CivicAddress) GetPLC() string

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

func (*CivicAddress) GetPLCOk

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

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

func (*CivicAddress) GetPOBOX

func (o *CivicAddress) GetPOBOX() string

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

func (*CivicAddress) GetPOBOXOk

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

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

func (*CivicAddress) GetPOD

func (o *CivicAddress) GetPOD() string

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

func (*CivicAddress) GetPODOk

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

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

func (*CivicAddress) GetPOM

func (o *CivicAddress) GetPOM() string

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

func (*CivicAddress) GetPOMOk

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

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

func (*CivicAddress) GetPRD

func (o *CivicAddress) GetPRD() string

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

func (*CivicAddress) GetPRDOk

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

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

func (*CivicAddress) GetPRM

func (o *CivicAddress) GetPRM() string

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

func (*CivicAddress) GetPRMOk

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

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

func (*CivicAddress) GetProvidedBy

func (o *CivicAddress) GetProvidedBy() string

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

func (*CivicAddress) GetProvidedByOk

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

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

func (*CivicAddress) GetRD

func (o *CivicAddress) GetRD() string

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

func (*CivicAddress) GetRDBR

func (o *CivicAddress) GetRDBR() string

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

func (*CivicAddress) GetRDBROk

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

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

func (*CivicAddress) GetRDOk

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

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

func (*CivicAddress) GetRDSEC

func (o *CivicAddress) GetRDSEC() string

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

func (*CivicAddress) GetRDSECOk

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

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

func (*CivicAddress) GetRDSUBBR

func (o *CivicAddress) GetRDSUBBR() string

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

func (*CivicAddress) GetRDSUBBROk

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

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

func (*CivicAddress) GetROOM

func (o *CivicAddress) GetROOM() string

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

func (*CivicAddress) GetROOMOk

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

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

func (*CivicAddress) GetSEAT

func (o *CivicAddress) GetSEAT() string

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

func (*CivicAddress) GetSEATOk

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

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

func (*CivicAddress) GetSTS

func (o *CivicAddress) GetSTS() string

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

func (*CivicAddress) GetSTSOk

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

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

func (*CivicAddress) GetUNIT

func (o *CivicAddress) GetUNIT() string

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

func (*CivicAddress) GetUNITOk

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

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

func (*CivicAddress) GetUsageRules

func (o *CivicAddress) GetUsageRules() string

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

func (*CivicAddress) GetUsageRulesOk

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

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

func (*CivicAddress) HasA1

func (o *CivicAddress) HasA1() bool

HasA1 returns a boolean if a field has been set.

func (*CivicAddress) HasA2

func (o *CivicAddress) HasA2() bool

HasA2 returns a boolean if a field has been set.

func (*CivicAddress) HasA3

func (o *CivicAddress) HasA3() bool

HasA3 returns a boolean if a field has been set.

func (*CivicAddress) HasA4

func (o *CivicAddress) HasA4() bool

HasA4 returns a boolean if a field has been set.

func (*CivicAddress) HasA5

func (o *CivicAddress) HasA5() bool

HasA5 returns a boolean if a field has been set.

func (*CivicAddress) HasA6

func (o *CivicAddress) HasA6() bool

HasA6 returns a boolean if a field has been set.

func (*CivicAddress) HasADDCODE

func (o *CivicAddress) HasADDCODE() bool

HasADDCODE returns a boolean if a field has been set.

func (*CivicAddress) HasBLD

func (o *CivicAddress) HasBLD() bool

HasBLD returns a boolean if a field has been set.

func (*CivicAddress) HasCountry

func (o *CivicAddress) HasCountry() bool

HasCountry returns a boolean if a field has been set.

func (*CivicAddress) HasFLR

func (o *CivicAddress) HasFLR() bool

HasFLR returns a boolean if a field has been set.

func (*CivicAddress) HasHNO

func (o *CivicAddress) HasHNO() bool

HasHNO returns a boolean if a field has been set.

func (*CivicAddress) HasHNS

func (o *CivicAddress) HasHNS() bool

HasHNS returns a boolean if a field has been set.

func (*CivicAddress) HasLMK

func (o *CivicAddress) HasLMK() bool

HasLMK returns a boolean if a field has been set.

func (*CivicAddress) HasLOC

func (o *CivicAddress) HasLOC() bool

HasLOC returns a boolean if a field has been set.

func (*CivicAddress) HasMethod

func (o *CivicAddress) HasMethod() bool

HasMethod returns a boolean if a field has been set.

func (*CivicAddress) HasNAM

func (o *CivicAddress) HasNAM() bool

HasNAM returns a boolean if a field has been set.

func (*CivicAddress) HasPC

func (o *CivicAddress) HasPC() bool

HasPC returns a boolean if a field has been set.

func (*CivicAddress) HasPCN

func (o *CivicAddress) HasPCN() bool

HasPCN returns a boolean if a field has been set.

func (*CivicAddress) HasPLC

func (o *CivicAddress) HasPLC() bool

HasPLC returns a boolean if a field has been set.

func (*CivicAddress) HasPOBOX

func (o *CivicAddress) HasPOBOX() bool

HasPOBOX returns a boolean if a field has been set.

func (*CivicAddress) HasPOD

func (o *CivicAddress) HasPOD() bool

HasPOD returns a boolean if a field has been set.

func (*CivicAddress) HasPOM

func (o *CivicAddress) HasPOM() bool

HasPOM returns a boolean if a field has been set.

func (*CivicAddress) HasPRD

func (o *CivicAddress) HasPRD() bool

HasPRD returns a boolean if a field has been set.

func (*CivicAddress) HasPRM

func (o *CivicAddress) HasPRM() bool

HasPRM returns a boolean if a field has been set.

func (*CivicAddress) HasProvidedBy

func (o *CivicAddress) HasProvidedBy() bool

HasProvidedBy returns a boolean if a field has been set.

func (*CivicAddress) HasRD

func (o *CivicAddress) HasRD() bool

HasRD returns a boolean if a field has been set.

func (*CivicAddress) HasRDBR

func (o *CivicAddress) HasRDBR() bool

HasRDBR returns a boolean if a field has been set.

func (*CivicAddress) HasRDSEC

func (o *CivicAddress) HasRDSEC() bool

HasRDSEC returns a boolean if a field has been set.

func (*CivicAddress) HasRDSUBBR

func (o *CivicAddress) HasRDSUBBR() bool

HasRDSUBBR returns a boolean if a field has been set.

func (*CivicAddress) HasROOM

func (o *CivicAddress) HasROOM() bool

HasROOM returns a boolean if a field has been set.

func (*CivicAddress) HasSEAT

func (o *CivicAddress) HasSEAT() bool

HasSEAT returns a boolean if a field has been set.

func (*CivicAddress) HasSTS

func (o *CivicAddress) HasSTS() bool

HasSTS returns a boolean if a field has been set.

func (*CivicAddress) HasUNIT

func (o *CivicAddress) HasUNIT() bool

HasUNIT returns a boolean if a field has been set.

func (*CivicAddress) HasUsageRules

func (o *CivicAddress) HasUsageRules() bool

HasUsageRules returns a boolean if a field has been set.

func (CivicAddress) MarshalJSON

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

func (*CivicAddress) SetA1

func (o *CivicAddress) SetA1(v string)

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

func (*CivicAddress) SetA2

func (o *CivicAddress) SetA2(v string)

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

func (*CivicAddress) SetA3

func (o *CivicAddress) SetA3(v string)

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

func (*CivicAddress) SetA4

func (o *CivicAddress) SetA4(v string)

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

func (*CivicAddress) SetA5

func (o *CivicAddress) SetA5(v string)

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

func (*CivicAddress) SetA6

func (o *CivicAddress) SetA6(v string)

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

func (*CivicAddress) SetADDCODE

func (o *CivicAddress) SetADDCODE(v string)

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

func (*CivicAddress) SetBLD

func (o *CivicAddress) SetBLD(v string)

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

func (*CivicAddress) SetCountry

func (o *CivicAddress) SetCountry(v string)

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

func (*CivicAddress) SetFLR

func (o *CivicAddress) SetFLR(v string)

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

func (*CivicAddress) SetHNO

func (o *CivicAddress) SetHNO(v string)

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

func (*CivicAddress) SetHNS

func (o *CivicAddress) SetHNS(v string)

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

func (*CivicAddress) SetLMK

func (o *CivicAddress) SetLMK(v string)

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

func (*CivicAddress) SetLOC

func (o *CivicAddress) SetLOC(v string)

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

func (*CivicAddress) SetMethod

func (o *CivicAddress) SetMethod(v string)

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

func (*CivicAddress) SetNAM

func (o *CivicAddress) SetNAM(v string)

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

func (*CivicAddress) SetPC

func (o *CivicAddress) SetPC(v string)

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

func (*CivicAddress) SetPCN

func (o *CivicAddress) SetPCN(v string)

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

func (*CivicAddress) SetPLC

func (o *CivicAddress) SetPLC(v string)

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

func (*CivicAddress) SetPOBOX

func (o *CivicAddress) SetPOBOX(v string)

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

func (*CivicAddress) SetPOD

func (o *CivicAddress) SetPOD(v string)

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

func (*CivicAddress) SetPOM

func (o *CivicAddress) SetPOM(v string)

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

func (*CivicAddress) SetPRD

func (o *CivicAddress) SetPRD(v string)

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

func (*CivicAddress) SetPRM

func (o *CivicAddress) SetPRM(v string)

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

func (*CivicAddress) SetProvidedBy

func (o *CivicAddress) SetProvidedBy(v string)

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

func (*CivicAddress) SetRD

func (o *CivicAddress) SetRD(v string)

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

func (*CivicAddress) SetRDBR

func (o *CivicAddress) SetRDBR(v string)

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

func (*CivicAddress) SetRDSEC

func (o *CivicAddress) SetRDSEC(v string)

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

func (*CivicAddress) SetRDSUBBR

func (o *CivicAddress) SetRDSUBBR(v string)

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

func (*CivicAddress) SetROOM

func (o *CivicAddress) SetROOM(v string)

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

func (*CivicAddress) SetSEAT

func (o *CivicAddress) SetSEAT(v string)

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

func (*CivicAddress) SetSTS

func (o *CivicAddress) SetSTS(v string)

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

func (*CivicAddress) SetUNIT

func (o *CivicAddress) SetUNIT(v string)

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

func (*CivicAddress) SetUsageRules

func (o *CivicAddress) SetUsageRules(v string)

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

func (CivicAddress) ToMap

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

type Configuration

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

Configuration stores the configuration of the API client

func NewConfiguration

func NewConfiguration() *Configuration

NewConfiguration returns a new Configuration object

func (*Configuration) AddDefaultHeader

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

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

func (*Configuration) ServerURL

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

ServerURL returns URL based on server settings

func (*Configuration) ServerURLWithContext

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

ServerURLWithContext returns a new server URL given an endpoint

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

type EventSubscription struct {
	EventId SEALEvent `json:"eventId"`
	// Each element of the array represents the VAL group identifier(s) of a VAL service that the subscriber wants to know in the interested event.
	ValGroups []VALGroupFilter `json:"valGroups,omitempty"`
	// Each element of the array represents the VAL User / UE IDs of a VAL service that the event subscriber wants to know in the interested event.
	Identities []IdentityFilter `json:"identities,omitempty"`
	// List of event monitoring details that the subscriber wishes to mmonitor the VAL UEs, VAL group and/or VAL service.
	MonFltr []MonitorFilter `json:"monFltr,omitempty"`
	// Represents the list of VAL User / UE IDs and the area of interest information which the subscriber wishes to monitor the location deviation of VAL User / UEs.
	AreaInt []MonitorLocationInterestFilter `json:"areaInt,omitempty"`
	// Each element represents the location area monitoring details to monitor the VA UEs moving in and out of the provided location area.
	LocAreaMon []MonLocAreaInterestFltr `json:"locAreaMon,omitempty"`
}

EventSubscription Represents the subscription to a single SEAL event.

func NewEventSubscription

func NewEventSubscription(eventId SEALEvent) *EventSubscription

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

func NewEventSubscriptionWithDefaults

func NewEventSubscriptionWithDefaults() *EventSubscription

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

func (*EventSubscription) GetAreaInt

GetAreaInt returns the AreaInt field value if set, zero value otherwise.

func (*EventSubscription) GetAreaIntOk

func (o *EventSubscription) GetAreaIntOk() ([]MonitorLocationInterestFilter, bool)

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

func (*EventSubscription) GetEventId

func (o *EventSubscription) GetEventId() SEALEvent

GetEventId returns the EventId field value

func (*EventSubscription) GetEventIdOk

func (o *EventSubscription) GetEventIdOk() (*SEALEvent, bool)

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

func (*EventSubscription) GetIdentities

func (o *EventSubscription) GetIdentities() []IdentityFilter

GetIdentities returns the Identities field value if set, zero value otherwise.

func (*EventSubscription) GetIdentitiesOk

func (o *EventSubscription) GetIdentitiesOk() ([]IdentityFilter, bool)

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

func (*EventSubscription) GetLocAreaMon

func (o *EventSubscription) GetLocAreaMon() []MonLocAreaInterestFltr

GetLocAreaMon returns the LocAreaMon field value if set, zero value otherwise.

func (*EventSubscription) GetLocAreaMonOk

func (o *EventSubscription) GetLocAreaMonOk() ([]MonLocAreaInterestFltr, bool)

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

func (*EventSubscription) GetMonFltr

func (o *EventSubscription) GetMonFltr() []MonitorFilter

GetMonFltr returns the MonFltr field value if set, zero value otherwise.

func (*EventSubscription) GetMonFltrOk

func (o *EventSubscription) GetMonFltrOk() ([]MonitorFilter, bool)

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

func (*EventSubscription) GetValGroups

func (o *EventSubscription) GetValGroups() []VALGroupFilter

GetValGroups returns the ValGroups field value if set, zero value otherwise.

func (*EventSubscription) GetValGroupsOk

func (o *EventSubscription) GetValGroupsOk() ([]VALGroupFilter, bool)

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

func (*EventSubscription) HasAreaInt

func (o *EventSubscription) HasAreaInt() bool

HasAreaInt returns a boolean if a field has been set.

func (*EventSubscription) HasIdentities

func (o *EventSubscription) HasIdentities() bool

HasIdentities returns a boolean if a field has been set.

func (*EventSubscription) HasLocAreaMon

func (o *EventSubscription) HasLocAreaMon() bool

HasLocAreaMon returns a boolean if a field has been set.

func (*EventSubscription) HasMonFltr

func (o *EventSubscription) HasMonFltr() bool

HasMonFltr returns a boolean if a field has been set.

func (*EventSubscription) HasValGroups

func (o *EventSubscription) HasValGroups() bool

HasValGroups returns a boolean if a field has been set.

func (EventSubscription) MarshalJSON

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

func (*EventSubscription) SetAreaInt

SetAreaInt gets a reference to the given []MonitorLocationInterestFilter and assigns it to the AreaInt field.

func (*EventSubscription) SetEventId

func (o *EventSubscription) SetEventId(v SEALEvent)

SetEventId sets field value

func (*EventSubscription) SetIdentities

func (o *EventSubscription) SetIdentities(v []IdentityFilter)

SetIdentities gets a reference to the given []IdentityFilter and assigns it to the Identities field.

func (*EventSubscription) SetLocAreaMon

func (o *EventSubscription) SetLocAreaMon(v []MonLocAreaInterestFltr)

SetLocAreaMon gets a reference to the given []MonLocAreaInterestFltr and assigns it to the LocAreaMon field.

func (*EventSubscription) SetMonFltr

func (o *EventSubscription) SetMonFltr(v []MonitorFilter)

SetMonFltr gets a reference to the given []MonitorFilter and assigns it to the MonFltr field.

func (*EventSubscription) SetValGroups

func (o *EventSubscription) SetValGroups(v []VALGroupFilter)

SetValGroups gets a reference to the given []VALGroupFilter and assigns it to the ValGroups field.

func (EventSubscription) ToMap

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

func (*EventSubscription) UnmarshalJSON

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

type GADShape

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

GADShape Common base type for GAD shapes.

func NewGADShape

func NewGADShape(shape SupportedGADShapes) *GADShape

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

func NewGADShapeWithDefaults

func NewGADShapeWithDefaults() *GADShape

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

func (*GADShape) GetShape

func (o *GADShape) GetShape() SupportedGADShapes

GetShape returns the Shape field value

func (*GADShape) GetShapeOk

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

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

func (GADShape) MarshalJSON

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

func (*GADShape) SetShape

func (o *GADShape) SetShape(v SupportedGADShapes)

SetShape sets field value

func (GADShape) ToMap

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

func (*GADShape) UnmarshalJSON

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

type GNbId

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

GNbId Provides the G-NB identifier.

func NewGNbId

func NewGNbId(bitLength int32, gNBValue string) *GNbId

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

func NewGNbIdWithDefaults

func NewGNbIdWithDefaults() *GNbId

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

func (*GNbId) GetBitLength

func (o *GNbId) GetBitLength() int32

GetBitLength returns the BitLength field value

func (*GNbId) GetBitLengthOk

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

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

func (*GNbId) GetGNBValue

func (o *GNbId) GetGNBValue() string

GetGNBValue returns the GNBValue field value

func (*GNbId) GetGNBValueOk

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

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

func (GNbId) MarshalJSON

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

func (*GNbId) SetBitLength

func (o *GNbId) SetBitLength(v int32)

SetBitLength sets field value

func (*GNbId) SetGNBValue

func (o *GNbId) SetGNBValue(v string)

SetGNBValue sets field value

func (GNbId) ToMap

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

func (*GNbId) UnmarshalJSON

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

type GenericOpenAPIError

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

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

func (GenericOpenAPIError) Body

func (e GenericOpenAPIError) Body() []byte

Body returns the raw bytes of the response

func (GenericOpenAPIError) Error

func (e GenericOpenAPIError) Error() string

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

func (GenericOpenAPIError) Model

func (e GenericOpenAPIError) Model() interface{}

Model returns the unpacked model of the error

type GeographicArea

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

GeographicArea Geographic area specified by different shape.

func (*GeographicArea) MarshalJSON

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

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

func (*GeographicArea) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type GeographicalCoordinates

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

GeographicalCoordinates Geographical coordinates.

func NewGeographicalCoordinates

func NewGeographicalCoordinates(lon float64, lat float64) *GeographicalCoordinates

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

func NewGeographicalCoordinatesWithDefaults

func NewGeographicalCoordinatesWithDefaults() *GeographicalCoordinates

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

func (*GeographicalCoordinates) GetLat

func (o *GeographicalCoordinates) GetLat() float64

GetLat returns the Lat field value

func (*GeographicalCoordinates) GetLatOk

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

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

func (*GeographicalCoordinates) GetLon

func (o *GeographicalCoordinates) GetLon() float64

GetLon returns the Lon field value

func (*GeographicalCoordinates) GetLonOk

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

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

func (GeographicalCoordinates) MarshalJSON

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

func (*GeographicalCoordinates) SetLat

func (o *GeographicalCoordinates) SetLat(v float64)

SetLat sets field value

func (*GeographicalCoordinates) SetLon

func (o *GeographicalCoordinates) SetLon(v float64)

SetLon sets field value

func (GeographicalCoordinates) ToMap

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

func (*GeographicalCoordinates) UnmarshalJSON

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

type GlobalRanNodeId

type GlobalRanNodeId struct {
	PlmnId 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 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 IdentityFilter

type IdentityFilter struct {
	// Identity of the VAL service
	ValSvcId *string `json:"valSvcId,omitempty"`
	// VAL User IDs or VAL UE IDs that the event subscriber wants to know in the interested event.
	ValTgtUes []ValTargetUe `json:"valTgtUes,omitempty"`
	// Set to true by Subscriber to request the supplementary location information.
	SuppLoc *bool `json:"suppLoc,omitempty"`
}

IdentityFilter Represents a filter of VAL User / UE identities belonging to a VAL service.

func NewIdentityFilter

func NewIdentityFilter() *IdentityFilter

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

func NewIdentityFilterWithDefaults

func NewIdentityFilterWithDefaults() *IdentityFilter

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

func (*IdentityFilter) GetSuppLoc

func (o *IdentityFilter) GetSuppLoc() bool

GetSuppLoc returns the SuppLoc field value if set, zero value otherwise.

func (*IdentityFilter) GetSuppLocOk

func (o *IdentityFilter) GetSuppLocOk() (*bool, bool)

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

func (*IdentityFilter) GetValSvcId

func (o *IdentityFilter) GetValSvcId() string

GetValSvcId returns the ValSvcId field value if set, zero value otherwise.

func (*IdentityFilter) GetValSvcIdOk

func (o *IdentityFilter) GetValSvcIdOk() (*string, bool)

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

func (*IdentityFilter) GetValTgtUes

func (o *IdentityFilter) GetValTgtUes() []ValTargetUe

GetValTgtUes returns the ValTgtUes field value if set, zero value otherwise.

func (*IdentityFilter) GetValTgtUesOk

func (o *IdentityFilter) GetValTgtUesOk() ([]ValTargetUe, bool)

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

func (*IdentityFilter) HasSuppLoc

func (o *IdentityFilter) HasSuppLoc() bool

HasSuppLoc returns a boolean if a field has been set.

func (*IdentityFilter) HasValSvcId

func (o *IdentityFilter) HasValSvcId() bool

HasValSvcId returns a boolean if a field has been set.

func (*IdentityFilter) HasValTgtUes

func (o *IdentityFilter) HasValTgtUes() bool

HasValTgtUes returns a boolean if a field has been set.

func (IdentityFilter) MarshalJSON

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

func (*IdentityFilter) SetSuppLoc

func (o *IdentityFilter) SetSuppLoc(v bool)

SetSuppLoc gets a reference to the given bool and assigns it to the SuppLoc field.

func (*IdentityFilter) SetValSvcId

func (o *IdentityFilter) SetValSvcId(v string)

SetValSvcId gets a reference to the given string and assigns it to the ValSvcId field.

func (*IdentityFilter) SetValTgtUes

func (o *IdentityFilter) SetValTgtUes(v []ValTargetUe)

SetValTgtUes gets a reference to the given []ValTargetUe and assigns it to the ValTgtUes field.

func (IdentityFilter) ToMap

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

type IndividualSEALEventsSubscriptionDocumentAPIService

type IndividualSEALEventsSubscriptionDocumentAPIService service

IndividualSEALEventsSubscriptionDocumentAPIService IndividualSEALEventsSubscriptionDocumentAPI service

func (*IndividualSEALEventsSubscriptionDocumentAPIService) DeleteIndSealEventSubsc

DeleteIndSealEventSubsc Method for DeleteIndSealEventSubsc

Deletes an individual SEAL Event Subscription.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param subscriptionId Identifier of an individual Events Subscription
@return ApiDeleteIndSealEventSubscRequest

func (*IndividualSEALEventsSubscriptionDocumentAPIService) DeleteIndSealEventSubscExecute

Execute executes the request

func (*IndividualSEALEventsSubscriptionDocumentAPIService) ModifyIndSealEventSubsc

ModifyIndSealEventSubsc Method for ModifyIndSealEventSubsc

Modify an existing SEAL Event Subscription.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param subscriptionId Identifier of an individual Events Subscription
@return ApiModifyIndSealEventSubscRequest

func (*IndividualSEALEventsSubscriptionDocumentAPIService) ModifyIndSealEventSubscExecute

Execute executes the request

@return SEALEventSubscription

func (*IndividualSEALEventsSubscriptionDocumentAPIService) UpdateIndSealEventSubsc

UpdateIndSealEventSubsc Method for UpdateIndSealEventSubsc

Replace an existing SEAl event subscription.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param subscriptionId Identifier of an individual Events Subscription
@return ApiUpdateIndSealEventSubscRequest

func (*IndividualSEALEventsSubscriptionDocumentAPIService) UpdateIndSealEventSubscExecute

Execute executes the request

@return SEALEventSubscription

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 LMInformation

type LMInformation struct {
	ValTgtUe NullableValTargetUe `json:"valTgtUe"`
	LocInfo  LocationInfo        `json:"locInfo"`
	// string with format 'date-time' as defined in OpenAPI.
	TimeStamp *time.Time `json:"timeStamp,omitempty"`
	// Identity of the VAL service
	ValSvcId *string `json:"valSvcId,omitempty"`
}

LMInformation Represents the location information for a VAL User ID or a VAL UE ID.

func NewLMInformation

func NewLMInformation(valTgtUe NullableValTargetUe, locInfo LocationInfo) *LMInformation

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

func NewLMInformationWithDefaults

func NewLMInformationWithDefaults() *LMInformation

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

func (*LMInformation) GetLocInfo

func (o *LMInformation) GetLocInfo() LocationInfo

GetLocInfo returns the LocInfo field value

func (*LMInformation) GetLocInfoOk

func (o *LMInformation) GetLocInfoOk() (*LocationInfo, bool)

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

func (*LMInformation) GetTimeStamp

func (o *LMInformation) GetTimeStamp() time.Time

GetTimeStamp returns the TimeStamp field value if set, zero value otherwise.

func (*LMInformation) GetTimeStampOk

func (o *LMInformation) GetTimeStampOk() (*time.Time, bool)

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

func (*LMInformation) GetValSvcId

func (o *LMInformation) GetValSvcId() string

GetValSvcId returns the ValSvcId field value if set, zero value otherwise.

func (*LMInformation) GetValSvcIdOk

func (o *LMInformation) GetValSvcIdOk() (*string, bool)

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

func (*LMInformation) GetValTgtUe

func (o *LMInformation) GetValTgtUe() ValTargetUe

GetValTgtUe returns the ValTgtUe field value If the value is explicit nil, the zero value for ValTargetUe will be returned

func (*LMInformation) GetValTgtUeOk

func (o *LMInformation) GetValTgtUeOk() (*ValTargetUe, bool)

GetValTgtUeOk returns a tuple with the ValTgtUe 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 (*LMInformation) HasTimeStamp

func (o *LMInformation) HasTimeStamp() bool

HasTimeStamp returns a boolean if a field has been set.

func (*LMInformation) HasValSvcId

func (o *LMInformation) HasValSvcId() bool

HasValSvcId returns a boolean if a field has been set.

func (LMInformation) MarshalJSON

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

func (*LMInformation) SetLocInfo

func (o *LMInformation) SetLocInfo(v LocationInfo)

SetLocInfo sets field value

func (*LMInformation) SetTimeStamp

func (o *LMInformation) SetTimeStamp(v time.Time)

SetTimeStamp gets a reference to the given time.Time and assigns it to the TimeStamp field.

func (*LMInformation) SetValSvcId

func (o *LMInformation) SetValSvcId(v string)

SetValSvcId gets a reference to the given string and assigns it to the ValSvcId field.

func (*LMInformation) SetValTgtUe

func (o *LMInformation) SetValTgtUe(v ValTargetUe)

SetValTgtUe sets field value

func (LMInformation) ToMap

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

func (*LMInformation) UnmarshalJSON

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

type LdrType

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

LdrType Indicates LDR types.

func (*LdrType) MarshalJSON

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

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

func (*LdrType) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type LocDevNotification

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

LocDevNotification Possible values are: - NOTIFY_MISMATCH_LOCATION: This value indicates that the location information of the VAL UE(s) from the SEAL LM client and the core network are not matching. - NOTIFY_ABSENCE: This value indicates that the current location information of the VAL UE(s)is deviating from the VAL server's area of interest. - NOTIFY_PRESENCE: This value indicates that the current location information of the VAL UE(s) is within the VAL server's area of interest.

func (*LocDevNotification) MarshalJSON

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

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

func (*LocDevNotification) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type Local2dPointUncertaintyEllipse

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

Local2dPointUncertaintyEllipse Local 2D point with uncertainty ellipse

func NewLocal2dPointUncertaintyEllipse

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

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

func NewLocal2dPointUncertaintyEllipseWithDefaults

func NewLocal2dPointUncertaintyEllipseWithDefaults() *Local2dPointUncertaintyEllipse

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

func (*Local2dPointUncertaintyEllipse) GetConfidence

func (o *Local2dPointUncertaintyEllipse) GetConfidence() int32

GetConfidence returns the Confidence field value

func (*Local2dPointUncertaintyEllipse) GetConfidenceOk

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

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

func (*Local2dPointUncertaintyEllipse) GetLocalOrigin

func (o *Local2dPointUncertaintyEllipse) GetLocalOrigin() LocalOrigin

GetLocalOrigin returns the LocalOrigin field value

func (*Local2dPointUncertaintyEllipse) GetLocalOriginOk

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

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

func (*Local2dPointUncertaintyEllipse) GetPoint

GetPoint returns the Point field value

func (*Local2dPointUncertaintyEllipse) GetPointOk

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

func (*Local2dPointUncertaintyEllipse) GetUncertaintyEllipse

func (o *Local2dPointUncertaintyEllipse) GetUncertaintyEllipse() UncertaintyEllipse

GetUncertaintyEllipse returns the UncertaintyEllipse field value

func (*Local2dPointUncertaintyEllipse) GetUncertaintyEllipseOk

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

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

func (Local2dPointUncertaintyEllipse) MarshalJSON

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

func (*Local2dPointUncertaintyEllipse) SetConfidence

func (o *Local2dPointUncertaintyEllipse) SetConfidence(v int32)

SetConfidence sets field value

func (*Local2dPointUncertaintyEllipse) SetLocalOrigin

func (o *Local2dPointUncertaintyEllipse) SetLocalOrigin(v LocalOrigin)

SetLocalOrigin sets field value

func (*Local2dPointUncertaintyEllipse) SetPoint

SetPoint sets field value

func (*Local2dPointUncertaintyEllipse) SetUncertaintyEllipse

func (o *Local2dPointUncertaintyEllipse) SetUncertaintyEllipse(v UncertaintyEllipse)

SetUncertaintyEllipse sets field value

func (Local2dPointUncertaintyEllipse) ToMap

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

func (*Local2dPointUncertaintyEllipse) UnmarshalJSON

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

type Local3dPointUncertaintyEllipsoid

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

Local3dPointUncertaintyEllipsoid Local 3D point with uncertainty ellipsoid

func NewLocal3dPointUncertaintyEllipsoid

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

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

func NewLocal3dPointUncertaintyEllipsoidWithDefaults

func NewLocal3dPointUncertaintyEllipsoidWithDefaults() *Local3dPointUncertaintyEllipsoid

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

func (*Local3dPointUncertaintyEllipsoid) GetConfidence

func (o *Local3dPointUncertaintyEllipsoid) GetConfidence() int32

GetConfidence returns the Confidence field value

func (*Local3dPointUncertaintyEllipsoid) GetConfidenceOk

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

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

func (*Local3dPointUncertaintyEllipsoid) GetLocalOrigin

func (o *Local3dPointUncertaintyEllipsoid) GetLocalOrigin() LocalOrigin

GetLocalOrigin returns the LocalOrigin field value

func (*Local3dPointUncertaintyEllipsoid) GetLocalOriginOk

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

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

func (*Local3dPointUncertaintyEllipsoid) GetPoint

GetPoint returns the Point field value

func (*Local3dPointUncertaintyEllipsoid) GetPointOk

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

func (*Local3dPointUncertaintyEllipsoid) GetUncertaintyEllipsoid

func (o *Local3dPointUncertaintyEllipsoid) GetUncertaintyEllipsoid() UncertaintyEllipsoid

GetUncertaintyEllipsoid returns the UncertaintyEllipsoid field value

func (*Local3dPointUncertaintyEllipsoid) GetUncertaintyEllipsoidOk

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

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

func (Local3dPointUncertaintyEllipsoid) MarshalJSON

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

func (*Local3dPointUncertaintyEllipsoid) SetConfidence

func (o *Local3dPointUncertaintyEllipsoid) SetConfidence(v int32)

SetConfidence sets field value

func (*Local3dPointUncertaintyEllipsoid) SetLocalOrigin

func (o *Local3dPointUncertaintyEllipsoid) SetLocalOrigin(v LocalOrigin)

SetLocalOrigin sets field value

func (*Local3dPointUncertaintyEllipsoid) SetPoint

SetPoint sets field value

func (*Local3dPointUncertaintyEllipsoid) SetUncertaintyEllipsoid

func (o *Local3dPointUncertaintyEllipsoid) SetUncertaintyEllipsoid(v UncertaintyEllipsoid)

SetUncertaintyEllipsoid sets field value

func (Local3dPointUncertaintyEllipsoid) ToMap

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

func (*Local3dPointUncertaintyEllipsoid) UnmarshalJSON

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

type LocalOrigin

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

LocalOrigin Indicates a Local origin in a reference system

func NewLocalOrigin

func NewLocalOrigin() *LocalOrigin

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

func NewLocalOriginWithDefaults

func NewLocalOriginWithDefaults() *LocalOrigin

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

func (*LocalOrigin) GetCoordinateId

func (o *LocalOrigin) GetCoordinateId() string

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

func (*LocalOrigin) GetCoordinateIdOk

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

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

func (*LocalOrigin) GetPoint

func (o *LocalOrigin) GetPoint() GeographicalCoordinates

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

func (*LocalOrigin) GetPointOk

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

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

func (*LocalOrigin) HasCoordinateId

func (o *LocalOrigin) HasCoordinateId() bool

HasCoordinateId returns a boolean if a field has been set.

func (*LocalOrigin) HasPoint

func (o *LocalOrigin) HasPoint() bool

HasPoint returns a boolean if a field has been set.

func (LocalOrigin) MarshalJSON

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

func (*LocalOrigin) SetCoordinateId

func (o *LocalOrigin) SetCoordinateId(v string)

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

func (*LocalOrigin) SetPoint

func (o *LocalOrigin) SetPoint(v GeographicalCoordinates)

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

func (LocalOrigin) ToMap

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

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

type LocationAreaMonReport struct {
	// List of identities of all VAL UEs present in the given location area.
	CurPreUEs    []ValTargetUe       `json:"curPreUEs,omitempty"`
	MoveInOutUEs *MoveInOutUEDetails `json:"moveInOutUEs,omitempty"`
	TrigEvnt     *MonLocTriggerEvent `json:"trigEvnt,omitempty"`
}

LocationAreaMonReport Event report to notify the VAL UEs moving in or out from a given location.

func NewLocationAreaMonReport

func NewLocationAreaMonReport() *LocationAreaMonReport

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

func NewLocationAreaMonReportWithDefaults

func NewLocationAreaMonReportWithDefaults() *LocationAreaMonReport

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

func (*LocationAreaMonReport) GetCurPreUEs

func (o *LocationAreaMonReport) GetCurPreUEs() []ValTargetUe

GetCurPreUEs returns the CurPreUEs field value if set, zero value otherwise.

func (*LocationAreaMonReport) GetCurPreUEsOk

func (o *LocationAreaMonReport) GetCurPreUEsOk() ([]ValTargetUe, bool)

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

func (*LocationAreaMonReport) GetMoveInOutUEs

func (o *LocationAreaMonReport) GetMoveInOutUEs() MoveInOutUEDetails

GetMoveInOutUEs returns the MoveInOutUEs field value if set, zero value otherwise.

func (*LocationAreaMonReport) GetMoveInOutUEsOk

func (o *LocationAreaMonReport) GetMoveInOutUEsOk() (*MoveInOutUEDetails, bool)

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

func (*LocationAreaMonReport) GetTrigEvnt

func (o *LocationAreaMonReport) GetTrigEvnt() MonLocTriggerEvent

GetTrigEvnt returns the TrigEvnt field value if set, zero value otherwise.

func (*LocationAreaMonReport) GetTrigEvntOk

func (o *LocationAreaMonReport) GetTrigEvntOk() (*MonLocTriggerEvent, bool)

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

func (*LocationAreaMonReport) HasCurPreUEs

func (o *LocationAreaMonReport) HasCurPreUEs() bool

HasCurPreUEs returns a boolean if a field has been set.

func (*LocationAreaMonReport) HasMoveInOutUEs

func (o *LocationAreaMonReport) HasMoveInOutUEs() bool

HasMoveInOutUEs returns a boolean if a field has been set.

func (*LocationAreaMonReport) HasTrigEvnt

func (o *LocationAreaMonReport) HasTrigEvnt() bool

HasTrigEvnt returns a boolean if a field has been set.

func (LocationAreaMonReport) MarshalJSON

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

func (*LocationAreaMonReport) SetCurPreUEs

func (o *LocationAreaMonReport) SetCurPreUEs(v []ValTargetUe)

SetCurPreUEs gets a reference to the given []ValTargetUe and assigns it to the CurPreUEs field.

func (*LocationAreaMonReport) SetMoveInOutUEs

func (o *LocationAreaMonReport) SetMoveInOutUEs(v MoveInOutUEDetails)

SetMoveInOutUEs gets a reference to the given MoveInOutUEDetails and assigns it to the MoveInOutUEs field.

func (*LocationAreaMonReport) SetTrigEvnt

func (o *LocationAreaMonReport) SetTrigEvnt(v MonLocTriggerEvent)

SetTrigEvnt gets a reference to the given MonLocTriggerEvent and assigns it to the TrigEvnt field.

func (LocationAreaMonReport) ToMap

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

type LocationDevMonReport

type LocationDevMonReport struct {
	// List of VAL Users or UE IDs for which report is related to.
	TgtUes    []ValTargetUe      `json:"tgtUes"`
	LocInfo   LocationInfo       `json:"locInfo"`
	NotifType LocDevNotification `json:"notifType"`
}

LocationDevMonReport Location deviation monitoring report.

func NewLocationDevMonReport

func NewLocationDevMonReport(tgtUes []ValTargetUe, locInfo LocationInfo, notifType LocDevNotification) *LocationDevMonReport

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

func NewLocationDevMonReportWithDefaults

func NewLocationDevMonReportWithDefaults() *LocationDevMonReport

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

func (*LocationDevMonReport) GetLocInfo

func (o *LocationDevMonReport) GetLocInfo() LocationInfo

GetLocInfo returns the LocInfo field value

func (*LocationDevMonReport) GetLocInfoOk

func (o *LocationDevMonReport) GetLocInfoOk() (*LocationInfo, bool)

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

func (*LocationDevMonReport) GetNotifType

func (o *LocationDevMonReport) GetNotifType() LocDevNotification

GetNotifType returns the NotifType field value

func (*LocationDevMonReport) GetNotifTypeOk

func (o *LocationDevMonReport) GetNotifTypeOk() (*LocDevNotification, bool)

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

func (*LocationDevMonReport) GetTgtUes

func (o *LocationDevMonReport) GetTgtUes() []ValTargetUe

GetTgtUes returns the TgtUes field value

func (*LocationDevMonReport) GetTgtUesOk

func (o *LocationDevMonReport) GetTgtUesOk() ([]ValTargetUe, bool)

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

func (LocationDevMonReport) MarshalJSON

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

func (*LocationDevMonReport) SetLocInfo

func (o *LocationDevMonReport) SetLocInfo(v LocationInfo)

SetLocInfo sets field value

func (*LocationDevMonReport) SetNotifType

func (o *LocationDevMonReport) SetNotifType(v LocDevNotification)

SetNotifType sets field value

func (*LocationDevMonReport) SetTgtUes

func (o *LocationDevMonReport) SetTgtUes(v []ValTargetUe)

SetTgtUes sets field value

func (LocationDevMonReport) ToMap

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

func (*LocationDevMonReport) UnmarshalJSON

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

type LocationInfo

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

LocationInfo Represents the user location information.

func NewLocationInfo

func NewLocationInfo() *LocationInfo

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

func NewLocationInfoWithDefaults

func NewLocationInfoWithDefaults() *LocationInfo

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

func (*LocationInfo) GetAchievedQos

func (o *LocationInfo) GetAchievedQos() MinorLocationQoS

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

func (*LocationInfo) GetAchievedQosOk

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

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

func (*LocationInfo) GetAgeOfLocationInfo

func (o *LocationInfo) GetAgeOfLocationInfo() int32

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

func (*LocationInfo) GetAgeOfLocationInfoOk

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

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

func (*LocationInfo) GetCellId

func (o *LocationInfo) GetCellId() string

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

func (*LocationInfo) GetCellIdOk

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

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

func (*LocationInfo) GetCivicAddress

func (o *LocationInfo) GetCivicAddress() CivicAddress

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

func (*LocationInfo) GetCivicAddressOk

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

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

func (*LocationInfo) GetEnodeBId

func (o *LocationInfo) GetEnodeBId() string

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

func (*LocationInfo) GetEnodeBIdOk

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

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

func (*LocationInfo) GetGeographicArea

func (o *LocationInfo) GetGeographicArea() GeographicArea

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

func (*LocationInfo) GetGeographicAreaOk

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

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

func (*LocationInfo) GetLdrType

func (o *LocationInfo) GetLdrType() LdrType

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

func (*LocationInfo) GetLdrTypeOk

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

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

func (*LocationInfo) GetPlmnId

func (o *LocationInfo) GetPlmnId() string

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

func (*LocationInfo) GetPlmnIdOk

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

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

func (*LocationInfo) GetPositionMethod

func (o *LocationInfo) GetPositionMethod() PositioningMethod

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

func (*LocationInfo) GetPositionMethodOk

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

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

func (*LocationInfo) GetQosFulfilInd

func (o *LocationInfo) GetQosFulfilInd() AccuracyFulfilmentIndicator

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

func (*LocationInfo) GetQosFulfilIndOk

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

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

func (*LocationInfo) GetRoutingAreaId

func (o *LocationInfo) GetRoutingAreaId() string

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

func (*LocationInfo) GetRoutingAreaIdOk

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

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

func (*LocationInfo) GetTrackingAreaId

func (o *LocationInfo) GetTrackingAreaId() string

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

func (*LocationInfo) GetTrackingAreaIdOk

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

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

func (*LocationInfo) GetTwanId

func (o *LocationInfo) GetTwanId() string

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

func (*LocationInfo) GetTwanIdOk

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

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

func (*LocationInfo) GetUeVelocity

func (o *LocationInfo) GetUeVelocity() VelocityEstimate

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

func (*LocationInfo) GetUeVelocityOk

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

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

func (*LocationInfo) HasAchievedQos

func (o *LocationInfo) HasAchievedQos() bool

HasAchievedQos returns a boolean if a field has been set.

func (*LocationInfo) HasAgeOfLocationInfo

func (o *LocationInfo) HasAgeOfLocationInfo() bool

HasAgeOfLocationInfo returns a boolean if a field has been set.

func (*LocationInfo) HasCellId

func (o *LocationInfo) HasCellId() bool

HasCellId returns a boolean if a field has been set.

func (*LocationInfo) HasCivicAddress

func (o *LocationInfo) HasCivicAddress() bool

HasCivicAddress returns a boolean if a field has been set.

func (*LocationInfo) HasEnodeBId

func (o *LocationInfo) HasEnodeBId() bool

HasEnodeBId returns a boolean if a field has been set.

func (*LocationInfo) HasGeographicArea

func (o *LocationInfo) HasGeographicArea() bool

HasGeographicArea returns a boolean if a field has been set.

func (*LocationInfo) HasLdrType

func (o *LocationInfo) HasLdrType() bool

HasLdrType returns a boolean if a field has been set.

func (*LocationInfo) HasPlmnId

func (o *LocationInfo) HasPlmnId() bool

HasPlmnId returns a boolean if a field has been set.

func (*LocationInfo) HasPositionMethod

func (o *LocationInfo) HasPositionMethod() bool

HasPositionMethod returns a boolean if a field has been set.

func (*LocationInfo) HasQosFulfilInd

func (o *LocationInfo) HasQosFulfilInd() bool

HasQosFulfilInd returns a boolean if a field has been set.

func (*LocationInfo) HasRoutingAreaId

func (o *LocationInfo) HasRoutingAreaId() bool

HasRoutingAreaId returns a boolean if a field has been set.

func (*LocationInfo) HasTrackingAreaId

func (o *LocationInfo) HasTrackingAreaId() bool

HasTrackingAreaId returns a boolean if a field has been set.

func (*LocationInfo) HasTwanId

func (o *LocationInfo) HasTwanId() bool

HasTwanId returns a boolean if a field has been set.

func (*LocationInfo) HasUeVelocity

func (o *LocationInfo) HasUeVelocity() bool

HasUeVelocity returns a boolean if a field has been set.

func (LocationInfo) MarshalJSON

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

func (*LocationInfo) SetAchievedQos

func (o *LocationInfo) SetAchievedQos(v MinorLocationQoS)

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

func (*LocationInfo) SetAgeOfLocationInfo

func (o *LocationInfo) SetAgeOfLocationInfo(v int32)

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

func (*LocationInfo) SetCellId

func (o *LocationInfo) SetCellId(v string)

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

func (*LocationInfo) SetCivicAddress

func (o *LocationInfo) SetCivicAddress(v CivicAddress)

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

func (*LocationInfo) SetEnodeBId

func (o *LocationInfo) SetEnodeBId(v string)

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

func (*LocationInfo) SetGeographicArea

func (o *LocationInfo) SetGeographicArea(v GeographicArea)

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

func (*LocationInfo) SetLdrType

func (o *LocationInfo) SetLdrType(v LdrType)

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

func (*LocationInfo) SetPlmnId

func (o *LocationInfo) SetPlmnId(v string)

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

func (*LocationInfo) SetPositionMethod

func (o *LocationInfo) SetPositionMethod(v PositioningMethod)

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

func (*LocationInfo) SetQosFulfilInd

func (o *LocationInfo) SetQosFulfilInd(v AccuracyFulfilmentIndicator)

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

func (*LocationInfo) SetRoutingAreaId

func (o *LocationInfo) SetRoutingAreaId(v string)

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

func (*LocationInfo) SetTrackingAreaId

func (o *LocationInfo) SetTrackingAreaId(v string)

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

func (*LocationInfo) SetTwanId

func (o *LocationInfo) SetTwanId(v string)

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

func (*LocationInfo) SetUeVelocity

func (o *LocationInfo) SetUeVelocity(v VelocityEstimate)

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

func (LocationInfo) ToMap

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

type LocationInfoCriteria

type LocationInfoCriteria struct {
	GeoArea *GeographicArea    `json:"geoArea,omitempty"`
	RefUe   *ReferenceUEDetail `json:"refUe,omitempty"`
}

LocationInfoCriteria Geographic location and reference UE details, where the UEs moving in and out to be monitored.

func NewLocationInfoCriteria

func NewLocationInfoCriteria() *LocationInfoCriteria

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

func NewLocationInfoCriteriaWithDefaults

func NewLocationInfoCriteriaWithDefaults() *LocationInfoCriteria

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

func (*LocationInfoCriteria) GetGeoArea

func (o *LocationInfoCriteria) GetGeoArea() GeographicArea

GetGeoArea returns the GeoArea field value if set, zero value otherwise.

func (*LocationInfoCriteria) GetGeoAreaOk

func (o *LocationInfoCriteria) GetGeoAreaOk() (*GeographicArea, bool)

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

func (*LocationInfoCriteria) GetRefUe

GetRefUe returns the RefUe field value if set, zero value otherwise.

func (*LocationInfoCriteria) GetRefUeOk

func (o *LocationInfoCriteria) GetRefUeOk() (*ReferenceUEDetail, bool)

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

func (*LocationInfoCriteria) HasGeoArea

func (o *LocationInfoCriteria) HasGeoArea() bool

HasGeoArea returns a boolean if a field has been set.

func (*LocationInfoCriteria) HasRefUe

func (o *LocationInfoCriteria) HasRefUe() bool

HasRefUe returns a boolean if a field has been set.

func (LocationInfoCriteria) MarshalJSON

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

func (*LocationInfoCriteria) SetGeoArea

func (o *LocationInfoCriteria) SetGeoArea(v GeographicArea)

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

func (*LocationInfoCriteria) SetRefUe

func (o *LocationInfoCriteria) SetRefUe(v ReferenceUEDetail)

SetRefUe gets a reference to the given ReferenceUEDetail and assigns it to the RefUe field.

func (LocationInfoCriteria) ToMap

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

type MappedNullable

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

type MessageFilter

type MessageFilter struct {
	ReqUe NullableValTargetUe `json:"reqUe"`
	// List of VAL User or UE IDs whose message to be sent.
	TgtUe []ValTargetUe `json:"tgtUe,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	MaxMsgs *int32 `json:"maxMsgs,omitempty"`
	// Time frame associated with total number of messages.
	Scheds []ScheduledCommunicationTime `json:"scheds,omitempty"`
	// List of message types to be sent to VAL UE.
	MsgTypes []string `json:"msgTypes,omitempty"`
}

MessageFilter Represents the message filters applicable to a VAL User ID or VAL UE ID.

func NewMessageFilter

func NewMessageFilter(reqUe NullableValTargetUe) *MessageFilter

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

func NewMessageFilterWithDefaults

func NewMessageFilterWithDefaults() *MessageFilter

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

func (*MessageFilter) GetMaxMsgs

func (o *MessageFilter) GetMaxMsgs() int32

GetMaxMsgs returns the MaxMsgs field value if set, zero value otherwise.

func (*MessageFilter) GetMaxMsgsOk

func (o *MessageFilter) GetMaxMsgsOk() (*int32, bool)

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

func (*MessageFilter) GetMsgTypes

func (o *MessageFilter) GetMsgTypes() []string

GetMsgTypes returns the MsgTypes field value if set, zero value otherwise.

func (*MessageFilter) GetMsgTypesOk

func (o *MessageFilter) GetMsgTypesOk() ([]string, bool)

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

func (*MessageFilter) GetReqUe

func (o *MessageFilter) GetReqUe() ValTargetUe

GetReqUe returns the ReqUe field value If the value is explicit nil, the zero value for ValTargetUe will be returned

func (*MessageFilter) GetReqUeOk

func (o *MessageFilter) GetReqUeOk() (*ValTargetUe, bool)

GetReqUeOk returns a tuple with the ReqUe 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 (*MessageFilter) GetScheds

func (o *MessageFilter) GetScheds() []ScheduledCommunicationTime

GetScheds returns the Scheds field value if set, zero value otherwise.

func (*MessageFilter) GetSchedsOk

func (o *MessageFilter) GetSchedsOk() ([]ScheduledCommunicationTime, bool)

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

func (*MessageFilter) GetTgtUe

func (o *MessageFilter) GetTgtUe() []ValTargetUe

GetTgtUe returns the TgtUe field value if set, zero value otherwise.

func (*MessageFilter) GetTgtUeOk

func (o *MessageFilter) GetTgtUeOk() ([]ValTargetUe, bool)

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

func (*MessageFilter) HasMaxMsgs

func (o *MessageFilter) HasMaxMsgs() bool

HasMaxMsgs returns a boolean if a field has been set.

func (*MessageFilter) HasMsgTypes

func (o *MessageFilter) HasMsgTypes() bool

HasMsgTypes returns a boolean if a field has been set.

func (*MessageFilter) HasScheds

func (o *MessageFilter) HasScheds() bool

HasScheds returns a boolean if a field has been set.

func (*MessageFilter) HasTgtUe

func (o *MessageFilter) HasTgtUe() bool

HasTgtUe returns a boolean if a field has been set.

func (MessageFilter) MarshalJSON

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

func (*MessageFilter) SetMaxMsgs

func (o *MessageFilter) SetMaxMsgs(v int32)

SetMaxMsgs gets a reference to the given int32 and assigns it to the MaxMsgs field.

func (*MessageFilter) SetMsgTypes

func (o *MessageFilter) SetMsgTypes(v []string)

SetMsgTypes gets a reference to the given []string and assigns it to the MsgTypes field.

func (*MessageFilter) SetReqUe

func (o *MessageFilter) SetReqUe(v ValTargetUe)

SetReqUe sets field value

func (*MessageFilter) SetScheds

func (o *MessageFilter) SetScheds(v []ScheduledCommunicationTime)

SetScheds gets a reference to the given []ScheduledCommunicationTime and assigns it to the Scheds field.

func (*MessageFilter) SetTgtUe

func (o *MessageFilter) SetTgtUe(v []ValTargetUe)

SetTgtUe gets a reference to the given []ValTargetUe and assigns it to the TgtUe field.

func (MessageFilter) ToMap

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

func (*MessageFilter) UnmarshalJSON

func (o *MessageFilter) 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 MonLocAreaInterestFltr

type MonLocAreaInterestFltr struct {
	LocInfoCri NullableLocationInfoCriteria `json:"locInfoCri"`
	// Triggering events when to send information.
	TrigEvnts []MonLocTriggerEvent `json:"trigEvnts,omitempty"`
}

MonLocAreaInterestFltr Filter information indicate the area of interest and triggering events.

func NewMonLocAreaInterestFltr

func NewMonLocAreaInterestFltr(locInfoCri NullableLocationInfoCriteria) *MonLocAreaInterestFltr

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

func NewMonLocAreaInterestFltrWithDefaults

func NewMonLocAreaInterestFltrWithDefaults() *MonLocAreaInterestFltr

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

func (*MonLocAreaInterestFltr) GetLocInfoCri

func (o *MonLocAreaInterestFltr) GetLocInfoCri() LocationInfoCriteria

GetLocInfoCri returns the LocInfoCri field value If the value is explicit nil, the zero value for LocationInfoCriteria will be returned

func (*MonLocAreaInterestFltr) GetLocInfoCriOk

func (o *MonLocAreaInterestFltr) GetLocInfoCriOk() (*LocationInfoCriteria, bool)

GetLocInfoCriOk returns a tuple with the LocInfoCri 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 (*MonLocAreaInterestFltr) GetTrigEvnts

func (o *MonLocAreaInterestFltr) GetTrigEvnts() []MonLocTriggerEvent

GetTrigEvnts returns the TrigEvnts field value if set, zero value otherwise.

func (*MonLocAreaInterestFltr) GetTrigEvntsOk

func (o *MonLocAreaInterestFltr) GetTrigEvntsOk() ([]MonLocTriggerEvent, bool)

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

func (*MonLocAreaInterestFltr) HasTrigEvnts

func (o *MonLocAreaInterestFltr) HasTrigEvnts() bool

HasTrigEvnts returns a boolean if a field has been set.

func (MonLocAreaInterestFltr) MarshalJSON

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

func (*MonLocAreaInterestFltr) SetLocInfoCri

func (o *MonLocAreaInterestFltr) SetLocInfoCri(v LocationInfoCriteria)

SetLocInfoCri sets field value

func (*MonLocAreaInterestFltr) SetTrigEvnts

func (o *MonLocAreaInterestFltr) SetTrigEvnts(v []MonLocTriggerEvent)

SetTrigEvnts gets a reference to the given []MonLocTriggerEvent and assigns it to the TrigEvnts field.

func (MonLocAreaInterestFltr) ToMap

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

func (*MonLocAreaInterestFltr) UnmarshalJSON

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

type MonLocTriggerEvent

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

MonLocTriggerEvent Possible values are: - DISTANCE_TRAVELLED: This value indicates the trigger event for the location area monitoring based on the distance travelled by the reference UE.

func (*MonLocTriggerEvent) MarshalJSON

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

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

func (*MonLocTriggerEvent) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type MonitorEvents

type MonitorEvents struct {
	// List of monitoring events related to VAL UE.
	CnEvnts []MonitoringType `json:"cnEvnts,omitempty"`
	// List of analytics events related to VAL UE.
	AnlEvnts []AnalyticsEvent `json:"anlEvnts,omitempty"`
}

MonitorEvents List of event types to be monitored in the context of events monitoring service.

func NewMonitorEvents

func NewMonitorEvents() *MonitorEvents

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

func NewMonitorEventsWithDefaults

func NewMonitorEventsWithDefaults() *MonitorEvents

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

func (*MonitorEvents) GetAnlEvnts

func (o *MonitorEvents) GetAnlEvnts() []AnalyticsEvent

GetAnlEvnts returns the AnlEvnts field value if set, zero value otherwise.

func (*MonitorEvents) GetAnlEvntsOk

func (o *MonitorEvents) GetAnlEvntsOk() ([]AnalyticsEvent, bool)

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

func (*MonitorEvents) GetCnEvnts

func (o *MonitorEvents) GetCnEvnts() []MonitoringType

GetCnEvnts returns the CnEvnts field value if set, zero value otherwise.

func (*MonitorEvents) GetCnEvntsOk

func (o *MonitorEvents) GetCnEvntsOk() ([]MonitoringType, bool)

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

func (*MonitorEvents) HasAnlEvnts

func (o *MonitorEvents) HasAnlEvnts() bool

HasAnlEvnts returns a boolean if a field has been set.

func (*MonitorEvents) HasCnEvnts

func (o *MonitorEvents) HasCnEvnts() bool

HasCnEvnts returns a boolean if a field has been set.

func (MonitorEvents) MarshalJSON

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

func (*MonitorEvents) SetAnlEvnts

func (o *MonitorEvents) SetAnlEvnts(v []AnalyticsEvent)

SetAnlEvnts gets a reference to the given []AnalyticsEvent and assigns it to the AnlEvnts field.

func (*MonitorEvents) SetCnEvnts

func (o *MonitorEvents) SetCnEvnts(v []MonitoringType)

SetCnEvnts gets a reference to the given []MonitoringType and assigns it to the CnEvnts field.

func (MonitorEvents) ToMap

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

type MonitorEventsReport

type MonitorEventsReport struct {
	TgtUe NullableValTargetUe `json:"tgtUe"`
	// List of monitoring and analytics events related to VAL UE.
	Evnts []MonitorEvents `json:"evnts"`
}

MonitorEventsReport List of monitoring and/or analytics events related to VAL UE.

func NewMonitorEventsReport

func NewMonitorEventsReport(tgtUe NullableValTargetUe, evnts []MonitorEvents) *MonitorEventsReport

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

func NewMonitorEventsReportWithDefaults

func NewMonitorEventsReportWithDefaults() *MonitorEventsReport

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

func (*MonitorEventsReport) GetEvnts

func (o *MonitorEventsReport) GetEvnts() []MonitorEvents

GetEvnts returns the Evnts field value

func (*MonitorEventsReport) GetEvntsOk

func (o *MonitorEventsReport) GetEvntsOk() ([]MonitorEvents, bool)

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

func (*MonitorEventsReport) GetTgtUe

func (o *MonitorEventsReport) GetTgtUe() ValTargetUe

GetTgtUe returns the TgtUe field value If the value is explicit nil, the zero value for ValTargetUe will be returned

func (*MonitorEventsReport) GetTgtUeOk

func (o *MonitorEventsReport) GetTgtUeOk() (*ValTargetUe, bool)

GetTgtUeOk returns a tuple with the TgtUe 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 (MonitorEventsReport) MarshalJSON

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

func (*MonitorEventsReport) SetEvnts

func (o *MonitorEventsReport) SetEvnts(v []MonitorEvents)

SetEvnts sets field value

func (*MonitorEventsReport) SetTgtUe

func (o *MonitorEventsReport) SetTgtUe(v ValTargetUe)

SetTgtUe sets field value

func (MonitorEventsReport) ToMap

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

func (*MonitorEventsReport) UnmarshalJSON

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

type MonitorFilter

type MonitorFilter struct {
	// List of VAL User or UE IDs whose events monitoring is requested.
	Idnts []ValTargetUe `json:"idnts,omitempty"`
	// Identity of the VAL service.
	ValSvcId *string `json:"valSvcId,omitempty"`
	// Identity of the group of the target UEs.
	ValGrpId *string `json:"valGrpId,omitempty"`
	// The monitoring profile ID identifying a list of monitoring, analytics events.
	ProfId *string `json:"profId,omitempty"`
	// The temporal,spatial conditions for the events to be considered valid.
	ValCnds []ValidityConditions `json:"valCnds,omitempty"`
	// List of monitoring, analytics events to be monitored.
	EvntDets []MonitorEvents `json:"evntDets,omitempty"`
}

MonitorFilter Represents the event monitoring filters applicable to a VAL User ID or VAL UE ID.

func NewMonitorFilter

func NewMonitorFilter() *MonitorFilter

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

func NewMonitorFilterWithDefaults

func NewMonitorFilterWithDefaults() *MonitorFilter

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

func (*MonitorFilter) GetEvntDets

func (o *MonitorFilter) GetEvntDets() []MonitorEvents

GetEvntDets returns the EvntDets field value if set, zero value otherwise.

func (*MonitorFilter) GetEvntDetsOk

func (o *MonitorFilter) GetEvntDetsOk() ([]MonitorEvents, bool)

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

func (*MonitorFilter) GetIdnts

func (o *MonitorFilter) GetIdnts() []ValTargetUe

GetIdnts returns the Idnts field value if set, zero value otherwise.

func (*MonitorFilter) GetIdntsOk

func (o *MonitorFilter) GetIdntsOk() ([]ValTargetUe, bool)

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

func (*MonitorFilter) GetProfId

func (o *MonitorFilter) GetProfId() string

GetProfId returns the ProfId field value if set, zero value otherwise.

func (*MonitorFilter) GetProfIdOk

func (o *MonitorFilter) GetProfIdOk() (*string, bool)

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

func (*MonitorFilter) GetValCnds

func (o *MonitorFilter) GetValCnds() []ValidityConditions

GetValCnds returns the ValCnds field value if set, zero value otherwise.

func (*MonitorFilter) GetValCndsOk

func (o *MonitorFilter) GetValCndsOk() ([]ValidityConditions, bool)

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

func (*MonitorFilter) GetValGrpId

func (o *MonitorFilter) GetValGrpId() string

GetValGrpId returns the ValGrpId field value if set, zero value otherwise.

func (*MonitorFilter) GetValGrpIdOk

func (o *MonitorFilter) GetValGrpIdOk() (*string, bool)

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

func (*MonitorFilter) GetValSvcId

func (o *MonitorFilter) GetValSvcId() string

GetValSvcId returns the ValSvcId field value if set, zero value otherwise.

func (*MonitorFilter) GetValSvcIdOk

func (o *MonitorFilter) GetValSvcIdOk() (*string, bool)

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

func (*MonitorFilter) HasEvntDets

func (o *MonitorFilter) HasEvntDets() bool

HasEvntDets returns a boolean if a field has been set.

func (*MonitorFilter) HasIdnts

func (o *MonitorFilter) HasIdnts() bool

HasIdnts returns a boolean if a field has been set.

func (*MonitorFilter) HasProfId

func (o *MonitorFilter) HasProfId() bool

HasProfId returns a boolean if a field has been set.

func (*MonitorFilter) HasValCnds

func (o *MonitorFilter) HasValCnds() bool

HasValCnds returns a boolean if a field has been set.

func (*MonitorFilter) HasValGrpId

func (o *MonitorFilter) HasValGrpId() bool

HasValGrpId returns a boolean if a field has been set.

func (*MonitorFilter) HasValSvcId

func (o *MonitorFilter) HasValSvcId() bool

HasValSvcId returns a boolean if a field has been set.

func (MonitorFilter) MarshalJSON

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

func (*MonitorFilter) SetEvntDets

func (o *MonitorFilter) SetEvntDets(v []MonitorEvents)

SetEvntDets gets a reference to the given []MonitorEvents and assigns it to the EvntDets field.

func (*MonitorFilter) SetIdnts

func (o *MonitorFilter) SetIdnts(v []ValTargetUe)

SetIdnts gets a reference to the given []ValTargetUe and assigns it to the Idnts field.

func (*MonitorFilter) SetProfId

func (o *MonitorFilter) SetProfId(v string)

SetProfId gets a reference to the given string and assigns it to the ProfId field.

func (*MonitorFilter) SetValCnds

func (o *MonitorFilter) SetValCnds(v []ValidityConditions)

SetValCnds gets a reference to the given []ValidityConditions and assigns it to the ValCnds field.

func (*MonitorFilter) SetValGrpId

func (o *MonitorFilter) SetValGrpId(v string)

SetValGrpId gets a reference to the given string and assigns it to the ValGrpId field.

func (*MonitorFilter) SetValSvcId

func (o *MonitorFilter) SetValSvcId(v string)

SetValSvcId gets a reference to the given string and assigns it to the ValSvcId field.

func (MonitorFilter) ToMap

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

type MonitorLocationInterestFilter

type MonitorLocationInterestFilter struct {
	// List of VAL Users or UE IDs for which location monitoring is requested.
	TgtUes []ValTargetUe `json:"tgtUes"`
	LocInt LocationInfo  `json:"locInt"`
	// indicating a time in seconds.
	NotInt int32 `json:"notInt"`
}

MonitorLocationInterestFilter Represents the location monitoring filter information.

func NewMonitorLocationInterestFilter

func NewMonitorLocationInterestFilter(tgtUes []ValTargetUe, locInt LocationInfo, notInt int32) *MonitorLocationInterestFilter

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

func NewMonitorLocationInterestFilterWithDefaults

func NewMonitorLocationInterestFilterWithDefaults() *MonitorLocationInterestFilter

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

func (*MonitorLocationInterestFilter) GetLocInt

GetLocInt returns the LocInt field value

func (*MonitorLocationInterestFilter) GetLocIntOk

func (o *MonitorLocationInterestFilter) GetLocIntOk() (*LocationInfo, bool)

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

func (*MonitorLocationInterestFilter) GetNotInt

func (o *MonitorLocationInterestFilter) GetNotInt() int32

GetNotInt returns the NotInt field value

func (*MonitorLocationInterestFilter) GetNotIntOk

func (o *MonitorLocationInterestFilter) GetNotIntOk() (*int32, bool)

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

func (*MonitorLocationInterestFilter) GetTgtUes

func (o *MonitorLocationInterestFilter) GetTgtUes() []ValTargetUe

GetTgtUes returns the TgtUes field value

func (*MonitorLocationInterestFilter) GetTgtUesOk

func (o *MonitorLocationInterestFilter) GetTgtUesOk() ([]ValTargetUe, bool)

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

func (MonitorLocationInterestFilter) MarshalJSON

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

func (*MonitorLocationInterestFilter) SetLocInt

SetLocInt sets field value

func (*MonitorLocationInterestFilter) SetNotInt

func (o *MonitorLocationInterestFilter) SetNotInt(v int32)

SetNotInt sets field value

func (*MonitorLocationInterestFilter) SetTgtUes

func (o *MonitorLocationInterestFilter) SetTgtUes(v []ValTargetUe)

SetTgtUes sets field value

func (MonitorLocationInterestFilter) ToMap

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

func (*MonitorLocationInterestFilter) UnmarshalJSON

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

type MonitoringType

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

MonitoringType Possible values are - LOSS_OF_CONNECTIVITY: The SCS/AS requests to be notified when the 3GPP network detects that the UE is no longer reachable for signalling or user plane communication - UE_REACHABILITY: The SCS/AS requests to be notified when the UE becomes reachable for sending either SMS or downlink data to the UE - LOCATION_REPORTING: The SCS/AS requests to be notified of the current location or the last known location of the UE - CHANGE_OF_IMSI_IMEI_ASSOCIATION: The SCS/AS requests to be notified when the association of an ME (IMEI(SV)) that uses a specific subscription (IMSI) is changed - ROAMING_STATUS: The SCS/AS queries the UE's current roaming status and requests to get notified when the status changes - COMMUNICATION_FAILURE: The SCS/AS requests to be notified of communication failure events - AVAILABILITY_AFTER_DDN_FAILURE: The SCS/AS requests to be notified when the UE has become available after a DDN failure - NUMBER_OF_UES_IN_AN_AREA: The SCS/AS requests to be notified the number of UEs in a given geographic area - PDN_CONNECTIVITY_STATUS: The SCS/AS requests to be notified when the 3GPP network detects that the UE’s PDN connection is set up or torn down - DOWNLINK_DATA_DELIVERY_STATUS: The AF requests to be notified when the 3GPP network detects that the downlink data delivery status is changed. - API_SUPPORT_CAPABILITY: The SCS/AS requests to be notified of the availability of support of service APIs. - NUM_OF_REGD_UES: The AF requests to be notified of the current number of registered UEs for a network slice. - NUM_OF_ESTD_PDU_SESSIONS: The AF requests to be notified of the current number of established PDU Sessions for a network slice. - AREA_OF_INTEREST: The SCS/AS requests to be notified when the UAV moves in or out of the geographic area.

func (*MonitoringType) MarshalJSON

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

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

func (*MonitoringType) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type MoveInOutUEDetails

type MoveInOutUEDetails struct {
	// List of identities of VAL UEs who moved in to given location area since previous notification.
	MoveInUEs []ValTargetUe `json:"moveInUEs,omitempty"`
	// List of identities of VAL UEs who moved out of the given location area since previous notification.
	MoveOutUEs []ValTargetUe `json:"moveOutUEs,omitempty"`
}

MoveInOutUEDetails List of UEs moved in and out.

func NewMoveInOutUEDetails

func NewMoveInOutUEDetails() *MoveInOutUEDetails

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

func NewMoveInOutUEDetailsWithDefaults

func NewMoveInOutUEDetailsWithDefaults() *MoveInOutUEDetails

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

func (*MoveInOutUEDetails) GetMoveInUEs

func (o *MoveInOutUEDetails) GetMoveInUEs() []ValTargetUe

GetMoveInUEs returns the MoveInUEs field value if set, zero value otherwise.

func (*MoveInOutUEDetails) GetMoveInUEsOk

func (o *MoveInOutUEDetails) GetMoveInUEsOk() ([]ValTargetUe, bool)

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

func (*MoveInOutUEDetails) GetMoveOutUEs

func (o *MoveInOutUEDetails) GetMoveOutUEs() []ValTargetUe

GetMoveOutUEs returns the MoveOutUEs field value if set, zero value otherwise.

func (*MoveInOutUEDetails) GetMoveOutUEsOk

func (o *MoveInOutUEDetails) GetMoveOutUEsOk() ([]ValTargetUe, bool)

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

func (*MoveInOutUEDetails) HasMoveInUEs

func (o *MoveInOutUEDetails) HasMoveInUEs() bool

HasMoveInUEs returns a boolean if a field has been set.

func (*MoveInOutUEDetails) HasMoveOutUEs

func (o *MoveInOutUEDetails) HasMoveOutUEs() bool

HasMoveOutUEs returns a boolean if a field has been set.

func (MoveInOutUEDetails) MarshalJSON

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

func (*MoveInOutUEDetails) SetMoveInUEs

func (o *MoveInOutUEDetails) SetMoveInUEs(v []ValTargetUe)

SetMoveInUEs gets a reference to the given []ValTargetUe and assigns it to the MoveInUEs field.

func (*MoveInOutUEDetails) SetMoveOutUEs

func (o *MoveInOutUEDetails) SetMoveOutUEs(v []ValTargetUe)

SetMoveOutUEs gets a reference to the given []ValTargetUe and assigns it to the MoveOutUEs field.

func (MoveInOutUEDetails) ToMap

func (o MoveInOutUEDetails) 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 NotificationFlag

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

NotificationFlag Possible values are: - ACTIVATE: The event notification is activated. - DEACTIVATE: The event notification is deactivated and shall be muted. The available event(s) shall be stored. - RETRIEVAL: The event notification shall be sent to the NF service consumer(s), after that, is muted again.

func (*NotificationFlag) MarshalJSON

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

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

func (*NotificationFlag) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type NotificationMethod

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

NotificationMethod Possible values are: - PERIODIC - ONE_TIME - ON_EVENT_DETECTION

func (*NotificationMethod) MarshalJSON

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

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

func (*NotificationMethod) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

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 NullableAnalyticsEvent

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

func NewNullableAnalyticsEvent

func NewNullableAnalyticsEvent(val *AnalyticsEvent) *NullableAnalyticsEvent

func (NullableAnalyticsEvent) Get

func (NullableAnalyticsEvent) IsSet

func (v NullableAnalyticsEvent) IsSet() bool

func (NullableAnalyticsEvent) MarshalJSON

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

func (*NullableAnalyticsEvent) Set

func (*NullableAnalyticsEvent) UnmarshalJSON

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

func (*NullableAnalyticsEvent) Unset

func (v *NullableAnalyticsEvent) Unset()

type NullableBool

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

func NewNullableBool

func NewNullableBool(val *bool) *NullableBool

func (NullableBool) Get

func (v NullableBool) Get() *bool

func (NullableBool) IsSet

func (v NullableBool) IsSet() bool

func (NullableBool) MarshalJSON

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

func (*NullableBool) Set

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

func (*NullableBool) UnmarshalJSON

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

func (*NullableBool) Unset

func (v *NullableBool) Unset()

type NullableCivicAddress

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

func NewNullableCivicAddress

func NewNullableCivicAddress(val *CivicAddress) *NullableCivicAddress

func (NullableCivicAddress) Get

func (NullableCivicAddress) IsSet

func (v NullableCivicAddress) IsSet() bool

func (NullableCivicAddress) MarshalJSON

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

func (*NullableCivicAddress) Set

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

func (*NullableCivicAddress) UnmarshalJSON

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

func (*NullableCivicAddress) Unset

func (v *NullableCivicAddress) Unset()

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

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

func NewNullableEventSubscription

func NewNullableEventSubscription(val *EventSubscription) *NullableEventSubscription

func (NullableEventSubscription) Get

func (NullableEventSubscription) IsSet

func (v NullableEventSubscription) IsSet() bool

func (NullableEventSubscription) MarshalJSON

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

func (*NullableEventSubscription) Set

func (*NullableEventSubscription) UnmarshalJSON

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

func (*NullableEventSubscription) Unset

func (v *NullableEventSubscription) Unset()

type NullableFloat32

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

func NewNullableFloat32

func NewNullableFloat32(val *float32) *NullableFloat32

func (NullableFloat32) Get

func (v NullableFloat32) Get() *float32

func (NullableFloat32) IsSet

func (v NullableFloat32) IsSet() bool

func (NullableFloat32) MarshalJSON

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

func (*NullableFloat32) Set

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

func (*NullableFloat32) UnmarshalJSON

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

func (*NullableFloat32) Unset

func (v *NullableFloat32) Unset()

type NullableFloat64

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

func NewNullableFloat64

func NewNullableFloat64(val *float64) *NullableFloat64

func (NullableFloat64) Get

func (v NullableFloat64) Get() *float64

func (NullableFloat64) IsSet

func (v NullableFloat64) IsSet() bool

func (NullableFloat64) MarshalJSON

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

func (*NullableFloat64) Set

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

func (*NullableFloat64) UnmarshalJSON

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

func (*NullableFloat64) Unset

func (v *NullableFloat64) Unset()

type NullableGADShape

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

func NewNullableGADShape

func NewNullableGADShape(val *GADShape) *NullableGADShape

func (NullableGADShape) Get

func (v NullableGADShape) Get() *GADShape

func (NullableGADShape) IsSet

func (v NullableGADShape) IsSet() bool

func (NullableGADShape) MarshalJSON

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

func (*NullableGADShape) Set

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

func (*NullableGADShape) UnmarshalJSON

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

func (*NullableGADShape) Unset

func (v *NullableGADShape) Unset()

type NullableGNbId

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

func NewNullableGNbId

func NewNullableGNbId(val *GNbId) *NullableGNbId

func (NullableGNbId) Get

func (v NullableGNbId) Get() *GNbId

func (NullableGNbId) IsSet

func (v NullableGNbId) IsSet() bool

func (NullableGNbId) MarshalJSON

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

func (*NullableGNbId) Set

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

func (*NullableGNbId) UnmarshalJSON

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

func (*NullableGNbId) Unset

func (v *NullableGNbId) Unset()

type NullableGeographicArea

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

func NewNullableGeographicArea

func NewNullableGeographicArea(val *GeographicArea) *NullableGeographicArea

func (NullableGeographicArea) Get

func (NullableGeographicArea) IsSet

func (v NullableGeographicArea) IsSet() bool

func (NullableGeographicArea) MarshalJSON

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

func (*NullableGeographicArea) Set

func (*NullableGeographicArea) UnmarshalJSON

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

func (*NullableGeographicArea) Unset

func (v *NullableGeographicArea) Unset()

type NullableGeographicalCoordinates

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

func (NullableGeographicalCoordinates) Get

func (NullableGeographicalCoordinates) IsSet

func (NullableGeographicalCoordinates) MarshalJSON

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

func (*NullableGeographicalCoordinates) Set

func (*NullableGeographicalCoordinates) UnmarshalJSON

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

func (*NullableGeographicalCoordinates) Unset

type NullableGlobalRanNodeId

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

func NewNullableGlobalRanNodeId

func NewNullableGlobalRanNodeId(val *GlobalRanNodeId) *NullableGlobalRanNodeId

func (NullableGlobalRanNodeId) Get

func (NullableGlobalRanNodeId) IsSet

func (v NullableGlobalRanNodeId) IsSet() bool

func (NullableGlobalRanNodeId) MarshalJSON

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

func (*NullableGlobalRanNodeId) Set

func (*NullableGlobalRanNodeId) UnmarshalJSON

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

func (*NullableGlobalRanNodeId) Unset

func (v *NullableGlobalRanNodeId) Unset()

type NullableHorizontalVelocity

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

func NewNullableHorizontalVelocity

func NewNullableHorizontalVelocity(val *HorizontalVelocity) *NullableHorizontalVelocity

func (NullableHorizontalVelocity) Get

func (NullableHorizontalVelocity) IsSet

func (v NullableHorizontalVelocity) IsSet() bool

func (NullableHorizontalVelocity) MarshalJSON

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

func (*NullableHorizontalVelocity) Set

func (*NullableHorizontalVelocity) UnmarshalJSON

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

func (*NullableHorizontalVelocity) Unset

func (v *NullableHorizontalVelocity) Unset()

type NullableHorizontalVelocityWithUncertainty

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

func (NullableHorizontalVelocityWithUncertainty) Get

func (NullableHorizontalVelocityWithUncertainty) IsSet

func (NullableHorizontalVelocityWithUncertainty) MarshalJSON

func (*NullableHorizontalVelocityWithUncertainty) Set

func (*NullableHorizontalVelocityWithUncertainty) UnmarshalJSON

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

func (*NullableHorizontalVelocityWithUncertainty) Unset

type NullableHorizontalWithVerticalVelocity

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

func (NullableHorizontalWithVerticalVelocity) Get

func (NullableHorizontalWithVerticalVelocity) IsSet

func (NullableHorizontalWithVerticalVelocity) MarshalJSON

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

func (*NullableHorizontalWithVerticalVelocity) Set

func (*NullableHorizontalWithVerticalVelocity) UnmarshalJSON

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

func (*NullableHorizontalWithVerticalVelocity) Unset

type NullableHorizontalWithVerticalVelocityAndUncertainty

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

func (NullableHorizontalWithVerticalVelocityAndUncertainty) Get

func (NullableHorizontalWithVerticalVelocityAndUncertainty) IsSet

func (NullableHorizontalWithVerticalVelocityAndUncertainty) MarshalJSON

func (*NullableHorizontalWithVerticalVelocityAndUncertainty) Set

func (*NullableHorizontalWithVerticalVelocityAndUncertainty) UnmarshalJSON

func (*NullableHorizontalWithVerticalVelocityAndUncertainty) Unset

type NullableIdentityFilter

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

func NewNullableIdentityFilter

func NewNullableIdentityFilter(val *IdentityFilter) *NullableIdentityFilter

func (NullableIdentityFilter) Get

func (NullableIdentityFilter) IsSet

func (v NullableIdentityFilter) IsSet() bool

func (NullableIdentityFilter) MarshalJSON

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

func (*NullableIdentityFilter) Set

func (*NullableIdentityFilter) UnmarshalJSON

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

func (*NullableIdentityFilter) Unset

func (v *NullableIdentityFilter) 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 NullableLMInformation

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

func NewNullableLMInformation

func NewNullableLMInformation(val *LMInformation) *NullableLMInformation

func (NullableLMInformation) Get

func (NullableLMInformation) IsSet

func (v NullableLMInformation) IsSet() bool

func (NullableLMInformation) MarshalJSON

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

func (*NullableLMInformation) Set

func (v *NullableLMInformation) Set(val *LMInformation)

func (*NullableLMInformation) UnmarshalJSON

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

func (*NullableLMInformation) Unset

func (v *NullableLMInformation) Unset()

type NullableLdrType

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

func NewNullableLdrType

func NewNullableLdrType(val *LdrType) *NullableLdrType

func (NullableLdrType) Get

func (v NullableLdrType) Get() *LdrType

func (NullableLdrType) IsSet

func (v NullableLdrType) IsSet() bool

func (NullableLdrType) MarshalJSON

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

func (*NullableLdrType) Set

func (v *NullableLdrType) Set(val *LdrType)

func (*NullableLdrType) UnmarshalJSON

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

func (*NullableLdrType) Unset

func (v *NullableLdrType) Unset()

type NullableLocDevNotification

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

func NewNullableLocDevNotification

func NewNullableLocDevNotification(val *LocDevNotification) *NullableLocDevNotification

func (NullableLocDevNotification) Get

func (NullableLocDevNotification) IsSet

func (v NullableLocDevNotification) IsSet() bool

func (NullableLocDevNotification) MarshalJSON

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

func (*NullableLocDevNotification) Set

func (*NullableLocDevNotification) UnmarshalJSON

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

func (*NullableLocDevNotification) Unset

func (v *NullableLocDevNotification) Unset()

type NullableLocal2dPointUncertaintyEllipse

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

func (NullableLocal2dPointUncertaintyEllipse) Get

func (NullableLocal2dPointUncertaintyEllipse) IsSet

func (NullableLocal2dPointUncertaintyEllipse) MarshalJSON

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

func (*NullableLocal2dPointUncertaintyEllipse) Set

func (*NullableLocal2dPointUncertaintyEllipse) UnmarshalJSON

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

func (*NullableLocal2dPointUncertaintyEllipse) Unset

type NullableLocal3dPointUncertaintyEllipsoid

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

func (NullableLocal3dPointUncertaintyEllipsoid) Get

func (NullableLocal3dPointUncertaintyEllipsoid) IsSet

func (NullableLocal3dPointUncertaintyEllipsoid) MarshalJSON

func (*NullableLocal3dPointUncertaintyEllipsoid) Set

func (*NullableLocal3dPointUncertaintyEllipsoid) UnmarshalJSON

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

func (*NullableLocal3dPointUncertaintyEllipsoid) Unset

type NullableLocalOrigin

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

func NewNullableLocalOrigin

func NewNullableLocalOrigin(val *LocalOrigin) *NullableLocalOrigin

func (NullableLocalOrigin) Get

func (NullableLocalOrigin) IsSet

func (v NullableLocalOrigin) IsSet() bool

func (NullableLocalOrigin) MarshalJSON

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

func (*NullableLocalOrigin) Set

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

func (*NullableLocalOrigin) UnmarshalJSON

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

func (*NullableLocalOrigin) Unset

func (v *NullableLocalOrigin) Unset()

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

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

func (NullableLocationAreaMonReport) Get

func (NullableLocationAreaMonReport) IsSet

func (NullableLocationAreaMonReport) MarshalJSON

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

func (*NullableLocationAreaMonReport) Set

func (*NullableLocationAreaMonReport) UnmarshalJSON

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

func (*NullableLocationAreaMonReport) Unset

func (v *NullableLocationAreaMonReport) Unset()

type NullableLocationDevMonReport

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

func NewNullableLocationDevMonReport

func NewNullableLocationDevMonReport(val *LocationDevMonReport) *NullableLocationDevMonReport

func (NullableLocationDevMonReport) Get

func (NullableLocationDevMonReport) IsSet

func (NullableLocationDevMonReport) MarshalJSON

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

func (*NullableLocationDevMonReport) Set

func (*NullableLocationDevMonReport) UnmarshalJSON

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

func (*NullableLocationDevMonReport) Unset

func (v *NullableLocationDevMonReport) Unset()

type NullableLocationInfo

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

func NewNullableLocationInfo

func NewNullableLocationInfo(val *LocationInfo) *NullableLocationInfo

func (NullableLocationInfo) Get

func (NullableLocationInfo) IsSet

func (v NullableLocationInfo) IsSet() bool

func (NullableLocationInfo) MarshalJSON

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

func (*NullableLocationInfo) Set

func (v *NullableLocationInfo) Set(val *LocationInfo)

func (*NullableLocationInfo) UnmarshalJSON

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

func (*NullableLocationInfo) Unset

func (v *NullableLocationInfo) Unset()

type NullableLocationInfoCriteria

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

func NewNullableLocationInfoCriteria

func NewNullableLocationInfoCriteria(val *LocationInfoCriteria) *NullableLocationInfoCriteria

func (NullableLocationInfoCriteria) Get

func (NullableLocationInfoCriteria) IsSet

func (NullableLocationInfoCriteria) MarshalJSON

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

func (*NullableLocationInfoCriteria) Set

func (*NullableLocationInfoCriteria) UnmarshalJSON

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

func (*NullableLocationInfoCriteria) Unset

func (v *NullableLocationInfoCriteria) Unset()

type NullableMessageFilter

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

func NewNullableMessageFilter

func NewNullableMessageFilter(val *MessageFilter) *NullableMessageFilter

func (NullableMessageFilter) Get

func (NullableMessageFilter) IsSet

func (v NullableMessageFilter) IsSet() bool

func (NullableMessageFilter) MarshalJSON

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

func (*NullableMessageFilter) Set

func (v *NullableMessageFilter) Set(val *MessageFilter)

func (*NullableMessageFilter) UnmarshalJSON

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

func (*NullableMessageFilter) Unset

func (v *NullableMessageFilter) 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 NullableMonLocAreaInterestFltr

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

func (NullableMonLocAreaInterestFltr) Get

func (NullableMonLocAreaInterestFltr) IsSet

func (NullableMonLocAreaInterestFltr) MarshalJSON

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

func (*NullableMonLocAreaInterestFltr) Set

func (*NullableMonLocAreaInterestFltr) UnmarshalJSON

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

func (*NullableMonLocAreaInterestFltr) Unset

func (v *NullableMonLocAreaInterestFltr) Unset()

type NullableMonLocTriggerEvent

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

func NewNullableMonLocTriggerEvent

func NewNullableMonLocTriggerEvent(val *MonLocTriggerEvent) *NullableMonLocTriggerEvent

func (NullableMonLocTriggerEvent) Get

func (NullableMonLocTriggerEvent) IsSet

func (v NullableMonLocTriggerEvent) IsSet() bool

func (NullableMonLocTriggerEvent) MarshalJSON

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

func (*NullableMonLocTriggerEvent) Set

func (*NullableMonLocTriggerEvent) UnmarshalJSON

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

func (*NullableMonLocTriggerEvent) Unset

func (v *NullableMonLocTriggerEvent) Unset()

type NullableMonitorEvents

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

func NewNullableMonitorEvents

func NewNullableMonitorEvents(val *MonitorEvents) *NullableMonitorEvents

func (NullableMonitorEvents) Get

func (NullableMonitorEvents) IsSet

func (v NullableMonitorEvents) IsSet() bool

func (NullableMonitorEvents) MarshalJSON

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

func (*NullableMonitorEvents) Set

func (v *NullableMonitorEvents) Set(val *MonitorEvents)

func (*NullableMonitorEvents) UnmarshalJSON

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

func (*NullableMonitorEvents) Unset

func (v *NullableMonitorEvents) Unset()

type NullableMonitorEventsReport

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

func NewNullableMonitorEventsReport

func NewNullableMonitorEventsReport(val *MonitorEventsReport) *NullableMonitorEventsReport

func (NullableMonitorEventsReport) Get

func (NullableMonitorEventsReport) IsSet

func (NullableMonitorEventsReport) MarshalJSON

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

func (*NullableMonitorEventsReport) Set

func (*NullableMonitorEventsReport) UnmarshalJSON

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

func (*NullableMonitorEventsReport) Unset

func (v *NullableMonitorEventsReport) Unset()

type NullableMonitorFilter

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

func NewNullableMonitorFilter

func NewNullableMonitorFilter(val *MonitorFilter) *NullableMonitorFilter

func (NullableMonitorFilter) Get

func (NullableMonitorFilter) IsSet

func (v NullableMonitorFilter) IsSet() bool

func (NullableMonitorFilter) MarshalJSON

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

func (*NullableMonitorFilter) Set

func (v *NullableMonitorFilter) Set(val *MonitorFilter)

func (*NullableMonitorFilter) UnmarshalJSON

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

func (*NullableMonitorFilter) Unset

func (v *NullableMonitorFilter) Unset()

type NullableMonitorLocationInterestFilter

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

func (NullableMonitorLocationInterestFilter) Get

func (NullableMonitorLocationInterestFilter) IsSet

func (NullableMonitorLocationInterestFilter) MarshalJSON

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

func (*NullableMonitorLocationInterestFilter) Set

func (*NullableMonitorLocationInterestFilter) UnmarshalJSON

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

func (*NullableMonitorLocationInterestFilter) Unset

type NullableMonitoringType

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

func NewNullableMonitoringType

func NewNullableMonitoringType(val *MonitoringType) *NullableMonitoringType

func (NullableMonitoringType) Get

func (NullableMonitoringType) IsSet

func (v NullableMonitoringType) IsSet() bool

func (NullableMonitoringType) MarshalJSON

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

func (*NullableMonitoringType) Set

func (*NullableMonitoringType) UnmarshalJSON

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

func (*NullableMonitoringType) Unset

func (v *NullableMonitoringType) Unset()

type NullableMoveInOutUEDetails

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

func NewNullableMoveInOutUEDetails

func NewNullableMoveInOutUEDetails(val *MoveInOutUEDetails) *NullableMoveInOutUEDetails

func (NullableMoveInOutUEDetails) Get

func (NullableMoveInOutUEDetails) IsSet

func (v NullableMoveInOutUEDetails) IsSet() bool

func (NullableMoveInOutUEDetails) MarshalJSON

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

func (*NullableMoveInOutUEDetails) Set

func (*NullableMoveInOutUEDetails) UnmarshalJSON

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

func (*NullableMoveInOutUEDetails) Unset

func (v *NullableMoveInOutUEDetails) 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 NullableNotificationFlag

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

func NewNullableNotificationFlag

func NewNullableNotificationFlag(val *NotificationFlag) *NullableNotificationFlag

func (NullableNotificationFlag) Get

func (NullableNotificationFlag) IsSet

func (v NullableNotificationFlag) IsSet() bool

func (NullableNotificationFlag) MarshalJSON

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

func (*NullableNotificationFlag) Set

func (*NullableNotificationFlag) UnmarshalJSON

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

func (*NullableNotificationFlag) Unset

func (v *NullableNotificationFlag) Unset()

type NullableNotificationMethod

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

func NewNullableNotificationMethod

func NewNullableNotificationMethod(val *NotificationMethod) *NullableNotificationMethod

func (NullableNotificationMethod) Get

func (NullableNotificationMethod) IsSet

func (v NullableNotificationMethod) IsSet() bool

func (NullableNotificationMethod) MarshalJSON

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

func (*NullableNotificationMethod) Set

func (*NullableNotificationMethod) UnmarshalJSON

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

func (*NullableNotificationMethod) Unset

func (v *NullableNotificationMethod) Unset()

type NullablePartitioningCriteria

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

func NewNullablePartitioningCriteria

func NewNullablePartitioningCriteria(val *PartitioningCriteria) *NullablePartitioningCriteria

func (NullablePartitioningCriteria) Get

func (NullablePartitioningCriteria) IsSet

func (NullablePartitioningCriteria) MarshalJSON

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

func (*NullablePartitioningCriteria) Set

func (*NullablePartitioningCriteria) UnmarshalJSON

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

func (*NullablePartitioningCriteria) Unset

func (v *NullablePartitioningCriteria) Unset()

type NullablePduSessionType

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

func NewNullablePduSessionType

func NewNullablePduSessionType(val *PduSessionType) *NullablePduSessionType

func (NullablePduSessionType) Get

func (NullablePduSessionType) IsSet

func (v NullablePduSessionType) IsSet() bool

func (NullablePduSessionType) MarshalJSON

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

func (*NullablePduSessionType) Set

func (*NullablePduSessionType) UnmarshalJSON

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

func (*NullablePduSessionType) Unset

func (v *NullablePduSessionType) Unset()

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

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

func NewNullableProfileDoc

func NewNullableProfileDoc(val *ProfileDoc) *NullableProfileDoc

func (NullableProfileDoc) Get

func (v NullableProfileDoc) Get() *ProfileDoc

func (NullableProfileDoc) IsSet

func (v NullableProfileDoc) IsSet() bool

func (NullableProfileDoc) MarshalJSON

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

func (*NullableProfileDoc) Set

func (v *NullableProfileDoc) Set(val *ProfileDoc)

func (*NullableProfileDoc) UnmarshalJSON

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

func (*NullableProfileDoc) Unset

func (v *NullableProfileDoc) Unset()

type NullableReferenceUEDetail

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

func NewNullableReferenceUEDetail

func NewNullableReferenceUEDetail(val *ReferenceUEDetail) *NullableReferenceUEDetail

func (NullableReferenceUEDetail) Get

func (NullableReferenceUEDetail) IsSet

func (v NullableReferenceUEDetail) IsSet() bool

func (NullableReferenceUEDetail) MarshalJSON

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

func (*NullableReferenceUEDetail) Set

func (*NullableReferenceUEDetail) UnmarshalJSON

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

func (*NullableReferenceUEDetail) Unset

func (v *NullableReferenceUEDetail) 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 NullableReportingInformation

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

func NewNullableReportingInformation

func NewNullableReportingInformation(val *ReportingInformation) *NullableReportingInformation

func (NullableReportingInformation) Get

func (NullableReportingInformation) IsSet

func (NullableReportingInformation) MarshalJSON

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

func (*NullableReportingInformation) Set

func (*NullableReportingInformation) UnmarshalJSON

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

func (*NullableReportingInformation) Unset

func (v *NullableReportingInformation) Unset()

type NullableSEALEvent

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

func NewNullableSEALEvent

func NewNullableSEALEvent(val *SEALEvent) *NullableSEALEvent

func (NullableSEALEvent) Get

func (v NullableSEALEvent) Get() *SEALEvent

func (NullableSEALEvent) IsSet

func (v NullableSEALEvent) IsSet() bool

func (NullableSEALEvent) MarshalJSON

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

func (*NullableSEALEvent) Set

func (v *NullableSEALEvent) Set(val *SEALEvent)

func (*NullableSEALEvent) UnmarshalJSON

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

func (*NullableSEALEvent) Unset

func (v *NullableSEALEvent) Unset()

type NullableSEALEventDetail

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

func NewNullableSEALEventDetail

func NewNullableSEALEventDetail(val *SEALEventDetail) *NullableSEALEventDetail

func (NullableSEALEventDetail) Get

func (NullableSEALEventDetail) IsSet

func (v NullableSEALEventDetail) IsSet() bool

func (NullableSEALEventDetail) MarshalJSON

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

func (*NullableSEALEventDetail) Set

func (*NullableSEALEventDetail) UnmarshalJSON

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

func (*NullableSEALEventDetail) Unset

func (v *NullableSEALEventDetail) Unset()

type NullableSEALEventNotification

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

func (NullableSEALEventNotification) Get

func (NullableSEALEventNotification) IsSet

func (NullableSEALEventNotification) MarshalJSON

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

func (*NullableSEALEventNotification) Set

func (*NullableSEALEventNotification) UnmarshalJSON

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

func (*NullableSEALEventNotification) Unset

func (v *NullableSEALEventNotification) Unset()

type NullableSEALEventSubscription

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

func (NullableSEALEventSubscription) Get

func (NullableSEALEventSubscription) IsSet

func (NullableSEALEventSubscription) MarshalJSON

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

func (*NullableSEALEventSubscription) Set

func (*NullableSEALEventSubscription) UnmarshalJSON

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

func (*NullableSEALEventSubscription) Unset

func (v *NullableSEALEventSubscription) Unset()

type NullableSEALEventSubscriptionPatch

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

func (NullableSEALEventSubscriptionPatch) Get

func (NullableSEALEventSubscriptionPatch) IsSet

func (NullableSEALEventSubscriptionPatch) MarshalJSON

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

func (*NullableSEALEventSubscriptionPatch) Set

func (*NullableSEALEventSubscriptionPatch) UnmarshalJSON

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

func (*NullableSEALEventSubscriptionPatch) Unset

type NullableScheduledCommunicationTime

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

func (NullableScheduledCommunicationTime) Get

func (NullableScheduledCommunicationTime) IsSet

func (NullableScheduledCommunicationTime) MarshalJSON

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

func (*NullableScheduledCommunicationTime) Set

func (*NullableScheduledCommunicationTime) UnmarshalJSON

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

func (*NullableScheduledCommunicationTime) Unset

type NullableString

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

func NewNullableString

func NewNullableString(val *string) *NullableString

func (NullableString) Get

func (v NullableString) Get() *string

func (NullableString) IsSet

func (v NullableString) IsSet() bool

func (NullableString) MarshalJSON

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

func (*NullableString) Set

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

func (*NullableString) UnmarshalJSON

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

func (*NullableString) Unset

func (v *NullableString) Unset()

type NullableSupportedGADShapes

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

func NewNullableSupportedGADShapes

func NewNullableSupportedGADShapes(val *SupportedGADShapes) *NullableSupportedGADShapes

func (NullableSupportedGADShapes) Get

func (NullableSupportedGADShapes) IsSet

func (v NullableSupportedGADShapes) IsSet() bool

func (NullableSupportedGADShapes) MarshalJSON

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

func (*NullableSupportedGADShapes) Set

func (*NullableSupportedGADShapes) UnmarshalJSON

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

func (*NullableSupportedGADShapes) Unset

func (v *NullableSupportedGADShapes) Unset()

type NullableTai

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

func NewNullableTai

func NewNullableTai(val *Tai) *NullableTai

func (NullableTai) Get

func (v NullableTai) Get() *Tai

func (NullableTai) IsSet

func (v NullableTai) IsSet() bool

func (NullableTai) MarshalJSON

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

func (*NullableTai) Set

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

func (*NullableTai) UnmarshalJSON

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

func (*NullableTai) Unset

func (v *NullableTai) Unset()

type NullableTempGroupInfo

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

func NewNullableTempGroupInfo

func NewNullableTempGroupInfo(val *TempGroupInfo) *NullableTempGroupInfo

func (NullableTempGroupInfo) Get

func (NullableTempGroupInfo) IsSet

func (v NullableTempGroupInfo) IsSet() bool

func (NullableTempGroupInfo) MarshalJSON

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

func (*NullableTempGroupInfo) Set

func (v *NullableTempGroupInfo) Set(val *TempGroupInfo)

func (*NullableTempGroupInfo) UnmarshalJSON

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

func (*NullableTempGroupInfo) Unset

func (v *NullableTempGroupInfo) 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 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 NullableVALGroupDocument

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

func NewNullableVALGroupDocument

func NewNullableVALGroupDocument(val *VALGroupDocument) *NullableVALGroupDocument

func (NullableVALGroupDocument) Get

func (NullableVALGroupDocument) IsSet

func (v NullableVALGroupDocument) IsSet() bool

func (NullableVALGroupDocument) MarshalJSON

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

func (*NullableVALGroupDocument) Set

func (*NullableVALGroupDocument) UnmarshalJSON

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

func (*NullableVALGroupDocument) Unset

func (v *NullableVALGroupDocument) Unset()

type NullableVALGroupFilter

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

func NewNullableVALGroupFilter

func NewNullableVALGroupFilter(val *VALGroupFilter) *NullableVALGroupFilter

func (NullableVALGroupFilter) Get

func (NullableVALGroupFilter) IsSet

func (v NullableVALGroupFilter) IsSet() bool

func (NullableVALGroupFilter) MarshalJSON

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

func (*NullableVALGroupFilter) Set

func (*NullableVALGroupFilter) UnmarshalJSON

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

func (*NullableVALGroupFilter) Unset

func (v *NullableVALGroupFilter) Unset()

type NullableValTargetUe

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

func NewNullableValTargetUe

func NewNullableValTargetUe(val *ValTargetUe) *NullableValTargetUe

func (NullableValTargetUe) Get

func (NullableValTargetUe) IsSet

func (v NullableValTargetUe) IsSet() bool

func (NullableValTargetUe) MarshalJSON

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

func (*NullableValTargetUe) Set

func (v *NullableValTargetUe) Set(val *ValTargetUe)

func (*NullableValTargetUe) UnmarshalJSON

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

func (*NullableValTargetUe) Unset

func (v *NullableValTargetUe) Unset()

type NullableValidityConditions

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

func NewNullableValidityConditions

func NewNullableValidityConditions(val *ValidityConditions) *NullableValidityConditions

func (NullableValidityConditions) Get

func (NullableValidityConditions) IsSet

func (v NullableValidityConditions) IsSet() bool

func (NullableValidityConditions) MarshalJSON

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

func (*NullableValidityConditions) Set

func (*NullableValidityConditions) UnmarshalJSON

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

func (*NullableValidityConditions) Unset

func (v *NullableValidityConditions) 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 NullableWebsockNotifConfig

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

func NewNullableWebsockNotifConfig

func NewNullableWebsockNotifConfig(val *WebsockNotifConfig) *NullableWebsockNotifConfig

func (NullableWebsockNotifConfig) Get

func (NullableWebsockNotifConfig) IsSet

func (v NullableWebsockNotifConfig) IsSet() bool

func (NullableWebsockNotifConfig) MarshalJSON

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

func (*NullableWebsockNotifConfig) Set

func (*NullableWebsockNotifConfig) UnmarshalJSON

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

func (*NullableWebsockNotifConfig) Unset

func (v *NullableWebsockNotifConfig) Unset()

type PartitioningCriteria

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

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

func (*PartitioningCriteria) MarshalJSON

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

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

func (*PartitioningCriteria) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type PduSessionType

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

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

func (*PduSessionType) MarshalJSON

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

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

func (*PduSessionType) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

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

type ProfileDoc struct {
	// Profile information associated with the valUserId or valUeId.
	ProfileInformation string              `json:"profileInformation"`
	ValTgtUe           NullableValTargetUe `json:"valTgtUe"`
}

ProfileDoc Represents Profile information associated with a VAL user ID or a VAL UE ID.

func NewProfileDoc

func NewProfileDoc(profileInformation string, valTgtUe NullableValTargetUe) *ProfileDoc

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

func NewProfileDocWithDefaults

func NewProfileDocWithDefaults() *ProfileDoc

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

func (*ProfileDoc) GetProfileInformation

func (o *ProfileDoc) GetProfileInformation() string

GetProfileInformation returns the ProfileInformation field value

func (*ProfileDoc) GetProfileInformationOk

func (o *ProfileDoc) GetProfileInformationOk() (*string, bool)

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

func (*ProfileDoc) GetValTgtUe

func (o *ProfileDoc) GetValTgtUe() ValTargetUe

GetValTgtUe returns the ValTgtUe field value If the value is explicit nil, the zero value for ValTargetUe will be returned

func (*ProfileDoc) GetValTgtUeOk

func (o *ProfileDoc) GetValTgtUeOk() (*ValTargetUe, bool)

GetValTgtUeOk returns a tuple with the ValTgtUe 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 (ProfileDoc) MarshalJSON

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

func (*ProfileDoc) SetProfileInformation

func (o *ProfileDoc) SetProfileInformation(v string)

SetProfileInformation sets field value

func (*ProfileDoc) SetValTgtUe

func (o *ProfileDoc) SetValTgtUe(v ValTargetUe)

SetValTgtUe sets field value

func (ProfileDoc) ToMap

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

func (*ProfileDoc) UnmarshalJSON

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

type ReferenceUEDetail

type ReferenceUEDetail struct {
	ValTgtUe NullableValTargetUe `json:"valTgtUe"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	ProxRange int32 `json:"proxRange"`
	// string with format 'float' as defined in OpenAPI.
	ProxRangeFrac *float32 `json:"proxRangeFrac,omitempty"`
}

ReferenceUEDetail Reference UE details, where the UEs moving in and out to be monitored.

func NewReferenceUEDetail

func NewReferenceUEDetail(valTgtUe NullableValTargetUe, proxRange int32) *ReferenceUEDetail

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

func NewReferenceUEDetailWithDefaults

func NewReferenceUEDetailWithDefaults() *ReferenceUEDetail

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

func (*ReferenceUEDetail) GetProxRange

func (o *ReferenceUEDetail) GetProxRange() int32

GetProxRange returns the ProxRange field value

func (*ReferenceUEDetail) GetProxRangeFrac

func (o *ReferenceUEDetail) GetProxRangeFrac() float32

GetProxRangeFrac returns the ProxRangeFrac field value if set, zero value otherwise.

func (*ReferenceUEDetail) GetProxRangeFracOk

func (o *ReferenceUEDetail) GetProxRangeFracOk() (*float32, bool)

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

func (*ReferenceUEDetail) GetProxRangeOk

func (o *ReferenceUEDetail) GetProxRangeOk() (*int32, bool)

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

func (*ReferenceUEDetail) GetValTgtUe

func (o *ReferenceUEDetail) GetValTgtUe() ValTargetUe

GetValTgtUe returns the ValTgtUe field value If the value is explicit nil, the zero value for ValTargetUe will be returned

func (*ReferenceUEDetail) GetValTgtUeOk

func (o *ReferenceUEDetail) GetValTgtUeOk() (*ValTargetUe, bool)

GetValTgtUeOk returns a tuple with the ValTgtUe 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 (*ReferenceUEDetail) HasProxRangeFrac

func (o *ReferenceUEDetail) HasProxRangeFrac() bool

HasProxRangeFrac returns a boolean if a field has been set.

func (ReferenceUEDetail) MarshalJSON

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

func (*ReferenceUEDetail) SetProxRange

func (o *ReferenceUEDetail) SetProxRange(v int32)

SetProxRange sets field value

func (*ReferenceUEDetail) SetProxRangeFrac

func (o *ReferenceUEDetail) SetProxRangeFrac(v float32)

SetProxRangeFrac gets a reference to the given float32 and assigns it to the ProxRangeFrac field.

func (*ReferenceUEDetail) SetValTgtUe

func (o *ReferenceUEDetail) SetValTgtUe(v ValTargetUe)

SetValTgtUe sets field value

func (ReferenceUEDetail) ToMap

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

func (*ReferenceUEDetail) UnmarshalJSON

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

type ReportingInformation struct {
	ImmRep      *bool               `json:"immRep,omitempty"`
	NotifMethod *NotificationMethod `json:"notifMethod,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	MaxReportNbr *int32 `json:"maxReportNbr,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	MonDur *time.Time `json:"monDur,omitempty"`
	// indicating a time in seconds.
	RepPeriod *int32 `json:"repPeriod,omitempty"`
	// Unsigned integer indicating Sampling Ratio (see clauses 4.15.1 of 3GPP TS 23.502), expressed in percent.
	SampRatio *int32 `json:"sampRatio,omitempty"`
	// Criteria for partitioning the UEs before applying the sampling ratio.
	PartitionCriteria []PartitioningCriteria `json:"partitionCriteria,omitempty"`
	// indicating a time in seconds.
	GrpRepTime *int32            `json:"grpRepTime,omitempty"`
	NotifFlag  *NotificationFlag `json:"notifFlag,omitempty"`
}

ReportingInformation Represents the type of reporting that the subscription requires.

func NewReportingInformation

func NewReportingInformation() *ReportingInformation

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

func NewReportingInformationWithDefaults

func NewReportingInformationWithDefaults() *ReportingInformation

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

func (*ReportingInformation) GetGrpRepTime

func (o *ReportingInformation) GetGrpRepTime() int32

GetGrpRepTime returns the GrpRepTime field value if set, zero value otherwise.

func (*ReportingInformation) GetGrpRepTimeOk

func (o *ReportingInformation) GetGrpRepTimeOk() (*int32, bool)

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

func (*ReportingInformation) GetImmRep

func (o *ReportingInformation) GetImmRep() bool

GetImmRep returns the ImmRep field value if set, zero value otherwise.

func (*ReportingInformation) GetImmRepOk

func (o *ReportingInformation) GetImmRepOk() (*bool, bool)

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

func (*ReportingInformation) GetMaxReportNbr

func (o *ReportingInformation) GetMaxReportNbr() int32

GetMaxReportNbr returns the MaxReportNbr field value if set, zero value otherwise.

func (*ReportingInformation) GetMaxReportNbrOk

func (o *ReportingInformation) GetMaxReportNbrOk() (*int32, bool)

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

func (*ReportingInformation) GetMonDur

func (o *ReportingInformation) GetMonDur() time.Time

GetMonDur returns the MonDur field value if set, zero value otherwise.

func (*ReportingInformation) GetMonDurOk

func (o *ReportingInformation) GetMonDurOk() (*time.Time, bool)

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

func (*ReportingInformation) GetNotifFlag

func (o *ReportingInformation) GetNotifFlag() NotificationFlag

GetNotifFlag returns the NotifFlag field value if set, zero value otherwise.

func (*ReportingInformation) GetNotifFlagOk

func (o *ReportingInformation) GetNotifFlagOk() (*NotificationFlag, bool)

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

func (*ReportingInformation) GetNotifMethod

func (o *ReportingInformation) GetNotifMethod() NotificationMethod

GetNotifMethod returns the NotifMethod field value if set, zero value otherwise.

func (*ReportingInformation) GetNotifMethodOk

func (o *ReportingInformation) GetNotifMethodOk() (*NotificationMethod, bool)

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

func (*ReportingInformation) GetPartitionCriteria

func (o *ReportingInformation) GetPartitionCriteria() []PartitioningCriteria

GetPartitionCriteria returns the PartitionCriteria field value if set, zero value otherwise.

func (*ReportingInformation) GetPartitionCriteriaOk

func (o *ReportingInformation) GetPartitionCriteriaOk() ([]PartitioningCriteria, bool)

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

func (*ReportingInformation) GetRepPeriod

func (o *ReportingInformation) GetRepPeriod() int32

GetRepPeriod returns the RepPeriod field value if set, zero value otherwise.

func (*ReportingInformation) GetRepPeriodOk

func (o *ReportingInformation) GetRepPeriodOk() (*int32, bool)

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

func (*ReportingInformation) GetSampRatio

func (o *ReportingInformation) GetSampRatio() int32

GetSampRatio returns the SampRatio field value if set, zero value otherwise.

func (*ReportingInformation) GetSampRatioOk

func (o *ReportingInformation) GetSampRatioOk() (*int32, bool)

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

func (*ReportingInformation) HasGrpRepTime

func (o *ReportingInformation) HasGrpRepTime() bool

HasGrpRepTime returns a boolean if a field has been set.

func (*ReportingInformation) HasImmRep

func (o *ReportingInformation) HasImmRep() bool

HasImmRep returns a boolean if a field has been set.

func (*ReportingInformation) HasMaxReportNbr

func (o *ReportingInformation) HasMaxReportNbr() bool

HasMaxReportNbr returns a boolean if a field has been set.

func (*ReportingInformation) HasMonDur

func (o *ReportingInformation) HasMonDur() bool

HasMonDur returns a boolean if a field has been set.

func (*ReportingInformation) HasNotifFlag

func (o *ReportingInformation) HasNotifFlag() bool

HasNotifFlag returns a boolean if a field has been set.

func (*ReportingInformation) HasNotifMethod

func (o *ReportingInformation) HasNotifMethod() bool

HasNotifMethod returns a boolean if a field has been set.

func (*ReportingInformation) HasPartitionCriteria

func (o *ReportingInformation) HasPartitionCriteria() bool

HasPartitionCriteria returns a boolean if a field has been set.

func (*ReportingInformation) HasRepPeriod

func (o *ReportingInformation) HasRepPeriod() bool

HasRepPeriod returns a boolean if a field has been set.

func (*ReportingInformation) HasSampRatio

func (o *ReportingInformation) HasSampRatio() bool

HasSampRatio returns a boolean if a field has been set.

func (ReportingInformation) MarshalJSON

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

func (*ReportingInformation) SetGrpRepTime

func (o *ReportingInformation) SetGrpRepTime(v int32)

SetGrpRepTime gets a reference to the given int32 and assigns it to the GrpRepTime field.

func (*ReportingInformation) SetImmRep

func (o *ReportingInformation) SetImmRep(v bool)

SetImmRep gets a reference to the given bool and assigns it to the ImmRep field.

func (*ReportingInformation) SetMaxReportNbr

func (o *ReportingInformation) SetMaxReportNbr(v int32)

SetMaxReportNbr gets a reference to the given int32 and assigns it to the MaxReportNbr field.

func (*ReportingInformation) SetMonDur

func (o *ReportingInformation) SetMonDur(v time.Time)

SetMonDur gets a reference to the given time.Time and assigns it to the MonDur field.

func (*ReportingInformation) SetNotifFlag

func (o *ReportingInformation) SetNotifFlag(v NotificationFlag)

SetNotifFlag gets a reference to the given NotificationFlag and assigns it to the NotifFlag field.

func (*ReportingInformation) SetNotifMethod

func (o *ReportingInformation) SetNotifMethod(v NotificationMethod)

SetNotifMethod gets a reference to the given NotificationMethod and assigns it to the NotifMethod field.

func (*ReportingInformation) SetPartitionCriteria

func (o *ReportingInformation) SetPartitionCriteria(v []PartitioningCriteria)

SetPartitionCriteria gets a reference to the given []PartitioningCriteria and assigns it to the PartitionCriteria field.

func (*ReportingInformation) SetRepPeriod

func (o *ReportingInformation) SetRepPeriod(v int32)

SetRepPeriod gets a reference to the given int32 and assigns it to the RepPeriod field.

func (*ReportingInformation) SetSampRatio

func (o *ReportingInformation) SetSampRatio(v int32)

SetSampRatio gets a reference to the given int32 and assigns it to the SampRatio field.

func (ReportingInformation) ToMap

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

type SEALEvent

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

SEALEvent Possible values are: - LM_LOCATION_INFO_CHANGE: Events related to the location information of VAL Users or VAL UEs from the Location Management Server. - GM_GROUP_INFO_CHANGE: Events related to the modification of VAL group membership and configuration information from the Group Management Server. - CM_USER_PROFILE_CHANGE: Events related to update of user profile information from the Configuration Management Server. - GM_GROUP_CREATE: Events related to creation of new VAL groups from the Group Mananagement Server. - NRM_MONITOR_UE_USER_EVENTS: Monitoring and analytic events related to VAL UEs, users or VAL group, from the Network Resource Management Server. - LM_LOCATION_DEVIATION_MONITOR: Events from Location Management server, related to the deviation of the VAL User(s) / UE(s) location from an area of interest. - GM_TEMP_GROUP_FORMATION: Events related to the formation of new temporary VAL groups from the Group Management Server. - LM_LOCATION_AREA_MONITOR: Events from Location Management server, related to the list of UEs moving in or moving out of the specific location.

func (*SEALEvent) MarshalJSON

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

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

func (*SEALEvent) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type SEALEventDetail

type SEALEventDetail struct {
	EventId SEALEvent       `json:"eventId"`
	LmInfos []LMInformation `json:"lmInfos,omitempty"`
	// The VAL groups documents with modified membership and configuration information.
	ValGroupDocuments []VALGroupDocument `json:"valGroupDocuments,omitempty"`
	// Updated profile information associated with VAL Users or VAL UEs.
	ProfileDocs []ProfileDoc `json:"profileDocs,omitempty"`
	// The message filter information for various member VAL User or UEs of the VAL group.
	MsgFltrs []MessageFilter `json:"msgFltrs,omitempty"`
	// The events reports with details of the events related to the VAL UE(s).
	MonRep []MonitorEventsReport `json:"monRep,omitempty"`
	// The location deviation information for the interested VAL User ID or UE IDs in a given location.
	LocAdhr       []LocationDevMonReport `json:"locAdhr,omitempty"`
	TempGroupInfo *TempGroupInfo         `json:"tempGroupInfo,omitempty"`
	// The location area monitoring of the given area of interest.
	LocAreaMonRep []LocationAreaMonReport `json:"locAreaMonRep,omitempty"`
}

SEALEventDetail Represents the SEAL event details.

func NewSEALEventDetail

func NewSEALEventDetail(eventId SEALEvent) *SEALEventDetail

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

func NewSEALEventDetailWithDefaults

func NewSEALEventDetailWithDefaults() *SEALEventDetail

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

func (*SEALEventDetail) GetEventId

func (o *SEALEventDetail) GetEventId() SEALEvent

GetEventId returns the EventId field value

func (*SEALEventDetail) GetEventIdOk

func (o *SEALEventDetail) GetEventIdOk() (*SEALEvent, bool)

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

func (*SEALEventDetail) GetLmInfos

func (o *SEALEventDetail) GetLmInfos() []LMInformation

GetLmInfos returns the LmInfos field value if set, zero value otherwise.

func (*SEALEventDetail) GetLmInfosOk

func (o *SEALEventDetail) GetLmInfosOk() ([]LMInformation, bool)

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

func (*SEALEventDetail) GetLocAdhr

func (o *SEALEventDetail) GetLocAdhr() []LocationDevMonReport

GetLocAdhr returns the LocAdhr field value if set, zero value otherwise.

func (*SEALEventDetail) GetLocAdhrOk

func (o *SEALEventDetail) GetLocAdhrOk() ([]LocationDevMonReport, bool)

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

func (*SEALEventDetail) GetLocAreaMonRep

func (o *SEALEventDetail) GetLocAreaMonRep() []LocationAreaMonReport

GetLocAreaMonRep returns the LocAreaMonRep field value if set, zero value otherwise.

func (*SEALEventDetail) GetLocAreaMonRepOk

func (o *SEALEventDetail) GetLocAreaMonRepOk() ([]LocationAreaMonReport, bool)

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

func (*SEALEventDetail) GetMonRep

func (o *SEALEventDetail) GetMonRep() []MonitorEventsReport

GetMonRep returns the MonRep field value if set, zero value otherwise.

func (*SEALEventDetail) GetMonRepOk

func (o *SEALEventDetail) GetMonRepOk() ([]MonitorEventsReport, bool)

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

func (*SEALEventDetail) GetMsgFltrs

func (o *SEALEventDetail) GetMsgFltrs() []MessageFilter

GetMsgFltrs returns the MsgFltrs field value if set, zero value otherwise.

func (*SEALEventDetail) GetMsgFltrsOk

func (o *SEALEventDetail) GetMsgFltrsOk() ([]MessageFilter, bool)

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

func (*SEALEventDetail) GetProfileDocs

func (o *SEALEventDetail) GetProfileDocs() []ProfileDoc

GetProfileDocs returns the ProfileDocs field value if set, zero value otherwise.

func (*SEALEventDetail) GetProfileDocsOk

func (o *SEALEventDetail) GetProfileDocsOk() ([]ProfileDoc, bool)

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

func (*SEALEventDetail) GetTempGroupInfo

func (o *SEALEventDetail) GetTempGroupInfo() TempGroupInfo

GetTempGroupInfo returns the TempGroupInfo field value if set, zero value otherwise.

func (*SEALEventDetail) GetTempGroupInfoOk

func (o *SEALEventDetail) GetTempGroupInfoOk() (*TempGroupInfo, bool)

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

func (*SEALEventDetail) GetValGroupDocuments

func (o *SEALEventDetail) GetValGroupDocuments() []VALGroupDocument

GetValGroupDocuments returns the ValGroupDocuments field value if set, zero value otherwise.

func (*SEALEventDetail) GetValGroupDocumentsOk

func (o *SEALEventDetail) GetValGroupDocumentsOk() ([]VALGroupDocument, bool)

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

func (*SEALEventDetail) HasLmInfos

func (o *SEALEventDetail) HasLmInfos() bool

HasLmInfos returns a boolean if a field has been set.

func (*SEALEventDetail) HasLocAdhr

func (o *SEALEventDetail) HasLocAdhr() bool

HasLocAdhr returns a boolean if a field has been set.

func (*SEALEventDetail) HasLocAreaMonRep

func (o *SEALEventDetail) HasLocAreaMonRep() bool

HasLocAreaMonRep returns a boolean if a field has been set.

func (*SEALEventDetail) HasMonRep

func (o *SEALEventDetail) HasMonRep() bool

HasMonRep returns a boolean if a field has been set.

func (*SEALEventDetail) HasMsgFltrs

func (o *SEALEventDetail) HasMsgFltrs() bool

HasMsgFltrs returns a boolean if a field has been set.

func (*SEALEventDetail) HasProfileDocs

func (o *SEALEventDetail) HasProfileDocs() bool

HasProfileDocs returns a boolean if a field has been set.

func (*SEALEventDetail) HasTempGroupInfo

func (o *SEALEventDetail) HasTempGroupInfo() bool

HasTempGroupInfo returns a boolean if a field has been set.

func (*SEALEventDetail) HasValGroupDocuments

func (o *SEALEventDetail) HasValGroupDocuments() bool

HasValGroupDocuments returns a boolean if a field has been set.

func (SEALEventDetail) MarshalJSON

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

func (*SEALEventDetail) SetEventId

func (o *SEALEventDetail) SetEventId(v SEALEvent)

SetEventId sets field value

func (*SEALEventDetail) SetLmInfos

func (o *SEALEventDetail) SetLmInfos(v []LMInformation)

SetLmInfos gets a reference to the given []LMInformation and assigns it to the LmInfos field.

func (*SEALEventDetail) SetLocAdhr

func (o *SEALEventDetail) SetLocAdhr(v []LocationDevMonReport)

SetLocAdhr gets a reference to the given []LocationDevMonReport and assigns it to the LocAdhr field.

func (*SEALEventDetail) SetLocAreaMonRep

func (o *SEALEventDetail) SetLocAreaMonRep(v []LocationAreaMonReport)

SetLocAreaMonRep gets a reference to the given []LocationAreaMonReport and assigns it to the LocAreaMonRep field.

func (*SEALEventDetail) SetMonRep

func (o *SEALEventDetail) SetMonRep(v []MonitorEventsReport)

SetMonRep gets a reference to the given []MonitorEventsReport and assigns it to the MonRep field.

func (*SEALEventDetail) SetMsgFltrs

func (o *SEALEventDetail) SetMsgFltrs(v []MessageFilter)

SetMsgFltrs gets a reference to the given []MessageFilter and assigns it to the MsgFltrs field.

func (*SEALEventDetail) SetProfileDocs

func (o *SEALEventDetail) SetProfileDocs(v []ProfileDoc)

SetProfileDocs gets a reference to the given []ProfileDoc and assigns it to the ProfileDocs field.

func (*SEALEventDetail) SetTempGroupInfo

func (o *SEALEventDetail) SetTempGroupInfo(v TempGroupInfo)

SetTempGroupInfo gets a reference to the given TempGroupInfo and assigns it to the TempGroupInfo field.

func (*SEALEventDetail) SetValGroupDocuments

func (o *SEALEventDetail) SetValGroupDocuments(v []VALGroupDocument)

SetValGroupDocuments gets a reference to the given []VALGroupDocument and assigns it to the ValGroupDocuments field.

func (SEALEventDetail) ToMap

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

func (*SEALEventDetail) UnmarshalJSON

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

type SEALEventNotification

type SEALEventNotification struct {
	// Identifier of the subscription resource.
	SubscriptionId string `json:"subscriptionId"`
	// Detailed notifications of individual events.
	EventDetails []SEALEventDetail `json:"eventDetails"`
}

SEALEventNotification Represents notification information of a SEAL Event.

func NewSEALEventNotification

func NewSEALEventNotification(subscriptionId string, eventDetails []SEALEventDetail) *SEALEventNotification

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

func NewSEALEventNotificationWithDefaults

func NewSEALEventNotificationWithDefaults() *SEALEventNotification

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

func (*SEALEventNotification) GetEventDetails

func (o *SEALEventNotification) GetEventDetails() []SEALEventDetail

GetEventDetails returns the EventDetails field value

func (*SEALEventNotification) GetEventDetailsOk

func (o *SEALEventNotification) GetEventDetailsOk() ([]SEALEventDetail, bool)

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

func (*SEALEventNotification) GetSubscriptionId

func (o *SEALEventNotification) GetSubscriptionId() string

GetSubscriptionId returns the SubscriptionId field value

func (*SEALEventNotification) GetSubscriptionIdOk

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

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

func (SEALEventNotification) MarshalJSON

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

func (*SEALEventNotification) SetEventDetails

func (o *SEALEventNotification) SetEventDetails(v []SEALEventDetail)

SetEventDetails sets field value

func (*SEALEventNotification) SetSubscriptionId

func (o *SEALEventNotification) SetSubscriptionId(v string)

SetSubscriptionId sets field value

func (SEALEventNotification) ToMap

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

func (*SEALEventNotification) UnmarshalJSON

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

type SEALEventSubscription

type SEALEventSubscription struct {
	// String identifying the subscriber of the event.
	SubscriberId string `json:"subscriberId"`
	// Subscribed events.
	EventSubs []EventSubscription  `json:"eventSubs"`
	EventReq  ReportingInformation `json:"eventReq"`
	// string providing an URI formatted according to IETF RFC 3986.
	NotificationDestination string `json:"notificationDestination"`
	// Set to true by Subscriber to request the SEAL server to send a test notification. Set to false or omitted otherwise.
	RequestTestNotification *bool               `json:"requestTestNotification,omitempty"`
	WebsockNotifConfig      *WebsockNotifConfig `json:"websockNotifConfig,omitempty"`
	EventDetails            []SEALEventDetail   `json:"eventDetails,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.
	SuppFeat *string `json:"suppFeat,omitempty"`
}

SEALEventSubscription Represents an individual SEAL Event Subscription resource.

func NewSEALEventSubscription

func NewSEALEventSubscription(subscriberId string, eventSubs []EventSubscription, eventReq ReportingInformation, notificationDestination string) *SEALEventSubscription

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

func NewSEALEventSubscriptionWithDefaults

func NewSEALEventSubscriptionWithDefaults() *SEALEventSubscription

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

func (*SEALEventSubscription) GetEventDetails

func (o *SEALEventSubscription) GetEventDetails() []SEALEventDetail

GetEventDetails returns the EventDetails field value if set, zero value otherwise.

func (*SEALEventSubscription) GetEventDetailsOk

func (o *SEALEventSubscription) GetEventDetailsOk() ([]SEALEventDetail, bool)

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

func (*SEALEventSubscription) GetEventReq

GetEventReq returns the EventReq field value

func (*SEALEventSubscription) GetEventReqOk

func (o *SEALEventSubscription) GetEventReqOk() (*ReportingInformation, bool)

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

func (*SEALEventSubscription) GetEventSubs

func (o *SEALEventSubscription) GetEventSubs() []EventSubscription

GetEventSubs returns the EventSubs field value

func (*SEALEventSubscription) GetEventSubsOk

func (o *SEALEventSubscription) GetEventSubsOk() ([]EventSubscription, bool)

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

func (*SEALEventSubscription) GetNotificationDestination

func (o *SEALEventSubscription) GetNotificationDestination() string

GetNotificationDestination returns the NotificationDestination field value

func (*SEALEventSubscription) GetNotificationDestinationOk

func (o *SEALEventSubscription) GetNotificationDestinationOk() (*string, bool)

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

func (*SEALEventSubscription) GetRequestTestNotification

func (o *SEALEventSubscription) GetRequestTestNotification() bool

GetRequestTestNotification returns the RequestTestNotification field value if set, zero value otherwise.

func (*SEALEventSubscription) GetRequestTestNotificationOk

func (o *SEALEventSubscription) GetRequestTestNotificationOk() (*bool, bool)

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

func (*SEALEventSubscription) GetSubscriberId

func (o *SEALEventSubscription) GetSubscriberId() string

GetSubscriberId returns the SubscriberId field value

func (*SEALEventSubscription) GetSubscriberIdOk

func (o *SEALEventSubscription) GetSubscriberIdOk() (*string, bool)

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

func (*SEALEventSubscription) GetSuppFeat

func (o *SEALEventSubscription) GetSuppFeat() string

GetSuppFeat returns the SuppFeat field value if set, zero value otherwise.

func (*SEALEventSubscription) GetSuppFeatOk

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

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

func (*SEALEventSubscription) GetWebsockNotifConfig

func (o *SEALEventSubscription) GetWebsockNotifConfig() WebsockNotifConfig

GetWebsockNotifConfig returns the WebsockNotifConfig field value if set, zero value otherwise.

func (*SEALEventSubscription) GetWebsockNotifConfigOk

func (o *SEALEventSubscription) GetWebsockNotifConfigOk() (*WebsockNotifConfig, bool)

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

func (*SEALEventSubscription) HasEventDetails

func (o *SEALEventSubscription) HasEventDetails() bool

HasEventDetails returns a boolean if a field has been set.

func (*SEALEventSubscription) HasRequestTestNotification

func (o *SEALEventSubscription) HasRequestTestNotification() bool

HasRequestTestNotification returns a boolean if a field has been set.

func (*SEALEventSubscription) HasSuppFeat

func (o *SEALEventSubscription) HasSuppFeat() bool

HasSuppFeat returns a boolean if a field has been set.

func (*SEALEventSubscription) HasWebsockNotifConfig

func (o *SEALEventSubscription) HasWebsockNotifConfig() bool

HasWebsockNotifConfig returns a boolean if a field has been set.

func (SEALEventSubscription) MarshalJSON

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

func (*SEALEventSubscription) SetEventDetails

func (o *SEALEventSubscription) SetEventDetails(v []SEALEventDetail)

SetEventDetails gets a reference to the given []SEALEventDetail and assigns it to the EventDetails field.

func (*SEALEventSubscription) SetEventReq

func (o *SEALEventSubscription) SetEventReq(v ReportingInformation)

SetEventReq sets field value

func (*SEALEventSubscription) SetEventSubs

func (o *SEALEventSubscription) SetEventSubs(v []EventSubscription)

SetEventSubs sets field value

func (*SEALEventSubscription) SetNotificationDestination

func (o *SEALEventSubscription) SetNotificationDestination(v string)

SetNotificationDestination sets field value

func (*SEALEventSubscription) SetRequestTestNotification

func (o *SEALEventSubscription) SetRequestTestNotification(v bool)

SetRequestTestNotification gets a reference to the given bool and assigns it to the RequestTestNotification field.

func (*SEALEventSubscription) SetSubscriberId

func (o *SEALEventSubscription) SetSubscriberId(v string)

SetSubscriberId sets field value

func (*SEALEventSubscription) SetSuppFeat

func (o *SEALEventSubscription) SetSuppFeat(v string)

SetSuppFeat gets a reference to the given string and assigns it to the SuppFeat field.

func (*SEALEventSubscription) SetWebsockNotifConfig

func (o *SEALEventSubscription) SetWebsockNotifConfig(v WebsockNotifConfig)

SetWebsockNotifConfig gets a reference to the given WebsockNotifConfig and assigns it to the WebsockNotifConfig field.

func (SEALEventSubscription) ToMap

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

func (*SEALEventSubscription) UnmarshalJSON

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

type SEALEventSubscriptionPatch

type SEALEventSubscriptionPatch struct {
	// Subscribed events.
	EventSubs []EventSubscription   `json:"eventSubs,omitempty"`
	EventReq  *ReportingInformation `json:"eventReq,omitempty"`
	// string providing an URI formatted according to IETF RFC 3986.
	NotificationDestination *string `json:"notificationDestination,omitempty"`
}

SEALEventSubscriptionPatch Represents the partial update of individual SEAL Event Subscription resource.

func NewSEALEventSubscriptionPatch

func NewSEALEventSubscriptionPatch() *SEALEventSubscriptionPatch

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

func NewSEALEventSubscriptionPatchWithDefaults

func NewSEALEventSubscriptionPatchWithDefaults() *SEALEventSubscriptionPatch

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

func (*SEALEventSubscriptionPatch) GetEventReq

GetEventReq returns the EventReq field value if set, zero value otherwise.

func (*SEALEventSubscriptionPatch) GetEventReqOk

func (o *SEALEventSubscriptionPatch) GetEventReqOk() (*ReportingInformation, bool)

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

func (*SEALEventSubscriptionPatch) GetEventSubs

func (o *SEALEventSubscriptionPatch) GetEventSubs() []EventSubscription

GetEventSubs returns the EventSubs field value if set, zero value otherwise.

func (*SEALEventSubscriptionPatch) GetEventSubsOk

func (o *SEALEventSubscriptionPatch) GetEventSubsOk() ([]EventSubscription, bool)

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

func (*SEALEventSubscriptionPatch) GetNotificationDestination

func (o *SEALEventSubscriptionPatch) GetNotificationDestination() string

GetNotificationDestination returns the NotificationDestination field value if set, zero value otherwise.

func (*SEALEventSubscriptionPatch) GetNotificationDestinationOk

func (o *SEALEventSubscriptionPatch) GetNotificationDestinationOk() (*string, bool)

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

func (*SEALEventSubscriptionPatch) HasEventReq

func (o *SEALEventSubscriptionPatch) HasEventReq() bool

HasEventReq returns a boolean if a field has been set.

func (*SEALEventSubscriptionPatch) HasEventSubs

func (o *SEALEventSubscriptionPatch) HasEventSubs() bool

HasEventSubs returns a boolean if a field has been set.

func (*SEALEventSubscriptionPatch) HasNotificationDestination

func (o *SEALEventSubscriptionPatch) HasNotificationDestination() bool

HasNotificationDestination returns a boolean if a field has been set.

func (SEALEventSubscriptionPatch) MarshalJSON

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

func (*SEALEventSubscriptionPatch) SetEventReq

SetEventReq gets a reference to the given ReportingInformation and assigns it to the EventReq field.

func (*SEALEventSubscriptionPatch) SetEventSubs

func (o *SEALEventSubscriptionPatch) SetEventSubs(v []EventSubscription)

SetEventSubs gets a reference to the given []EventSubscription and assigns it to the EventSubs field.

func (*SEALEventSubscriptionPatch) SetNotificationDestination

func (o *SEALEventSubscriptionPatch) SetNotificationDestination(v string)

SetNotificationDestination gets a reference to the given string and assigns it to the NotificationDestination field.

func (SEALEventSubscriptionPatch) ToMap

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

type SEALEventsSubscriptionsCollectionAPIService

type SEALEventsSubscriptionsCollectionAPIService service

SEALEventsSubscriptionsCollectionAPIService SEALEventsSubscriptionsCollectionAPI service

func (*SEALEventsSubscriptionsCollectionAPIService) CreateSealEventSubsc

CreateSealEventSubsc Method for CreateSealEventSubsc

Creates a new individual SEAL Event Subscription.

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

func (*SEALEventsSubscriptionsCollectionAPIService) CreateSealEventSubscExecute

Execute executes the request

@return SEALEventSubscription

type ScheduledCommunicationTime

type ScheduledCommunicationTime struct {
	// Identifies the day(s) of the week. If absent, it indicates every day of the week.
	DaysOfWeek []int32 `json:"daysOfWeek,omitempty"`
	// String with format partial-time or full-time as defined in clause 5.6 of IETF RFC 3339. Examples, 20:15:00, 20:15:00-08:00 (for 8 hours behind UTC).
	TimeOfDayStart *string `json:"timeOfDayStart,omitempty"`
	// String with format partial-time or full-time as defined in clause 5.6 of IETF RFC 3339. Examples, 20:15:00, 20:15:00-08:00 (for 8 hours behind UTC).
	TimeOfDayEnd *string `json:"timeOfDayEnd,omitempty"`
}

ScheduledCommunicationTime Represents an offered scheduled communication time.

func NewScheduledCommunicationTime

func NewScheduledCommunicationTime() *ScheduledCommunicationTime

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

func NewScheduledCommunicationTimeWithDefaults

func NewScheduledCommunicationTimeWithDefaults() *ScheduledCommunicationTime

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

func (*ScheduledCommunicationTime) GetDaysOfWeek

func (o *ScheduledCommunicationTime) GetDaysOfWeek() []int32

GetDaysOfWeek returns the DaysOfWeek field value if set, zero value otherwise.

func (*ScheduledCommunicationTime) GetDaysOfWeekOk

func (o *ScheduledCommunicationTime) GetDaysOfWeekOk() ([]int32, bool)

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

func (*ScheduledCommunicationTime) GetTimeOfDayEnd

func (o *ScheduledCommunicationTime) GetTimeOfDayEnd() string

GetTimeOfDayEnd returns the TimeOfDayEnd field value if set, zero value otherwise.

func (*ScheduledCommunicationTime) GetTimeOfDayEndOk

func (o *ScheduledCommunicationTime) GetTimeOfDayEndOk() (*string, bool)

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

func (*ScheduledCommunicationTime) GetTimeOfDayStart

func (o *ScheduledCommunicationTime) GetTimeOfDayStart() string

GetTimeOfDayStart returns the TimeOfDayStart field value if set, zero value otherwise.

func (*ScheduledCommunicationTime) GetTimeOfDayStartOk

func (o *ScheduledCommunicationTime) GetTimeOfDayStartOk() (*string, bool)

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

func (*ScheduledCommunicationTime) HasDaysOfWeek

func (o *ScheduledCommunicationTime) HasDaysOfWeek() bool

HasDaysOfWeek returns a boolean if a field has been set.

func (*ScheduledCommunicationTime) HasTimeOfDayEnd

func (o *ScheduledCommunicationTime) HasTimeOfDayEnd() bool

HasTimeOfDayEnd returns a boolean if a field has been set.

func (*ScheduledCommunicationTime) HasTimeOfDayStart

func (o *ScheduledCommunicationTime) HasTimeOfDayStart() bool

HasTimeOfDayStart returns a boolean if a field has been set.

func (ScheduledCommunicationTime) MarshalJSON

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

func (*ScheduledCommunicationTime) SetDaysOfWeek

func (o *ScheduledCommunicationTime) SetDaysOfWeek(v []int32)

SetDaysOfWeek gets a reference to the given []int32 and assigns it to the DaysOfWeek field.

func (*ScheduledCommunicationTime) SetTimeOfDayEnd

func (o *ScheduledCommunicationTime) SetTimeOfDayEnd(v string)

SetTimeOfDayEnd gets a reference to the given string and assigns it to the TimeOfDayEnd field.

func (*ScheduledCommunicationTime) SetTimeOfDayStart

func (o *ScheduledCommunicationTime) SetTimeOfDayStart(v string)

SetTimeOfDayStart gets a reference to the given string and assigns it to the TimeOfDayStart field.

func (ScheduledCommunicationTime) ToMap

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

type ServerConfiguration

type ServerConfiguration struct {
	URL         string
	Description string
	Variables   map[string]ServerVariable
}

ServerConfiguration stores the information about a server

type ServerConfigurations

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL

func (sc ServerConfigurations) URL(index int, variables map[string]string) (string, error)

URL formats template on a index using given variables

type ServerVariable

type ServerVariable struct {
	Description  string
	DefaultValue string
	EnumValues   []string
}

ServerVariable stores the information about a server variable

type SupportedGADShapes

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

SupportedGADShapes Indicates supported GAD shapes.

func (*SupportedGADShapes) MarshalJSON

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

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

func (*SupportedGADShapes) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type Tai

type Tai struct {
	PlmnId 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 TempGroupInfo

type TempGroupInfo struct {
	ValGrpIds    []string `json:"valGrpIds"`
	TempValGrpId string   `json:"tempValGrpId"`
	ValServIds   []string `json:"valServIds,omitempty"`
}

TempGroupInfo Represents the created temporary VAL group information.

func NewTempGroupInfo

func NewTempGroupInfo(valGrpIds []string, tempValGrpId string) *TempGroupInfo

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

func NewTempGroupInfoWithDefaults

func NewTempGroupInfoWithDefaults() *TempGroupInfo

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

func (*TempGroupInfo) GetTempValGrpId

func (o *TempGroupInfo) GetTempValGrpId() string

GetTempValGrpId returns the TempValGrpId field value

func (*TempGroupInfo) GetTempValGrpIdOk

func (o *TempGroupInfo) GetTempValGrpIdOk() (*string, bool)

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

func (*TempGroupInfo) GetValGrpIds

func (o *TempGroupInfo) GetValGrpIds() []string

GetValGrpIds returns the ValGrpIds field value

func (*TempGroupInfo) GetValGrpIdsOk

func (o *TempGroupInfo) GetValGrpIdsOk() ([]string, bool)

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

func (*TempGroupInfo) GetValServIds

func (o *TempGroupInfo) GetValServIds() []string

GetValServIds returns the ValServIds field value if set, zero value otherwise.

func (*TempGroupInfo) GetValServIdsOk

func (o *TempGroupInfo) GetValServIdsOk() ([]string, bool)

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

func (*TempGroupInfo) HasValServIds

func (o *TempGroupInfo) HasValServIds() bool

HasValServIds returns a boolean if a field has been set.

func (TempGroupInfo) MarshalJSON

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

func (*TempGroupInfo) SetTempValGrpId

func (o *TempGroupInfo) SetTempValGrpId(v string)

SetTempValGrpId sets field value

func (*TempGroupInfo) SetValGrpIds

func (o *TempGroupInfo) SetValGrpIds(v []string)

SetValGrpIds sets field value

func (*TempGroupInfo) SetValServIds

func (o *TempGroupInfo) SetValServIds(v []string)

SetValServIds gets a reference to the given []string and assigns it to the ValServIds field.

func (TempGroupInfo) ToMap

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

func (*TempGroupInfo) UnmarshalJSON

func (o *TempGroupInfo) 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 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 VALGroupDocument

type VALGroupDocument struct {
	// The VAL group idenitity.
	ValGroupId string `json:"valGroupId"`
	// The text description of the VAL group.
	GrpDesc *string `json:"grpDesc,omitempty"`
	// The list of VAL User IDs or VAL UE IDs, which are members of the VAL group.
	Members []ValTargetUe `json:"members,omitempty"`
	// Configuration data for the VAL group.
	ValGrpConf *string `json:"valGrpConf,omitempty"`
	// The list of VAL services enabled on the group.
	ValServiceIds []string `json:"valServiceIds,omitempty"`
	// VAL service specific information.
	ValSvcInf *string `json:"valSvcInf,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.
	SuppFeat *string `json:"suppFeat,omitempty"`
	// string providing an URI formatted according to IETF RFC 3986.
	ResUri     *string         `json:"resUri,omitempty"`
	LocInfo    *LocationInfo   `json:"locInfo,omitempty"`
	AddLocInfo *LocationArea5G `json:"addLocInfo,omitempty"`
	// string containing a local identifier followed by \"@\" and a domain identifier. Both the local identifier and the domain identifier shall be encoded as strings that do not contain any \"@\" characters. See Clauses 4.6.2 and 4.6.3 of 3GPP TS 23.682 for more information.
	ExtGrpId     *string         `json:"extGrpId,omitempty"`
	Com5GLanType *PduSessionType `json:"com5GLanType,omitempty"`
}

VALGroupDocument Represents details of the VAL group document information.

func NewVALGroupDocument

func NewVALGroupDocument(valGroupId string) *VALGroupDocument

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

func NewVALGroupDocumentWithDefaults

func NewVALGroupDocumentWithDefaults() *VALGroupDocument

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

func (*VALGroupDocument) GetAddLocInfo

func (o *VALGroupDocument) GetAddLocInfo() LocationArea5G

GetAddLocInfo returns the AddLocInfo field value if set, zero value otherwise.

func (*VALGroupDocument) GetAddLocInfoOk

func (o *VALGroupDocument) GetAddLocInfoOk() (*LocationArea5G, bool)

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

func (*VALGroupDocument) GetCom5GLanType

func (o *VALGroupDocument) GetCom5GLanType() PduSessionType

GetCom5GLanType returns the Com5GLanType field value if set, zero value otherwise.

func (*VALGroupDocument) GetCom5GLanTypeOk

func (o *VALGroupDocument) GetCom5GLanTypeOk() (*PduSessionType, bool)

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

func (*VALGroupDocument) GetExtGrpId

func (o *VALGroupDocument) GetExtGrpId() string

GetExtGrpId returns the ExtGrpId field value if set, zero value otherwise.

func (*VALGroupDocument) GetExtGrpIdOk

func (o *VALGroupDocument) GetExtGrpIdOk() (*string, bool)

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

func (*VALGroupDocument) GetGrpDesc

func (o *VALGroupDocument) GetGrpDesc() string

GetGrpDesc returns the GrpDesc field value if set, zero value otherwise.

func (*VALGroupDocument) GetGrpDescOk

func (o *VALGroupDocument) GetGrpDescOk() (*string, bool)

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

func (*VALGroupDocument) GetLocInfo

func (o *VALGroupDocument) GetLocInfo() LocationInfo

GetLocInfo returns the LocInfo field value if set, zero value otherwise.

func (*VALGroupDocument) GetLocInfoOk

func (o *VALGroupDocument) GetLocInfoOk() (*LocationInfo, bool)

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

func (*VALGroupDocument) GetMembers

func (o *VALGroupDocument) GetMembers() []ValTargetUe

GetMembers returns the Members field value if set, zero value otherwise.

func (*VALGroupDocument) GetMembersOk

func (o *VALGroupDocument) GetMembersOk() ([]ValTargetUe, bool)

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

func (*VALGroupDocument) GetResUri

func (o *VALGroupDocument) GetResUri() string

GetResUri returns the ResUri field value if set, zero value otherwise.

func (*VALGroupDocument) GetResUriOk

func (o *VALGroupDocument) GetResUriOk() (*string, bool)

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

func (*VALGroupDocument) GetSuppFeat

func (o *VALGroupDocument) GetSuppFeat() string

GetSuppFeat returns the SuppFeat field value if set, zero value otherwise.

func (*VALGroupDocument) GetSuppFeatOk

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

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

func (*VALGroupDocument) GetValGroupId

func (o *VALGroupDocument) GetValGroupId() string

GetValGroupId returns the ValGroupId field value

func (*VALGroupDocument) GetValGroupIdOk

func (o *VALGroupDocument) GetValGroupIdOk() (*string, bool)

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

func (*VALGroupDocument) GetValGrpConf

func (o *VALGroupDocument) GetValGrpConf() string

GetValGrpConf returns the ValGrpConf field value if set, zero value otherwise.

func (*VALGroupDocument) GetValGrpConfOk

func (o *VALGroupDocument) GetValGrpConfOk() (*string, bool)

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

func (*VALGroupDocument) GetValServiceIds

func (o *VALGroupDocument) GetValServiceIds() []string

GetValServiceIds returns the ValServiceIds field value if set, zero value otherwise.

func (*VALGroupDocument) GetValServiceIdsOk

func (o *VALGroupDocument) GetValServiceIdsOk() ([]string, bool)

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

func (*VALGroupDocument) GetValSvcInf

func (o *VALGroupDocument) GetValSvcInf() string

GetValSvcInf returns the ValSvcInf field value if set, zero value otherwise.

func (*VALGroupDocument) GetValSvcInfOk

func (o *VALGroupDocument) GetValSvcInfOk() (*string, bool)

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

func (*VALGroupDocument) HasAddLocInfo

func (o *VALGroupDocument) HasAddLocInfo() bool

HasAddLocInfo returns a boolean if a field has been set.

func (*VALGroupDocument) HasCom5GLanType

func (o *VALGroupDocument) HasCom5GLanType() bool

HasCom5GLanType returns a boolean if a field has been set.

func (*VALGroupDocument) HasExtGrpId

func (o *VALGroupDocument) HasExtGrpId() bool

HasExtGrpId returns a boolean if a field has been set.

func (*VALGroupDocument) HasGrpDesc

func (o *VALGroupDocument) HasGrpDesc() bool

HasGrpDesc returns a boolean if a field has been set.

func (*VALGroupDocument) HasLocInfo

func (o *VALGroupDocument) HasLocInfo() bool

HasLocInfo returns a boolean if a field has been set.

func (*VALGroupDocument) HasMembers

func (o *VALGroupDocument) HasMembers() bool

HasMembers returns a boolean if a field has been set.

func (*VALGroupDocument) HasResUri

func (o *VALGroupDocument) HasResUri() bool

HasResUri returns a boolean if a field has been set.

func (*VALGroupDocument) HasSuppFeat

func (o *VALGroupDocument) HasSuppFeat() bool

HasSuppFeat returns a boolean if a field has been set.

func (*VALGroupDocument) HasValGrpConf

func (o *VALGroupDocument) HasValGrpConf() bool

HasValGrpConf returns a boolean if a field has been set.

func (*VALGroupDocument) HasValServiceIds

func (o *VALGroupDocument) HasValServiceIds() bool

HasValServiceIds returns a boolean if a field has been set.

func (*VALGroupDocument) HasValSvcInf

func (o *VALGroupDocument) HasValSvcInf() bool

HasValSvcInf returns a boolean if a field has been set.

func (VALGroupDocument) MarshalJSON

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

func (*VALGroupDocument) SetAddLocInfo

func (o *VALGroupDocument) SetAddLocInfo(v LocationArea5G)

SetAddLocInfo gets a reference to the given LocationArea5G and assigns it to the AddLocInfo field.

func (*VALGroupDocument) SetCom5GLanType

func (o *VALGroupDocument) SetCom5GLanType(v PduSessionType)

SetCom5GLanType gets a reference to the given PduSessionType and assigns it to the Com5GLanType field.

func (*VALGroupDocument) SetExtGrpId

func (o *VALGroupDocument) SetExtGrpId(v string)

SetExtGrpId gets a reference to the given string and assigns it to the ExtGrpId field.

func (*VALGroupDocument) SetGrpDesc

func (o *VALGroupDocument) SetGrpDesc(v string)

SetGrpDesc gets a reference to the given string and assigns it to the GrpDesc field.

func (*VALGroupDocument) SetLocInfo

func (o *VALGroupDocument) SetLocInfo(v LocationInfo)

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

func (*VALGroupDocument) SetMembers

func (o *VALGroupDocument) SetMembers(v []ValTargetUe)

SetMembers gets a reference to the given []ValTargetUe and assigns it to the Members field.

func (*VALGroupDocument) SetResUri

func (o *VALGroupDocument) SetResUri(v string)

SetResUri gets a reference to the given string and assigns it to the ResUri field.

func (*VALGroupDocument) SetSuppFeat

func (o *VALGroupDocument) SetSuppFeat(v string)

SetSuppFeat gets a reference to the given string and assigns it to the SuppFeat field.

func (*VALGroupDocument) SetValGroupId

func (o *VALGroupDocument) SetValGroupId(v string)

SetValGroupId sets field value

func (*VALGroupDocument) SetValGrpConf

func (o *VALGroupDocument) SetValGrpConf(v string)

SetValGrpConf gets a reference to the given string and assigns it to the ValGrpConf field.

func (*VALGroupDocument) SetValServiceIds

func (o *VALGroupDocument) SetValServiceIds(v []string)

SetValServiceIds gets a reference to the given []string and assigns it to the ValServiceIds field.

func (*VALGroupDocument) SetValSvcInf

func (o *VALGroupDocument) SetValSvcInf(v string)

SetValSvcInf gets a reference to the given string and assigns it to the ValSvcInf field.

func (VALGroupDocument) ToMap

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

func (*VALGroupDocument) UnmarshalJSON

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

type VALGroupFilter

type VALGroupFilter struct {
	// Identity of the VAL service
	ValSvcId *string `json:"valSvcId,omitempty"`
	// VAL group identifiers that event subscriber wants to know in the interested event.
	ValGrpIds []string `json:"valGrpIds"`
}

VALGroupFilter Represents a filter of VAL group identifiers belonging to a VAL service.

func NewVALGroupFilter

func NewVALGroupFilter(valGrpIds []string) *VALGroupFilter

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

func NewVALGroupFilterWithDefaults

func NewVALGroupFilterWithDefaults() *VALGroupFilter

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

func (*VALGroupFilter) GetValGrpIds

func (o *VALGroupFilter) GetValGrpIds() []string

GetValGrpIds returns the ValGrpIds field value

func (*VALGroupFilter) GetValGrpIdsOk

func (o *VALGroupFilter) GetValGrpIdsOk() ([]string, bool)

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

func (*VALGroupFilter) GetValSvcId

func (o *VALGroupFilter) GetValSvcId() string

GetValSvcId returns the ValSvcId field value if set, zero value otherwise.

func (*VALGroupFilter) GetValSvcIdOk

func (o *VALGroupFilter) GetValSvcIdOk() (*string, bool)

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

func (*VALGroupFilter) HasValSvcId

func (o *VALGroupFilter) HasValSvcId() bool

HasValSvcId returns a boolean if a field has been set.

func (VALGroupFilter) MarshalJSON

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

func (*VALGroupFilter) SetValGrpIds

func (o *VALGroupFilter) SetValGrpIds(v []string)

SetValGrpIds sets field value

func (*VALGroupFilter) SetValSvcId

func (o *VALGroupFilter) SetValSvcId(v string)

SetValSvcId gets a reference to the given string and assigns it to the ValSvcId field.

func (VALGroupFilter) ToMap

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

func (*VALGroupFilter) UnmarshalJSON

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

type ValTargetUe

type ValTargetUe struct {
	// Unique identifier of a VAL user.
	ValUserId *string `json:"valUserId,omitempty"`
	// Unique identifier of a VAL UE.
	ValUeId *string `json:"valUeId,omitempty"`
}

ValTargetUe Represents information identifying a VAL user ID or a VAL UE ID.

func NewValTargetUe

func NewValTargetUe() *ValTargetUe

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

func NewValTargetUeWithDefaults

func NewValTargetUeWithDefaults() *ValTargetUe

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

func (*ValTargetUe) GetValUeId

func (o *ValTargetUe) GetValUeId() string

GetValUeId returns the ValUeId field value if set, zero value otherwise.

func (*ValTargetUe) GetValUeIdOk

func (o *ValTargetUe) GetValUeIdOk() (*string, bool)

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

func (*ValTargetUe) GetValUserId

func (o *ValTargetUe) GetValUserId() string

GetValUserId returns the ValUserId field value if set, zero value otherwise.

func (*ValTargetUe) GetValUserIdOk

func (o *ValTargetUe) GetValUserIdOk() (*string, bool)

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

func (*ValTargetUe) HasValUeId

func (o *ValTargetUe) HasValUeId() bool

HasValUeId returns a boolean if a field has been set.

func (*ValTargetUe) HasValUserId

func (o *ValTargetUe) HasValUserId() bool

HasValUserId returns a boolean if a field has been set.

func (ValTargetUe) MarshalJSON

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

func (*ValTargetUe) SetValUeId

func (o *ValTargetUe) SetValUeId(v string)

SetValUeId gets a reference to the given string and assigns it to the ValUeId field.

func (*ValTargetUe) SetValUserId

func (o *ValTargetUe) SetValUserId(v string)

SetValUserId gets a reference to the given string and assigns it to the ValUserId field.

func (ValTargetUe) ToMap

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

type ValidityConditions

type ValidityConditions struct {
	LocArea *LocationArea5G `json:"locArea,omitempty"`
	// Time window validity conditions.
	TmWdws []TimeWindow `json:"tmWdws,omitempty"`
}

ValidityConditions List of monitoring and/or analytics events related to VAL UE.

func NewValidityConditions

func NewValidityConditions() *ValidityConditions

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

func NewValidityConditionsWithDefaults

func NewValidityConditionsWithDefaults() *ValidityConditions

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

func (*ValidityConditions) GetLocArea

func (o *ValidityConditions) GetLocArea() LocationArea5G

GetLocArea returns the LocArea field value if set, zero value otherwise.

func (*ValidityConditions) GetLocAreaOk

func (o *ValidityConditions) GetLocAreaOk() (*LocationArea5G, bool)

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

func (*ValidityConditions) GetTmWdws

func (o *ValidityConditions) GetTmWdws() []TimeWindow

GetTmWdws returns the TmWdws field value if set, zero value otherwise.

func (*ValidityConditions) GetTmWdwsOk

func (o *ValidityConditions) GetTmWdwsOk() ([]TimeWindow, bool)

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

func (*ValidityConditions) HasLocArea

func (o *ValidityConditions) HasLocArea() bool

HasLocArea returns a boolean if a field has been set.

func (*ValidityConditions) HasTmWdws

func (o *ValidityConditions) HasTmWdws() bool

HasTmWdws returns a boolean if a field has been set.

func (ValidityConditions) MarshalJSON

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

func (*ValidityConditions) SetLocArea

func (o *ValidityConditions) SetLocArea(v LocationArea5G)

SetLocArea gets a reference to the given LocationArea5G and assigns it to the LocArea field.

func (*ValidityConditions) SetTmWdws

func (o *ValidityConditions) SetTmWdws(v []TimeWindow)

SetTmWdws gets a reference to the given []TimeWindow and assigns it to the TmWdws field.

func (ValidityConditions) ToMap

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

type VelocityEstimate

type VelocityEstimate struct {
	HorizontalVelocity                           *HorizontalVelocity
	HorizontalVelocityWithUncertainty            *HorizontalVelocityWithUncertainty
	HorizontalWithVerticalVelocity               *HorizontalWithVerticalVelocity
	HorizontalWithVerticalVelocityAndUncertainty *HorizontalWithVerticalVelocityAndUncertainty
}

VelocityEstimate - Velocity estimate.

func HorizontalVelocityAsVelocityEstimate

func HorizontalVelocityAsVelocityEstimate(v *HorizontalVelocity) VelocityEstimate

HorizontalVelocityAsVelocityEstimate is a convenience function that returns HorizontalVelocity wrapped in VelocityEstimate

func HorizontalVelocityWithUncertaintyAsVelocityEstimate

func HorizontalVelocityWithUncertaintyAsVelocityEstimate(v *HorizontalVelocityWithUncertainty) VelocityEstimate

HorizontalVelocityWithUncertaintyAsVelocityEstimate is a convenience function that returns HorizontalVelocityWithUncertainty wrapped in VelocityEstimate

func HorizontalWithVerticalVelocityAndUncertaintyAsVelocityEstimate

func HorizontalWithVerticalVelocityAndUncertaintyAsVelocityEstimate(v *HorizontalWithVerticalVelocityAndUncertainty) VelocityEstimate

HorizontalWithVerticalVelocityAndUncertaintyAsVelocityEstimate is a convenience function that returns HorizontalWithVerticalVelocityAndUncertainty wrapped in VelocityEstimate

func HorizontalWithVerticalVelocityAsVelocityEstimate

func HorizontalWithVerticalVelocityAsVelocityEstimate(v *HorizontalWithVerticalVelocity) VelocityEstimate

HorizontalWithVerticalVelocityAsVelocityEstimate is a convenience function that returns HorizontalWithVerticalVelocity wrapped in VelocityEstimate

func (*VelocityEstimate) GetActualInstance

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

Get the actual instance

func (VelocityEstimate) MarshalJSON

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

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

func (*VelocityEstimate) UnmarshalJSON

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

Unmarshal JSON data into one of the pointers in the struct

type VerticalDirection

type VerticalDirection string

VerticalDirection Indicates direction of vertical speed.

const (
	VERTICALDIRECTION_UPWARD   VerticalDirection = "UPWARD"
	VERTICALDIRECTION_DOWNWARD VerticalDirection = "DOWNWARD"
)

List of VerticalDirection

func NewVerticalDirectionFromValue

func NewVerticalDirectionFromValue(v string) (*VerticalDirection, error)

NewVerticalDirectionFromValue returns a pointer to a valid VerticalDirection for the value passed as argument, or an error if the value passed is not allowed by the enum

func (VerticalDirection) IsValid

func (v VerticalDirection) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (VerticalDirection) Ptr

Ptr returns reference to VerticalDirection value

func (*VerticalDirection) UnmarshalJSON

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

type WebsockNotifConfig

type WebsockNotifConfig struct {
	// string formatted according to IETF RFC 3986 identifying a referenced resource.
	WebsocketUri *string `json:"websocketUri,omitempty"`
	// Set by the SCS/AS to indicate that the Websocket delivery is requested.
	RequestWebsocketUri *bool `json:"requestWebsocketUri,omitempty"`
}

WebsockNotifConfig Represents the configuration information for the delivery of notifications over Websockets.

func NewWebsockNotifConfig

func NewWebsockNotifConfig() *WebsockNotifConfig

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

func NewWebsockNotifConfigWithDefaults

func NewWebsockNotifConfigWithDefaults() *WebsockNotifConfig

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

func (*WebsockNotifConfig) GetRequestWebsocketUri

func (o *WebsockNotifConfig) GetRequestWebsocketUri() bool

GetRequestWebsocketUri returns the RequestWebsocketUri field value if set, zero value otherwise.

func (*WebsockNotifConfig) GetRequestWebsocketUriOk

func (o *WebsockNotifConfig) GetRequestWebsocketUriOk() (*bool, bool)

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

func (*WebsockNotifConfig) GetWebsocketUri

func (o *WebsockNotifConfig) GetWebsocketUri() string

GetWebsocketUri returns the WebsocketUri field value if set, zero value otherwise.

func (*WebsockNotifConfig) GetWebsocketUriOk

func (o *WebsockNotifConfig) GetWebsocketUriOk() (*string, bool)

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

func (*WebsockNotifConfig) HasRequestWebsocketUri

func (o *WebsockNotifConfig) HasRequestWebsocketUri() bool

HasRequestWebsocketUri returns a boolean if a field has been set.

func (*WebsockNotifConfig) HasWebsocketUri

func (o *WebsockNotifConfig) HasWebsocketUri() bool

HasWebsocketUri returns a boolean if a field has been set.

func (WebsockNotifConfig) MarshalJSON

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

func (*WebsockNotifConfig) SetRequestWebsocketUri

func (o *WebsockNotifConfig) SetRequestWebsocketUri(v bool)

SetRequestWebsocketUri gets a reference to the given bool and assigns it to the RequestWebsocketUri field.

func (*WebsockNotifConfig) SetWebsocketUri

func (o *WebsockNotifConfig) SetWebsocketUri(v string)

SetWebsocketUri gets a reference to the given string and assigns it to the WebsocketUri field.

func (WebsockNotifConfig) ToMap

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

Source Files

Jump to

Keyboard shortcuts

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