OpenAPI_TrafficInfluence

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_TrafficInfluence

API for AF traffic influence
© 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.2.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_TrafficInfluence "gitee.com/konglinglong/openapi/OpenAPI_TrafficInfluence"

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

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

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

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

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

Documentation for API Endpoints

All URIs are relative to https://example.com/3gpp-traffic-influence/v1

Class Method HTTP request Description
IndividualTrafficInfluenceSubscriptionAPI DeleteAnSubscription Delete /{afId}/subscriptions/{subscriptionId} Deletes an already existing subscription
IndividualTrafficInfluenceSubscriptionAPI FullyUpdateAnSubscription Put /{afId}/subscriptions/{subscriptionId} Fully updates/replaces an existing subscription resource
IndividualTrafficInfluenceSubscriptionAPI PartialUpdateAnSubscription Patch /{afId}/subscriptions/{subscriptionId} Partially updates/replaces an existing subscription resource
IndividualTrafficInfluenceSubscriptionAPI ReadAnSubscription Get /{afId}/subscriptions/{subscriptionId} read an active subscriptions for the SCS/AS and the subscription Id
TrafficInfluenceSubscriptionAPI CreateNewSubscription Post /{afId}/subscriptions Creates a new subscription resource
TrafficInfluenceSubscriptionAPI ReadAllSubscriptions Get /{afId}/subscriptions read all of the active subscriptions for the AF

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_TrafficInfluence.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_TrafficInfluence.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")
)

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 {
	IndividualTrafficInfluenceSubscriptionAPI *IndividualTrafficInfluenceSubscriptionAPIService

	TrafficInfluenceSubscriptionAPI *TrafficInfluenceSubscriptionAPIService
	// contains filtered or unexported fields
}

APIClient manages communication with the 3gpp-traffic-influence API v1.2.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 AfAckInfo

type AfAckInfo struct {
	AfTransId *string      `json:"afTransId,omitempty"`
	AckResult AfResultInfo `json:"ackResult"`
	// String identifying a Gpsi shall contain either an External Id or an MSISDN.  It shall be formatted as follows -External Identifier= \"extid-'extid', where 'extid'  shall be formatted according to clause 19.7.2 of 3GPP TS 23.003 that describes an  External Identifier.
	Gpsi *string `json:"gpsi,omitempty"`
}

AfAckInfo Represents acknowledgement information of a traffic influence event notification.

func NewAfAckInfo

func NewAfAckInfo(ackResult AfResultInfo) *AfAckInfo

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

func NewAfAckInfoWithDefaults

func NewAfAckInfoWithDefaults() *AfAckInfo

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

func (*AfAckInfo) GetAckResult

func (o *AfAckInfo) GetAckResult() AfResultInfo

GetAckResult returns the AckResult field value

func (*AfAckInfo) GetAckResultOk

func (o *AfAckInfo) GetAckResultOk() (*AfResultInfo, bool)

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

func (*AfAckInfo) GetAfTransId

func (o *AfAckInfo) GetAfTransId() string

GetAfTransId returns the AfTransId field value if set, zero value otherwise.

func (*AfAckInfo) GetAfTransIdOk

func (o *AfAckInfo) GetAfTransIdOk() (*string, bool)

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

func (*AfAckInfo) GetGpsi

func (o *AfAckInfo) GetGpsi() string

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

func (*AfAckInfo) GetGpsiOk

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

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

func (*AfAckInfo) HasAfTransId

func (o *AfAckInfo) HasAfTransId() bool

HasAfTransId returns a boolean if a field has been set.

func (*AfAckInfo) HasGpsi

func (o *AfAckInfo) HasGpsi() bool

HasGpsi returns a boolean if a field has been set.

func (AfAckInfo) MarshalJSON

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

func (*AfAckInfo) SetAckResult

func (o *AfAckInfo) SetAckResult(v AfResultInfo)

SetAckResult sets field value

func (*AfAckInfo) SetAfTransId

func (o *AfAckInfo) SetAfTransId(v string)

SetAfTransId gets a reference to the given string and assigns it to the AfTransId field.

func (*AfAckInfo) SetGpsi

func (o *AfAckInfo) SetGpsi(v string)

SetGpsi gets a reference to the given string and assigns it to the Gpsi field.

func (AfAckInfo) ToMap

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

func (*AfAckInfo) UnmarshalJSON

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

type AfResultInfo

type AfResultInfo struct {
	AfStatus     AfResultStatus          `json:"afStatus"`
	TrafficRoute NullableRouteToLocation `json:"trafficRoute,omitempty"`
	// If present and set to \"true\" it indicates that buffering of uplink traffic to the target DNAI is needed.
	UpBuffInd *bool `json:"upBuffInd,omitempty"`
	// Contains EAS IP replacement information.
	EasIpReplaceInfos []EasIpReplacementInfo `json:"easIpReplaceInfos,omitempty"`
}

AfResultInfo Identifies the result of application layer handling.

func NewAfResultInfo

func NewAfResultInfo(afStatus AfResultStatus) *AfResultInfo

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

func NewAfResultInfoWithDefaults

func NewAfResultInfoWithDefaults() *AfResultInfo

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

func (*AfResultInfo) GetAfStatus

func (o *AfResultInfo) GetAfStatus() AfResultStatus

GetAfStatus returns the AfStatus field value

func (*AfResultInfo) GetAfStatusOk

func (o *AfResultInfo) GetAfStatusOk() (*AfResultStatus, bool)

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

func (*AfResultInfo) GetEasIpReplaceInfos

func (o *AfResultInfo) GetEasIpReplaceInfos() []EasIpReplacementInfo

GetEasIpReplaceInfos returns the EasIpReplaceInfos field value if set, zero value otherwise.

func (*AfResultInfo) GetEasIpReplaceInfosOk

func (o *AfResultInfo) GetEasIpReplaceInfosOk() ([]EasIpReplacementInfo, bool)

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

func (*AfResultInfo) GetTrafficRoute

func (o *AfResultInfo) GetTrafficRoute() RouteToLocation

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

func (*AfResultInfo) GetTrafficRouteOk

func (o *AfResultInfo) GetTrafficRouteOk() (*RouteToLocation, bool)

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

func (*AfResultInfo) GetUpBuffInd

func (o *AfResultInfo) GetUpBuffInd() bool

GetUpBuffInd returns the UpBuffInd field value if set, zero value otherwise.

func (*AfResultInfo) GetUpBuffIndOk

func (o *AfResultInfo) GetUpBuffIndOk() (*bool, bool)

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

func (*AfResultInfo) HasEasIpReplaceInfos

func (o *AfResultInfo) HasEasIpReplaceInfos() bool

HasEasIpReplaceInfos returns a boolean if a field has been set.

func (*AfResultInfo) HasTrafficRoute

func (o *AfResultInfo) HasTrafficRoute() bool

HasTrafficRoute returns a boolean if a field has been set.

func (*AfResultInfo) HasUpBuffInd

func (o *AfResultInfo) HasUpBuffInd() bool

HasUpBuffInd returns a boolean if a field has been set.

func (AfResultInfo) MarshalJSON

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

func (*AfResultInfo) SetAfStatus

func (o *AfResultInfo) SetAfStatus(v AfResultStatus)

SetAfStatus sets field value

func (*AfResultInfo) SetEasIpReplaceInfos

func (o *AfResultInfo) SetEasIpReplaceInfos(v []EasIpReplacementInfo)

SetEasIpReplaceInfos gets a reference to the given []EasIpReplacementInfo and assigns it to the EasIpReplaceInfos field.

func (*AfResultInfo) SetTrafficRoute

func (o *AfResultInfo) SetTrafficRoute(v RouteToLocation)

SetTrafficRoute gets a reference to the given NullableRouteToLocation and assigns it to the TrafficRoute field.

func (*AfResultInfo) SetTrafficRouteNil

func (o *AfResultInfo) SetTrafficRouteNil()

SetTrafficRouteNil sets the value for TrafficRoute to be an explicit nil

func (*AfResultInfo) SetUpBuffInd

func (o *AfResultInfo) SetUpBuffInd(v bool)

SetUpBuffInd gets a reference to the given bool and assigns it to the UpBuffInd field.

func (AfResultInfo) ToMap

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

func (*AfResultInfo) UnmarshalJSON

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

func (*AfResultInfo) UnsetTrafficRoute

func (o *AfResultInfo) UnsetTrafficRoute()

UnsetTrafficRoute ensures that no value is present for TrafficRoute, not even an explicit nil

type AfResultStatus

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

AfResultStatus Possible values are: - SUCCESS: The application layer is ready or the relocation is completed. - TEMPORARY_CONGESTION: The application relocation fails due to temporary congestion. - RELOC_NO_ALLOWED: The application relocation fails because application relocation is not allowed. - OTHER: The application relocation fails due to other reason.

func (*AfResultStatus) MarshalJSON

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

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

func (*AfResultStatus) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type ApiCreateNewSubscriptionRequest

type ApiCreateNewSubscriptionRequest struct {
	ApiService *TrafficInfluenceSubscriptionAPIService
	// contains filtered or unexported fields
}

func (ApiCreateNewSubscriptionRequest) Execute

func (ApiCreateNewSubscriptionRequest) TrafficInfluSub

Request to create a new subscription resource

type ApiDeleteAnSubscriptionRequest

type ApiDeleteAnSubscriptionRequest struct {
	ApiService *IndividualTrafficInfluenceSubscriptionAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteAnSubscriptionRequest) Execute

type ApiFullyUpdateAnSubscriptionRequest

type ApiFullyUpdateAnSubscriptionRequest struct {
	ApiService *IndividualTrafficInfluenceSubscriptionAPIService
	// contains filtered or unexported fields
}

func (ApiFullyUpdateAnSubscriptionRequest) Execute

func (ApiFullyUpdateAnSubscriptionRequest) TrafficInfluSub

Parameters to update/replace the existing subscription

type ApiPartialUpdateAnSubscriptionRequest

type ApiPartialUpdateAnSubscriptionRequest struct {
	ApiService *IndividualTrafficInfluenceSubscriptionAPIService
	// contains filtered or unexported fields
}

func (ApiPartialUpdateAnSubscriptionRequest) Execute

func (ApiPartialUpdateAnSubscriptionRequest) TrafficInfluSubPatch

type ApiReadAllSubscriptionsRequest

type ApiReadAllSubscriptionsRequest struct {
	ApiService *TrafficInfluenceSubscriptionAPIService
	// contains filtered or unexported fields
}

func (ApiReadAllSubscriptionsRequest) Execute

type ApiReadAnSubscriptionRequest

type ApiReadAnSubscriptionRequest struct {
	ApiService *IndividualTrafficInfluenceSubscriptionAPIService
	// contains filtered or unexported fields
}

func (ApiReadAnSubscriptionRequest) Execute

type BasicAuth

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

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

type CivicAddress

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

CivicAddress Indicates a Civic address.

func NewCivicAddress

func NewCivicAddress() *CivicAddress

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

func NewCivicAddressWithDefaults

func NewCivicAddressWithDefaults() *CivicAddress

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

func (*CivicAddress) GetA1

func (o *CivicAddress) GetA1() string

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

func (*CivicAddress) GetA1Ok

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

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

func (*CivicAddress) GetA2

func (o *CivicAddress) GetA2() string

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

func (*CivicAddress) GetA2Ok

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

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

func (*CivicAddress) GetA3

func (o *CivicAddress) GetA3() string

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

func (*CivicAddress) GetA3Ok

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

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

func (*CivicAddress) GetA4

func (o *CivicAddress) GetA4() string

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

func (*CivicAddress) GetA4Ok

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

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

func (*CivicAddress) GetA5

func (o *CivicAddress) GetA5() string

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

func (*CivicAddress) GetA5Ok

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

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

func (*CivicAddress) GetA6

func (o *CivicAddress) GetA6() string

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

func (*CivicAddress) GetA6Ok

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

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

func (*CivicAddress) GetADDCODE

func (o *CivicAddress) GetADDCODE() string

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

func (*CivicAddress) GetADDCODEOk

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

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

func (*CivicAddress) GetBLD

func (o *CivicAddress) GetBLD() string

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

func (*CivicAddress) GetBLDOk

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

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

func (*CivicAddress) GetCountry

func (o *CivicAddress) GetCountry() string

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

func (*CivicAddress) GetCountryOk

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

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

func (*CivicAddress) GetFLR

func (o *CivicAddress) GetFLR() string

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

func (*CivicAddress) GetFLROk

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

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

func (*CivicAddress) GetHNO

func (o *CivicAddress) GetHNO() string

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

func (*CivicAddress) GetHNOOk

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

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

func (*CivicAddress) GetHNS

func (o *CivicAddress) GetHNS() string

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

func (*CivicAddress) GetHNSOk

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

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

func (*CivicAddress) GetLMK

func (o *CivicAddress) GetLMK() string

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

func (*CivicAddress) GetLMKOk

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

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

func (*CivicAddress) GetLOC

func (o *CivicAddress) GetLOC() string

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

func (*CivicAddress) GetLOCOk

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

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

func (*CivicAddress) GetMethod

func (o *CivicAddress) GetMethod() string

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

func (*CivicAddress) GetMethodOk

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

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

func (*CivicAddress) GetNAM

func (o *CivicAddress) GetNAM() string

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

func (*CivicAddress) GetNAMOk

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

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

func (*CivicAddress) GetPC

func (o *CivicAddress) GetPC() string

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

func (*CivicAddress) GetPCN

func (o *CivicAddress) GetPCN() string

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

func (*CivicAddress) GetPCNOk

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

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

func (*CivicAddress) GetPCOk

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

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

func (*CivicAddress) GetPLC

func (o *CivicAddress) GetPLC() string

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

func (*CivicAddress) GetPLCOk

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

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

func (*CivicAddress) GetPOBOX

func (o *CivicAddress) GetPOBOX() string

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

func (*CivicAddress) GetPOBOXOk

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

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

func (*CivicAddress) GetPOD

func (o *CivicAddress) GetPOD() string

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

func (*CivicAddress) GetPODOk

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

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

func (*CivicAddress) GetPOM

func (o *CivicAddress) GetPOM() string

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

func (*CivicAddress) GetPOMOk

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

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

func (*CivicAddress) GetPRD

func (o *CivicAddress) GetPRD() string

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

func (*CivicAddress) GetPRDOk

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

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

func (*CivicAddress) GetPRM

func (o *CivicAddress) GetPRM() string

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

func (*CivicAddress) GetPRMOk

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

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

func (*CivicAddress) GetProvidedBy

func (o *CivicAddress) GetProvidedBy() string

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

func (*CivicAddress) GetProvidedByOk

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

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

func (*CivicAddress) GetRD

func (o *CivicAddress) GetRD() string

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

func (*CivicAddress) GetRDBR

func (o *CivicAddress) GetRDBR() string

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

func (*CivicAddress) GetRDBROk

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

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

func (*CivicAddress) GetRDOk

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

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

func (*CivicAddress) GetRDSEC

func (o *CivicAddress) GetRDSEC() string

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

func (*CivicAddress) GetRDSECOk

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

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

func (*CivicAddress) GetRDSUBBR

func (o *CivicAddress) GetRDSUBBR() string

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

func (*CivicAddress) GetRDSUBBROk

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

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

func (*CivicAddress) GetROOM

func (o *CivicAddress) GetROOM() string

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

func (*CivicAddress) GetROOMOk

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

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

func (*CivicAddress) GetSEAT

func (o *CivicAddress) GetSEAT() string

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

func (*CivicAddress) GetSEATOk

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

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

func (*CivicAddress) GetSTS

func (o *CivicAddress) GetSTS() string

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

func (*CivicAddress) GetSTSOk

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

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

func (*CivicAddress) GetUNIT

func (o *CivicAddress) GetUNIT() string

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

func (*CivicAddress) GetUNITOk

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

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

func (*CivicAddress) GetUsageRules

func (o *CivicAddress) GetUsageRules() string

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

func (*CivicAddress) GetUsageRulesOk

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

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

func (*CivicAddress) HasA1

func (o *CivicAddress) HasA1() bool

HasA1 returns a boolean if a field has been set.

func (*CivicAddress) HasA2

func (o *CivicAddress) HasA2() bool

HasA2 returns a boolean if a field has been set.

func (*CivicAddress) HasA3

func (o *CivicAddress) HasA3() bool

HasA3 returns a boolean if a field has been set.

func (*CivicAddress) HasA4

func (o *CivicAddress) HasA4() bool

HasA4 returns a boolean if a field has been set.

func (*CivicAddress) HasA5

func (o *CivicAddress) HasA5() bool

HasA5 returns a boolean if a field has been set.

func (*CivicAddress) HasA6

func (o *CivicAddress) HasA6() bool

HasA6 returns a boolean if a field has been set.

func (*CivicAddress) HasADDCODE

func (o *CivicAddress) HasADDCODE() bool

HasADDCODE returns a boolean if a field has been set.

func (*CivicAddress) HasBLD

func (o *CivicAddress) HasBLD() bool

HasBLD returns a boolean if a field has been set.

func (*CivicAddress) HasCountry

func (o *CivicAddress) HasCountry() bool

HasCountry returns a boolean if a field has been set.

func (*CivicAddress) HasFLR

func (o *CivicAddress) HasFLR() bool

HasFLR returns a boolean if a field has been set.

func (*CivicAddress) HasHNO

func (o *CivicAddress) HasHNO() bool

HasHNO returns a boolean if a field has been set.

func (*CivicAddress) HasHNS

func (o *CivicAddress) HasHNS() bool

HasHNS returns a boolean if a field has been set.

func (*CivicAddress) HasLMK

func (o *CivicAddress) HasLMK() bool

HasLMK returns a boolean if a field has been set.

func (*CivicAddress) HasLOC

func (o *CivicAddress) HasLOC() bool

HasLOC returns a boolean if a field has been set.

func (*CivicAddress) HasMethod

func (o *CivicAddress) HasMethod() bool

HasMethod returns a boolean if a field has been set.

func (*CivicAddress) HasNAM

func (o *CivicAddress) HasNAM() bool

HasNAM returns a boolean if a field has been set.

func (*CivicAddress) HasPC

func (o *CivicAddress) HasPC() bool

HasPC returns a boolean if a field has been set.

func (*CivicAddress) HasPCN

func (o *CivicAddress) HasPCN() bool

HasPCN returns a boolean if a field has been set.

func (*CivicAddress) HasPLC

func (o *CivicAddress) HasPLC() bool

HasPLC returns a boolean if a field has been set.

func (*CivicAddress) HasPOBOX

func (o *CivicAddress) HasPOBOX() bool

HasPOBOX returns a boolean if a field has been set.

func (*CivicAddress) HasPOD

func (o *CivicAddress) HasPOD() bool

HasPOD returns a boolean if a field has been set.

func (*CivicAddress) HasPOM

func (o *CivicAddress) HasPOM() bool

HasPOM returns a boolean if a field has been set.

func (*CivicAddress) HasPRD

func (o *CivicAddress) HasPRD() bool

HasPRD returns a boolean if a field has been set.

func (*CivicAddress) HasPRM

func (o *CivicAddress) HasPRM() bool

HasPRM returns a boolean if a field has been set.

func (*CivicAddress) HasProvidedBy

func (o *CivicAddress) HasProvidedBy() bool

HasProvidedBy returns a boolean if a field has been set.

func (*CivicAddress) HasRD

func (o *CivicAddress) HasRD() bool

HasRD returns a boolean if a field has been set.

func (*CivicAddress) HasRDBR

func (o *CivicAddress) HasRDBR() bool

HasRDBR returns a boolean if a field has been set.

func (*CivicAddress) HasRDSEC

func (o *CivicAddress) HasRDSEC() bool

HasRDSEC returns a boolean if a field has been set.

func (*CivicAddress) HasRDSUBBR

func (o *CivicAddress) HasRDSUBBR() bool

HasRDSUBBR returns a boolean if a field has been set.

func (*CivicAddress) HasROOM

func (o *CivicAddress) HasROOM() bool

HasROOM returns a boolean if a field has been set.

func (*CivicAddress) HasSEAT

func (o *CivicAddress) HasSEAT() bool

HasSEAT returns a boolean if a field has been set.

func (*CivicAddress) HasSTS

func (o *CivicAddress) HasSTS() bool

HasSTS returns a boolean if a field has been set.

func (*CivicAddress) HasUNIT

func (o *CivicAddress) HasUNIT() bool

HasUNIT returns a boolean if a field has been set.

func (*CivicAddress) HasUsageRules

func (o *CivicAddress) HasUsageRules() bool

HasUsageRules returns a boolean if a field has been set.

func (CivicAddress) MarshalJSON

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

func (*CivicAddress) SetA1

func (o *CivicAddress) SetA1(v string)

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

func (*CivicAddress) SetA2

func (o *CivicAddress) SetA2(v string)

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

func (*CivicAddress) SetA3

func (o *CivicAddress) SetA3(v string)

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

func (*CivicAddress) SetA4

func (o *CivicAddress) SetA4(v string)

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

func (*CivicAddress) SetA5

func (o *CivicAddress) SetA5(v string)

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

func (*CivicAddress) SetA6

func (o *CivicAddress) SetA6(v string)

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

func (*CivicAddress) SetADDCODE

func (o *CivicAddress) SetADDCODE(v string)

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

func (*CivicAddress) SetBLD

func (o *CivicAddress) SetBLD(v string)

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

func (*CivicAddress) SetCountry

func (o *CivicAddress) SetCountry(v string)

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

func (*CivicAddress) SetFLR

func (o *CivicAddress) SetFLR(v string)

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

func (*CivicAddress) SetHNO

func (o *CivicAddress) SetHNO(v string)

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

func (*CivicAddress) SetHNS

func (o *CivicAddress) SetHNS(v string)

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

func (*CivicAddress) SetLMK

func (o *CivicAddress) SetLMK(v string)

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

func (*CivicAddress) SetLOC

func (o *CivicAddress) SetLOC(v string)

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

func (*CivicAddress) SetMethod

func (o *CivicAddress) SetMethod(v string)

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

func (*CivicAddress) SetNAM

func (o *CivicAddress) SetNAM(v string)

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

func (*CivicAddress) SetPC

func (o *CivicAddress) SetPC(v string)

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

func (*CivicAddress) SetPCN

func (o *CivicAddress) SetPCN(v string)

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

func (*CivicAddress) SetPLC

func (o *CivicAddress) SetPLC(v string)

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

func (*CivicAddress) SetPOBOX

func (o *CivicAddress) SetPOBOX(v string)

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

func (*CivicAddress) SetPOD

func (o *CivicAddress) SetPOD(v string)

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

func (*CivicAddress) SetPOM

func (o *CivicAddress) SetPOM(v string)

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

func (*CivicAddress) SetPRD

func (o *CivicAddress) SetPRD(v string)

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

func (*CivicAddress) SetPRM

func (o *CivicAddress) SetPRM(v string)

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

func (*CivicAddress) SetProvidedBy

func (o *CivicAddress) SetProvidedBy(v string)

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

func (*CivicAddress) SetRD

func (o *CivicAddress) SetRD(v string)

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

func (*CivicAddress) SetRDBR

func (o *CivicAddress) SetRDBR(v string)

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

func (*CivicAddress) SetRDSEC

func (o *CivicAddress) SetRDSEC(v string)

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

func (*CivicAddress) SetRDSUBBR

func (o *CivicAddress) SetRDSUBBR(v string)

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

func (*CivicAddress) SetROOM

func (o *CivicAddress) SetROOM(v string)

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

func (*CivicAddress) SetSEAT

func (o *CivicAddress) SetSEAT(v string)

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

func (*CivicAddress) SetSTS

func (o *CivicAddress) SetSTS(v string)

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

func (*CivicAddress) SetUNIT

func (o *CivicAddress) SetUNIT(v string)

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

func (*CivicAddress) SetUsageRules

func (o *CivicAddress) SetUsageRules(v string)

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

func (CivicAddress) ToMap

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

type Configuration

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

Configuration stores the configuration of the API client

func NewConfiguration

func NewConfiguration() *Configuration

NewConfiguration returns a new Configuration object

func (*Configuration) AddDefaultHeader

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

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

func (*Configuration) ServerURL

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

ServerURL returns URL based on server settings

func (*Configuration) ServerURLWithContext

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

ServerURLWithContext returns a new server URL given an endpoint

type DnaiChangeType

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

DnaiChangeType Possible values are: - EARLY: Early notification of UP path reconfiguration. - EARLY_LATE: Early and late notification of UP path reconfiguration. This value shall only be present in the subscription to the DNAI change event. - LATE: Late notification of UP path reconfiguration.

func (*DnaiChangeType) MarshalJSON

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

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

func (*DnaiChangeType) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type EasIpReplacementInfo

type EasIpReplacementInfo struct {
	Source EasServerAddress `json:"source"`
	Target EasServerAddress `json:"target"`
}

EasIpReplacementInfo Contains EAS IP replacement information for a Source and a Target EAS.

func NewEasIpReplacementInfo

func NewEasIpReplacementInfo(source EasServerAddress, target EasServerAddress) *EasIpReplacementInfo

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

func NewEasIpReplacementInfoWithDefaults

func NewEasIpReplacementInfoWithDefaults() *EasIpReplacementInfo

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

func (*EasIpReplacementInfo) GetSource

func (o *EasIpReplacementInfo) GetSource() EasServerAddress

GetSource returns the Source field value

func (*EasIpReplacementInfo) GetSourceOk

func (o *EasIpReplacementInfo) GetSourceOk() (*EasServerAddress, bool)

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

func (*EasIpReplacementInfo) GetTarget

func (o *EasIpReplacementInfo) GetTarget() EasServerAddress

GetTarget returns the Target field value

func (*EasIpReplacementInfo) GetTargetOk

func (o *EasIpReplacementInfo) GetTargetOk() (*EasServerAddress, bool)

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

func (EasIpReplacementInfo) MarshalJSON

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

func (*EasIpReplacementInfo) SetSource

func (o *EasIpReplacementInfo) SetSource(v EasServerAddress)

SetSource sets field value

func (*EasIpReplacementInfo) SetTarget

func (o *EasIpReplacementInfo) SetTarget(v EasServerAddress)

SetTarget sets field value

func (EasIpReplacementInfo) ToMap

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

func (*EasIpReplacementInfo) UnmarshalJSON

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

type EasServerAddress

type EasServerAddress struct {
	Ip NullableIpAddr `json:"ip"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	Port int32 `json:"port"`
}

EasServerAddress Represents the IP address and port of an EAS server.

func NewEasServerAddress

func NewEasServerAddress(ip NullableIpAddr, port int32) *EasServerAddress

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

func NewEasServerAddressWithDefaults

func NewEasServerAddressWithDefaults() *EasServerAddress

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

func (*EasServerAddress) GetIp

func (o *EasServerAddress) GetIp() IpAddr

GetIp returns the Ip field value If the value is explicit nil, the zero value for IpAddr will be returned

func (*EasServerAddress) GetIpOk

func (o *EasServerAddress) GetIpOk() (*IpAddr, bool)

GetIpOk returns a tuple with the Ip 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 (*EasServerAddress) GetPort

func (o *EasServerAddress) GetPort() int32

GetPort returns the Port field value

func (*EasServerAddress) GetPortOk

func (o *EasServerAddress) GetPortOk() (*int32, bool)

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

func (EasServerAddress) MarshalJSON

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

func (*EasServerAddress) SetIp

func (o *EasServerAddress) SetIp(v IpAddr)

SetIp sets field value

func (*EasServerAddress) SetPort

func (o *EasServerAddress) SetPort(v int32)

SetPort sets field value

func (EasServerAddress) ToMap

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

func (*EasServerAddress) UnmarshalJSON

func (o *EasServerAddress) 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 EthFlowDescription

type EthFlowDescription struct {
	// String identifying a MAC address formatted in the hexadecimal notation according to clause 1.1 and clause 2.1 of RFC 7042.
	DestMacAddr *string `json:"destMacAddr,omitempty"`
	EthType     string  `json:"ethType"`
	// Defines a packet filter of an IP flow.
	FDesc *string        `json:"fDesc,omitempty"`
	FDir  *FlowDirection `json:"fDir,omitempty"`
	// String identifying a MAC address formatted in the hexadecimal notation according to clause 1.1 and clause 2.1 of RFC 7042.
	SourceMacAddr *string  `json:"sourceMacAddr,omitempty"`
	VlanTags      []string `json:"vlanTags,omitempty"`
	// String identifying a MAC address formatted in the hexadecimal notation according to clause 1.1 and clause 2.1 of RFC 7042.
	SrcMacAddrEnd *string `json:"srcMacAddrEnd,omitempty"`
	// String identifying a MAC address formatted in the hexadecimal notation according to clause 1.1 and clause 2.1 of RFC 7042.
	DestMacAddrEnd *string `json:"destMacAddrEnd,omitempty"`
}

EthFlowDescription Identifies an Ethernet flow.

func NewEthFlowDescription

func NewEthFlowDescription(ethType string) *EthFlowDescription

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

func NewEthFlowDescriptionWithDefaults

func NewEthFlowDescriptionWithDefaults() *EthFlowDescription

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

func (*EthFlowDescription) GetDestMacAddr

func (o *EthFlowDescription) GetDestMacAddr() string

GetDestMacAddr returns the DestMacAddr field value if set, zero value otherwise.

func (*EthFlowDescription) GetDestMacAddrEnd

func (o *EthFlowDescription) GetDestMacAddrEnd() string

GetDestMacAddrEnd returns the DestMacAddrEnd field value if set, zero value otherwise.

func (*EthFlowDescription) GetDestMacAddrEndOk

func (o *EthFlowDescription) GetDestMacAddrEndOk() (*string, bool)

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

func (*EthFlowDescription) GetDestMacAddrOk

func (o *EthFlowDescription) GetDestMacAddrOk() (*string, bool)

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

func (*EthFlowDescription) GetEthType

func (o *EthFlowDescription) GetEthType() string

GetEthType returns the EthType field value

func (*EthFlowDescription) GetEthTypeOk

func (o *EthFlowDescription) GetEthTypeOk() (*string, bool)

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

func (*EthFlowDescription) GetFDesc

func (o *EthFlowDescription) GetFDesc() string

GetFDesc returns the FDesc field value if set, zero value otherwise.

func (*EthFlowDescription) GetFDescOk

func (o *EthFlowDescription) GetFDescOk() (*string, bool)

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

func (*EthFlowDescription) GetFDir

func (o *EthFlowDescription) GetFDir() FlowDirection

GetFDir returns the FDir field value if set, zero value otherwise.

func (*EthFlowDescription) GetFDirOk

func (o *EthFlowDescription) GetFDirOk() (*FlowDirection, bool)

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

func (*EthFlowDescription) GetSourceMacAddr

func (o *EthFlowDescription) GetSourceMacAddr() string

GetSourceMacAddr returns the SourceMacAddr field value if set, zero value otherwise.

func (*EthFlowDescription) GetSourceMacAddrOk

func (o *EthFlowDescription) GetSourceMacAddrOk() (*string, bool)

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

func (*EthFlowDescription) GetSrcMacAddrEnd

func (o *EthFlowDescription) GetSrcMacAddrEnd() string

GetSrcMacAddrEnd returns the SrcMacAddrEnd field value if set, zero value otherwise.

func (*EthFlowDescription) GetSrcMacAddrEndOk

func (o *EthFlowDescription) GetSrcMacAddrEndOk() (*string, bool)

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

func (*EthFlowDescription) GetVlanTags

func (o *EthFlowDescription) GetVlanTags() []string

GetVlanTags returns the VlanTags field value if set, zero value otherwise.

func (*EthFlowDescription) GetVlanTagsOk

func (o *EthFlowDescription) GetVlanTagsOk() ([]string, bool)

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

func (*EthFlowDescription) HasDestMacAddr

func (o *EthFlowDescription) HasDestMacAddr() bool

HasDestMacAddr returns a boolean if a field has been set.

func (*EthFlowDescription) HasDestMacAddrEnd

func (o *EthFlowDescription) HasDestMacAddrEnd() bool

HasDestMacAddrEnd returns a boolean if a field has been set.

func (*EthFlowDescription) HasFDesc

func (o *EthFlowDescription) HasFDesc() bool

HasFDesc returns a boolean if a field has been set.

func (*EthFlowDescription) HasFDir

func (o *EthFlowDescription) HasFDir() bool

HasFDir returns a boolean if a field has been set.

func (*EthFlowDescription) HasSourceMacAddr

func (o *EthFlowDescription) HasSourceMacAddr() bool

HasSourceMacAddr returns a boolean if a field has been set.

func (*EthFlowDescription) HasSrcMacAddrEnd

func (o *EthFlowDescription) HasSrcMacAddrEnd() bool

HasSrcMacAddrEnd returns a boolean if a field has been set.

func (*EthFlowDescription) HasVlanTags

func (o *EthFlowDescription) HasVlanTags() bool

HasVlanTags returns a boolean if a field has been set.

func (EthFlowDescription) MarshalJSON

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

func (*EthFlowDescription) SetDestMacAddr

func (o *EthFlowDescription) SetDestMacAddr(v string)

SetDestMacAddr gets a reference to the given string and assigns it to the DestMacAddr field.

func (*EthFlowDescription) SetDestMacAddrEnd

func (o *EthFlowDescription) SetDestMacAddrEnd(v string)

SetDestMacAddrEnd gets a reference to the given string and assigns it to the DestMacAddrEnd field.

func (*EthFlowDescription) SetEthType

func (o *EthFlowDescription) SetEthType(v string)

SetEthType sets field value

func (*EthFlowDescription) SetFDesc

func (o *EthFlowDescription) SetFDesc(v string)

SetFDesc gets a reference to the given string and assigns it to the FDesc field.

func (*EthFlowDescription) SetFDir

func (o *EthFlowDescription) SetFDir(v FlowDirection)

SetFDir gets a reference to the given FlowDirection and assigns it to the FDir field.

func (*EthFlowDescription) SetSourceMacAddr

func (o *EthFlowDescription) SetSourceMacAddr(v string)

SetSourceMacAddr gets a reference to the given string and assigns it to the SourceMacAddr field.

func (*EthFlowDescription) SetSrcMacAddrEnd

func (o *EthFlowDescription) SetSrcMacAddrEnd(v string)

SetSrcMacAddrEnd gets a reference to the given string and assigns it to the SrcMacAddrEnd field.

func (*EthFlowDescription) SetVlanTags

func (o *EthFlowDescription) SetVlanTags(v []string)

SetVlanTags gets a reference to the given []string and assigns it to the VlanTags field.

func (EthFlowDescription) ToMap

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

func (*EthFlowDescription) UnmarshalJSON

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

type EventNotification

type EventNotification struct {
	// Identifies an NEF Northbound interface transaction, generated by the AF.
	AfTransId          *string                 `json:"afTransId,omitempty"`
	DnaiChgType        DnaiChangeType          `json:"dnaiChgType"`
	SourceTrafficRoute NullableRouteToLocation `json:"sourceTrafficRoute,omitempty"`
	SubscribedEvent    SubscribedEvent         `json:"subscribedEvent"`
	TargetTrafficRoute NullableRouteToLocation `json:"targetTrafficRoute,omitempty"`
	// DNAI (Data network access identifier), see clause 5.6.7 of 3GPP TS 23.501.
	SourceDnai *string `json:"sourceDnai,omitempty"`
	// DNAI (Data network access identifier), see clause 5.6.7 of 3GPP TS 23.501.
	TargetDnai *string `json:"targetDnai,omitempty"`
	// String identifying a Gpsi shall contain either an External Id or an MSISDN.  It shall be formatted as follows -External Identifier= \"extid-'extid', where 'extid'  shall be formatted according to clause 19.7.2 of 3GPP TS 23.003 that describes an  External Identifier.
	Gpsi *string `json:"gpsi,omitempty"`
	// string identifying a Ipv4 address formatted in the \"dotted decimal\" notation as defined in IETF RFC 1166.
	SrcUeIpv4Addr   *string     `json:"srcUeIpv4Addr,omitempty"`
	SrcUeIpv6Prefix *Ipv6Prefix `json:"srcUeIpv6Prefix,omitempty"`
	// string identifying a Ipv4 address formatted in the \"dotted decimal\" notation as defined in IETF RFC 1166.
	TgtUeIpv4Addr   *string     `json:"tgtUeIpv4Addr,omitempty"`
	TgtUeIpv6Prefix *Ipv6Prefix `json:"tgtUeIpv6Prefix,omitempty"`
	// String identifying a MAC address formatted in the hexadecimal notation according to clause 1.1 and clause 2.1 of RFC 7042.
	UeMac *string `json:"ueMac,omitempty"`
	// string formatted according to IETF RFC 3986 identifying a referenced resource.
	AfAckUri *string `json:"afAckUri,omitempty"`
}

EventNotification Represents a traffic influence event notification.

func NewEventNotification

func NewEventNotification(dnaiChgType DnaiChangeType, subscribedEvent SubscribedEvent) *EventNotification

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

func NewEventNotificationWithDefaults

func NewEventNotificationWithDefaults() *EventNotification

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

func (*EventNotification) GetAfAckUri

func (o *EventNotification) GetAfAckUri() string

GetAfAckUri returns the AfAckUri field value if set, zero value otherwise.

func (*EventNotification) GetAfAckUriOk

func (o *EventNotification) GetAfAckUriOk() (*string, bool)

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

func (*EventNotification) GetAfTransId

func (o *EventNotification) GetAfTransId() string

GetAfTransId returns the AfTransId field value if set, zero value otherwise.

func (*EventNotification) GetAfTransIdOk

func (o *EventNotification) GetAfTransIdOk() (*string, bool)

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

func (*EventNotification) GetDnaiChgType

func (o *EventNotification) GetDnaiChgType() DnaiChangeType

GetDnaiChgType returns the DnaiChgType field value

func (*EventNotification) GetDnaiChgTypeOk

func (o *EventNotification) GetDnaiChgTypeOk() (*DnaiChangeType, bool)

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

func (*EventNotification) GetGpsi

func (o *EventNotification) GetGpsi() string

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

func (*EventNotification) GetGpsiOk

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

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

func (*EventNotification) GetSourceDnai

func (o *EventNotification) GetSourceDnai() string

GetSourceDnai returns the SourceDnai field value if set, zero value otherwise.

func (*EventNotification) GetSourceDnaiOk

func (o *EventNotification) GetSourceDnaiOk() (*string, bool)

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

func (*EventNotification) GetSourceTrafficRoute

func (o *EventNotification) GetSourceTrafficRoute() RouteToLocation

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

func (*EventNotification) GetSourceTrafficRouteOk

func (o *EventNotification) GetSourceTrafficRouteOk() (*RouteToLocation, bool)

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

func (*EventNotification) GetSrcUeIpv4Addr

func (o *EventNotification) GetSrcUeIpv4Addr() string

GetSrcUeIpv4Addr returns the SrcUeIpv4Addr field value if set, zero value otherwise.

func (*EventNotification) GetSrcUeIpv4AddrOk

func (o *EventNotification) GetSrcUeIpv4AddrOk() (*string, bool)

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

func (*EventNotification) GetSrcUeIpv6Prefix

func (o *EventNotification) GetSrcUeIpv6Prefix() Ipv6Prefix

GetSrcUeIpv6Prefix returns the SrcUeIpv6Prefix field value if set, zero value otherwise.

func (*EventNotification) GetSrcUeIpv6PrefixOk

func (o *EventNotification) GetSrcUeIpv6PrefixOk() (*Ipv6Prefix, bool)

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

func (*EventNotification) GetSubscribedEvent

func (o *EventNotification) GetSubscribedEvent() SubscribedEvent

GetSubscribedEvent returns the SubscribedEvent field value

func (*EventNotification) GetSubscribedEventOk

func (o *EventNotification) GetSubscribedEventOk() (*SubscribedEvent, bool)

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

func (*EventNotification) GetTargetDnai

func (o *EventNotification) GetTargetDnai() string

GetTargetDnai returns the TargetDnai field value if set, zero value otherwise.

func (*EventNotification) GetTargetDnaiOk

func (o *EventNotification) GetTargetDnaiOk() (*string, bool)

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

func (*EventNotification) GetTargetTrafficRoute

func (o *EventNotification) GetTargetTrafficRoute() RouteToLocation

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

func (*EventNotification) GetTargetTrafficRouteOk

func (o *EventNotification) GetTargetTrafficRouteOk() (*RouteToLocation, bool)

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

func (*EventNotification) GetTgtUeIpv4Addr

func (o *EventNotification) GetTgtUeIpv4Addr() string

GetTgtUeIpv4Addr returns the TgtUeIpv4Addr field value if set, zero value otherwise.

func (*EventNotification) GetTgtUeIpv4AddrOk

func (o *EventNotification) GetTgtUeIpv4AddrOk() (*string, bool)

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

func (*EventNotification) GetTgtUeIpv6Prefix

func (o *EventNotification) GetTgtUeIpv6Prefix() Ipv6Prefix

GetTgtUeIpv6Prefix returns the TgtUeIpv6Prefix field value if set, zero value otherwise.

func (*EventNotification) GetTgtUeIpv6PrefixOk

func (o *EventNotification) GetTgtUeIpv6PrefixOk() (*Ipv6Prefix, bool)

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

func (*EventNotification) GetUeMac

func (o *EventNotification) GetUeMac() string

GetUeMac returns the UeMac field value if set, zero value otherwise.

func (*EventNotification) GetUeMacOk

func (o *EventNotification) GetUeMacOk() (*string, bool)

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

func (*EventNotification) HasAfAckUri

func (o *EventNotification) HasAfAckUri() bool

HasAfAckUri returns a boolean if a field has been set.

func (*EventNotification) HasAfTransId

func (o *EventNotification) HasAfTransId() bool

HasAfTransId returns a boolean if a field has been set.

func (*EventNotification) HasGpsi

func (o *EventNotification) HasGpsi() bool

HasGpsi returns a boolean if a field has been set.

func (*EventNotification) HasSourceDnai

func (o *EventNotification) HasSourceDnai() bool

HasSourceDnai returns a boolean if a field has been set.

func (*EventNotification) HasSourceTrafficRoute

func (o *EventNotification) HasSourceTrafficRoute() bool

HasSourceTrafficRoute returns a boolean if a field has been set.

func (*EventNotification) HasSrcUeIpv4Addr

func (o *EventNotification) HasSrcUeIpv4Addr() bool

HasSrcUeIpv4Addr returns a boolean if a field has been set.

func (*EventNotification) HasSrcUeIpv6Prefix

func (o *EventNotification) HasSrcUeIpv6Prefix() bool

HasSrcUeIpv6Prefix returns a boolean if a field has been set.

func (*EventNotification) HasTargetDnai

func (o *EventNotification) HasTargetDnai() bool

HasTargetDnai returns a boolean if a field has been set.

func (*EventNotification) HasTargetTrafficRoute

func (o *EventNotification) HasTargetTrafficRoute() bool

HasTargetTrafficRoute returns a boolean if a field has been set.

func (*EventNotification) HasTgtUeIpv4Addr

func (o *EventNotification) HasTgtUeIpv4Addr() bool

HasTgtUeIpv4Addr returns a boolean if a field has been set.

func (*EventNotification) HasTgtUeIpv6Prefix

func (o *EventNotification) HasTgtUeIpv6Prefix() bool

HasTgtUeIpv6Prefix returns a boolean if a field has been set.

func (*EventNotification) HasUeMac

func (o *EventNotification) HasUeMac() bool

HasUeMac returns a boolean if a field has been set.

func (EventNotification) MarshalJSON

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

func (*EventNotification) SetAfAckUri

func (o *EventNotification) SetAfAckUri(v string)

SetAfAckUri gets a reference to the given string and assigns it to the AfAckUri field.

func (*EventNotification) SetAfTransId

func (o *EventNotification) SetAfTransId(v string)

SetAfTransId gets a reference to the given string and assigns it to the AfTransId field.

func (*EventNotification) SetDnaiChgType

func (o *EventNotification) SetDnaiChgType(v DnaiChangeType)

SetDnaiChgType sets field value

func (*EventNotification) SetGpsi

func (o *EventNotification) SetGpsi(v string)

SetGpsi gets a reference to the given string and assigns it to the Gpsi field.

func (*EventNotification) SetSourceDnai

func (o *EventNotification) SetSourceDnai(v string)

SetSourceDnai gets a reference to the given string and assigns it to the SourceDnai field.

func (*EventNotification) SetSourceTrafficRoute

func (o *EventNotification) SetSourceTrafficRoute(v RouteToLocation)

SetSourceTrafficRoute gets a reference to the given NullableRouteToLocation and assigns it to the SourceTrafficRoute field.

func (*EventNotification) SetSourceTrafficRouteNil

func (o *EventNotification) SetSourceTrafficRouteNil()

SetSourceTrafficRouteNil sets the value for SourceTrafficRoute to be an explicit nil

func (*EventNotification) SetSrcUeIpv4Addr

func (o *EventNotification) SetSrcUeIpv4Addr(v string)

SetSrcUeIpv4Addr gets a reference to the given string and assigns it to the SrcUeIpv4Addr field.

func (*EventNotification) SetSrcUeIpv6Prefix

func (o *EventNotification) SetSrcUeIpv6Prefix(v Ipv6Prefix)

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

func (*EventNotification) SetSubscribedEvent

func (o *EventNotification) SetSubscribedEvent(v SubscribedEvent)

SetSubscribedEvent sets field value

func (*EventNotification) SetTargetDnai

func (o *EventNotification) SetTargetDnai(v string)

SetTargetDnai gets a reference to the given string and assigns it to the TargetDnai field.

func (*EventNotification) SetTargetTrafficRoute

func (o *EventNotification) SetTargetTrafficRoute(v RouteToLocation)

SetTargetTrafficRoute gets a reference to the given NullableRouteToLocation and assigns it to the TargetTrafficRoute field.

func (*EventNotification) SetTargetTrafficRouteNil

func (o *EventNotification) SetTargetTrafficRouteNil()

SetTargetTrafficRouteNil sets the value for TargetTrafficRoute to be an explicit nil

func (*EventNotification) SetTgtUeIpv4Addr

func (o *EventNotification) SetTgtUeIpv4Addr(v string)

SetTgtUeIpv4Addr gets a reference to the given string and assigns it to the TgtUeIpv4Addr field.

func (*EventNotification) SetTgtUeIpv6Prefix

func (o *EventNotification) SetTgtUeIpv6Prefix(v Ipv6Prefix)

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

func (*EventNotification) SetUeMac

func (o *EventNotification) SetUeMac(v string)

SetUeMac gets a reference to the given string and assigns it to the UeMac field.

func (EventNotification) ToMap

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

func (*EventNotification) UnmarshalJSON

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

func (*EventNotification) UnsetSourceTrafficRoute

func (o *EventNotification) UnsetSourceTrafficRoute()

UnsetSourceTrafficRoute ensures that no value is present for SourceTrafficRoute, not even an explicit nil

func (*EventNotification) UnsetTargetTrafficRoute

func (o *EventNotification) UnsetTargetTrafficRoute()

UnsetTargetTrafficRoute ensures that no value is present for TargetTrafficRoute, not even an explicit nil

type FlowDirection

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

FlowDirection Possible values are - DOWNLINK: The corresponding filter applies for traffic to the UE. - UPLINK: The corresponding filter applies for traffic from the UE. - BIDIRECTIONAL: The corresponding filter applies for traffic both to and from the UE. - UNSPECIFIED: The corresponding filter applies for traffic to the UE (downlink), but has no specific direction declared. The service data flow detection shall apply the filter for uplink traffic as if the filter was bidirectional. The PCF shall not use the value UNSPECIFIED in filters created by the network in NW-initiated procedures. The PCF shall only include the value UNSPECIFIED in filters in UE-initiated procedures if the same value is received from the SMF.

func (*FlowDirection) MarshalJSON

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

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

func (*FlowDirection) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type FlowInfo

type FlowInfo struct {
	// Indicates the IP flow identifier.
	FlowId int32 `json:"flowId"`
	// Indicates the packet filters of the IP flow. Refer to clause 5.3.8 of 3GPP TS 29.214 for encoding. It shall contain UL and/or DL IP flow description.
	FlowDescriptions []string `json:"flowDescriptions,omitempty"`
}

FlowInfo Represents IP flow information.

func NewFlowInfo

func NewFlowInfo(flowId int32) *FlowInfo

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

func NewFlowInfoWithDefaults

func NewFlowInfoWithDefaults() *FlowInfo

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

func (*FlowInfo) GetFlowDescriptions

func (o *FlowInfo) GetFlowDescriptions() []string

GetFlowDescriptions returns the FlowDescriptions field value if set, zero value otherwise.

func (*FlowInfo) GetFlowDescriptionsOk

func (o *FlowInfo) GetFlowDescriptionsOk() ([]string, bool)

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

func (*FlowInfo) GetFlowId

func (o *FlowInfo) GetFlowId() int32

GetFlowId returns the FlowId field value

func (*FlowInfo) GetFlowIdOk

func (o *FlowInfo) GetFlowIdOk() (*int32, bool)

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

func (*FlowInfo) HasFlowDescriptions

func (o *FlowInfo) HasFlowDescriptions() bool

HasFlowDescriptions returns a boolean if a field has been set.

func (FlowInfo) MarshalJSON

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

func (*FlowInfo) SetFlowDescriptions

func (o *FlowInfo) SetFlowDescriptions(v []string)

SetFlowDescriptions gets a reference to the given []string and assigns it to the FlowDescriptions field.

func (*FlowInfo) SetFlowId

func (o *FlowInfo) SetFlowId(v int32)

SetFlowId sets field value

func (FlowInfo) ToMap

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

func (*FlowInfo) UnmarshalJSON

func (o *FlowInfo) 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 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 GeographicalArea

type GeographicalArea struct {
	CivicAddress *CivicAddress   `json:"civicAddress,omitempty"`
	Shapes       *GeographicArea `json:"shapes,omitempty"`
}

GeographicalArea Contains geographical area information (e.g.a civic address or shapes).

func NewGeographicalArea

func NewGeographicalArea() *GeographicalArea

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

func NewGeographicalAreaWithDefaults

func NewGeographicalAreaWithDefaults() *GeographicalArea

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

func (*GeographicalArea) GetCivicAddress

func (o *GeographicalArea) GetCivicAddress() CivicAddress

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

func (*GeographicalArea) GetCivicAddressOk

func (o *GeographicalArea) 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 (*GeographicalArea) GetShapes

func (o *GeographicalArea) GetShapes() GeographicArea

GetShapes returns the Shapes field value if set, zero value otherwise.

func (*GeographicalArea) GetShapesOk

func (o *GeographicalArea) GetShapesOk() (*GeographicArea, bool)

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

func (*GeographicalArea) HasCivicAddress

func (o *GeographicalArea) HasCivicAddress() bool

HasCivicAddress returns a boolean if a field has been set.

func (*GeographicalArea) HasShapes

func (o *GeographicalArea) HasShapes() bool

HasShapes returns a boolean if a field has been set.

func (GeographicalArea) MarshalJSON

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

func (*GeographicalArea) SetCivicAddress

func (o *GeographicalArea) SetCivicAddress(v CivicAddress)

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

func (*GeographicalArea) SetShapes

func (o *GeographicalArea) SetShapes(v GeographicArea)

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

func (GeographicalArea) ToMap

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

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 IndividualTrafficInfluenceSubscriptionAPIService

type IndividualTrafficInfluenceSubscriptionAPIService service

IndividualTrafficInfluenceSubscriptionAPIService IndividualTrafficInfluenceSubscriptionAPI service

func (*IndividualTrafficInfluenceSubscriptionAPIService) DeleteAnSubscription

DeleteAnSubscription Deletes an already existing subscription

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param afId Identifier of the AF
@param subscriptionId Identifier of the subscription resource
@return ApiDeleteAnSubscriptionRequest

func (*IndividualTrafficInfluenceSubscriptionAPIService) DeleteAnSubscriptionExecute

Execute executes the request

func (*IndividualTrafficInfluenceSubscriptionAPIService) FullyUpdateAnSubscription

FullyUpdateAnSubscription Fully updates/replaces an existing subscription resource

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param afId Identifier of the AF
@param subscriptionId Identifier of the subscription resource
@return ApiFullyUpdateAnSubscriptionRequest

func (*IndividualTrafficInfluenceSubscriptionAPIService) FullyUpdateAnSubscriptionExecute

Execute executes the request

@return TrafficInfluSub

func (*IndividualTrafficInfluenceSubscriptionAPIService) PartialUpdateAnSubscription

PartialUpdateAnSubscription Partially updates/replaces an existing subscription resource

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param afId Identifier of the AF
@param subscriptionId Identifier of the subscription resource
@return ApiPartialUpdateAnSubscriptionRequest

func (*IndividualTrafficInfluenceSubscriptionAPIService) PartialUpdateAnSubscriptionExecute

Execute executes the request

@return TrafficInfluSub

func (*IndividualTrafficInfluenceSubscriptionAPIService) ReadAnSubscription

ReadAnSubscription read an active subscriptions for the SCS/AS and the subscription Id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param afId Identifier of the AF
@param subscriptionId Identifier of the subscription resource
@return ApiReadAnSubscriptionRequest

func (*IndividualTrafficInfluenceSubscriptionAPIService) ReadAnSubscriptionExecute

Execute executes the request

@return TrafficInfluSub

type InvalidParam

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

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

func NewInvalidParam

func NewInvalidParam(param string) *InvalidParam

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

func NewInvalidParamWithDefaults

func NewInvalidParamWithDefaults() *InvalidParam

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

func (*InvalidParam) GetParam

func (o *InvalidParam) GetParam() string

GetParam returns the Param field value

func (*InvalidParam) GetParamOk

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

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

func (*InvalidParam) GetReason

func (o *InvalidParam) GetReason() string

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

func (*InvalidParam) GetReasonOk

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

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

func (*InvalidParam) HasReason

func (o *InvalidParam) HasReason() bool

HasReason returns a boolean if a field has been set.

func (InvalidParam) MarshalJSON

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

func (*InvalidParam) SetParam

func (o *InvalidParam) SetParam(v string)

SetParam sets field value

func (*InvalidParam) SetReason

func (o *InvalidParam) SetReason(v string)

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

func (InvalidParam) ToMap

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

func (*InvalidParam) UnmarshalJSON

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

type IpAddr

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

IpAddr Contains an IP adresse.

func NewIpAddr

func NewIpAddr() *IpAddr

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

func NewIpAddrWithDefaults

func NewIpAddrWithDefaults() *IpAddr

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

func (*IpAddr) GetIpv4Addr

func (o *IpAddr) GetIpv4Addr() string

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

func (*IpAddr) GetIpv4AddrOk

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

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

func (*IpAddr) GetIpv6Addr

func (o *IpAddr) GetIpv6Addr() Ipv6Addr1

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

func (*IpAddr) GetIpv6AddrOk

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

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

func (*IpAddr) GetIpv6Prefix

func (o *IpAddr) GetIpv6Prefix() Ipv6Prefix

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

func (*IpAddr) GetIpv6PrefixOk

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

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

func (*IpAddr) HasIpv4Addr

func (o *IpAddr) HasIpv4Addr() bool

HasIpv4Addr returns a boolean if a field has been set.

func (*IpAddr) HasIpv6Addr

func (o *IpAddr) HasIpv6Addr() bool

HasIpv6Addr returns a boolean if a field has been set.

func (*IpAddr) HasIpv6Prefix

func (o *IpAddr) HasIpv6Prefix() bool

HasIpv6Prefix returns a boolean if a field has been set.

func (IpAddr) MarshalJSON

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

func (*IpAddr) SetIpv4Addr

func (o *IpAddr) SetIpv4Addr(v string)

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

func (*IpAddr) SetIpv6Addr

func (o *IpAddr) SetIpv6Addr(v Ipv6Addr1)

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

func (*IpAddr) SetIpv6Prefix

func (o *IpAddr) SetIpv6Prefix(v Ipv6Prefix)

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

func (IpAddr) ToMap

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

type Ipv6Addr1

type Ipv6Addr1 struct {
}

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

func NewIpv6Addr1

func NewIpv6Addr1() *Ipv6Addr1

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

func NewIpv6Addr1WithDefaults

func NewIpv6Addr1WithDefaults() *Ipv6Addr1

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

func (Ipv6Addr1) MarshalJSON

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

func (Ipv6Addr1) ToMap

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

type Ipv6Prefix

type Ipv6Prefix struct {
}

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

func NewIpv6Prefix

func NewIpv6Prefix() *Ipv6Prefix

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

func NewIpv6PrefixWithDefaults

func NewIpv6PrefixWithDefaults() *Ipv6Prefix

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

func (Ipv6Prefix) MarshalJSON

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

func (Ipv6Prefix) ToMap

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

type Local2dPointUncertaintyEllipse

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

Local2dPointUncertaintyEllipse Local 2D point with uncertainty ellipse

func NewLocal2dPointUncertaintyEllipse

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

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

func NewLocal2dPointUncertaintyEllipseWithDefaults

func NewLocal2dPointUncertaintyEllipseWithDefaults() *Local2dPointUncertaintyEllipse

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

func (*Local2dPointUncertaintyEllipse) GetConfidence

func (o *Local2dPointUncertaintyEllipse) GetConfidence() int32

GetConfidence returns the Confidence field value

func (*Local2dPointUncertaintyEllipse) GetConfidenceOk

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

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

func (*Local2dPointUncertaintyEllipse) GetLocalOrigin

func (o *Local2dPointUncertaintyEllipse) GetLocalOrigin() LocalOrigin

GetLocalOrigin returns the LocalOrigin field value

func (*Local2dPointUncertaintyEllipse) GetLocalOriginOk

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

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

func (*Local2dPointUncertaintyEllipse) GetPoint

GetPoint returns the Point field value

func (*Local2dPointUncertaintyEllipse) GetPointOk

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

func (*Local2dPointUncertaintyEllipse) GetUncertaintyEllipse

func (o *Local2dPointUncertaintyEllipse) GetUncertaintyEllipse() UncertaintyEllipse

GetUncertaintyEllipse returns the UncertaintyEllipse field value

func (*Local2dPointUncertaintyEllipse) GetUncertaintyEllipseOk

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

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

func (Local2dPointUncertaintyEllipse) MarshalJSON

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

func (*Local2dPointUncertaintyEllipse) SetConfidence

func (o *Local2dPointUncertaintyEllipse) SetConfidence(v int32)

SetConfidence sets field value

func (*Local2dPointUncertaintyEllipse) SetLocalOrigin

func (o *Local2dPointUncertaintyEllipse) SetLocalOrigin(v LocalOrigin)

SetLocalOrigin sets field value

func (*Local2dPointUncertaintyEllipse) SetPoint

SetPoint sets field value

func (*Local2dPointUncertaintyEllipse) SetUncertaintyEllipse

func (o *Local2dPointUncertaintyEllipse) SetUncertaintyEllipse(v UncertaintyEllipse)

SetUncertaintyEllipse sets field value

func (Local2dPointUncertaintyEllipse) ToMap

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

func (*Local2dPointUncertaintyEllipse) UnmarshalJSON

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

type Local3dPointUncertaintyEllipsoid

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

Local3dPointUncertaintyEllipsoid Local 3D point with uncertainty ellipsoid

func NewLocal3dPointUncertaintyEllipsoid

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

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

func NewLocal3dPointUncertaintyEllipsoidWithDefaults

func NewLocal3dPointUncertaintyEllipsoidWithDefaults() *Local3dPointUncertaintyEllipsoid

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

func (*Local3dPointUncertaintyEllipsoid) GetConfidence

func (o *Local3dPointUncertaintyEllipsoid) GetConfidence() int32

GetConfidence returns the Confidence field value

func (*Local3dPointUncertaintyEllipsoid) GetConfidenceOk

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

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

func (*Local3dPointUncertaintyEllipsoid) GetLocalOrigin

func (o *Local3dPointUncertaintyEllipsoid) GetLocalOrigin() LocalOrigin

GetLocalOrigin returns the LocalOrigin field value

func (*Local3dPointUncertaintyEllipsoid) GetLocalOriginOk

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

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

func (*Local3dPointUncertaintyEllipsoid) GetPoint

GetPoint returns the Point field value

func (*Local3dPointUncertaintyEllipsoid) GetPointOk

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

func (*Local3dPointUncertaintyEllipsoid) GetUncertaintyEllipsoid

func (o *Local3dPointUncertaintyEllipsoid) GetUncertaintyEllipsoid() UncertaintyEllipsoid

GetUncertaintyEllipsoid returns the UncertaintyEllipsoid field value

func (*Local3dPointUncertaintyEllipsoid) GetUncertaintyEllipsoidOk

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

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

func (Local3dPointUncertaintyEllipsoid) MarshalJSON

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

func (*Local3dPointUncertaintyEllipsoid) SetConfidence

func (o *Local3dPointUncertaintyEllipsoid) SetConfidence(v int32)

SetConfidence sets field value

func (*Local3dPointUncertaintyEllipsoid) SetLocalOrigin

func (o *Local3dPointUncertaintyEllipsoid) SetLocalOrigin(v LocalOrigin)

SetLocalOrigin sets field value

func (*Local3dPointUncertaintyEllipsoid) SetPoint

SetPoint sets field value

func (*Local3dPointUncertaintyEllipsoid) SetUncertaintyEllipsoid

func (o *Local3dPointUncertaintyEllipsoid) SetUncertaintyEllipsoid(v UncertaintyEllipsoid)

SetUncertaintyEllipsoid sets field value

func (Local3dPointUncertaintyEllipsoid) ToMap

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

func (*Local3dPointUncertaintyEllipsoid) UnmarshalJSON

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

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

type MappedNullable interface {
	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 NullableAfAckInfo

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

func NewNullableAfAckInfo

func NewNullableAfAckInfo(val *AfAckInfo) *NullableAfAckInfo

func (NullableAfAckInfo) Get

func (v NullableAfAckInfo) Get() *AfAckInfo

func (NullableAfAckInfo) IsSet

func (v NullableAfAckInfo) IsSet() bool

func (NullableAfAckInfo) MarshalJSON

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

func (*NullableAfAckInfo) Set

func (v *NullableAfAckInfo) Set(val *AfAckInfo)

func (*NullableAfAckInfo) UnmarshalJSON

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

func (*NullableAfAckInfo) Unset

func (v *NullableAfAckInfo) Unset()

type NullableAfResultInfo

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

func NewNullableAfResultInfo

func NewNullableAfResultInfo(val *AfResultInfo) *NullableAfResultInfo

func (NullableAfResultInfo) Get

func (NullableAfResultInfo) IsSet

func (v NullableAfResultInfo) IsSet() bool

func (NullableAfResultInfo) MarshalJSON

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

func (*NullableAfResultInfo) Set

func (v *NullableAfResultInfo) Set(val *AfResultInfo)

func (*NullableAfResultInfo) UnmarshalJSON

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

func (*NullableAfResultInfo) Unset

func (v *NullableAfResultInfo) Unset()

type NullableAfResultStatus

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

func NewNullableAfResultStatus

func NewNullableAfResultStatus(val *AfResultStatus) *NullableAfResultStatus

func (NullableAfResultStatus) Get

func (NullableAfResultStatus) IsSet

func (v NullableAfResultStatus) IsSet() bool

func (NullableAfResultStatus) MarshalJSON

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

func (*NullableAfResultStatus) Set

func (*NullableAfResultStatus) UnmarshalJSON

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

func (*NullableAfResultStatus) Unset

func (v *NullableAfResultStatus) 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 NullableDnaiChangeType

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

func NewNullableDnaiChangeType

func NewNullableDnaiChangeType(val *DnaiChangeType) *NullableDnaiChangeType

func (NullableDnaiChangeType) Get

func (NullableDnaiChangeType) IsSet

func (v NullableDnaiChangeType) IsSet() bool

func (NullableDnaiChangeType) MarshalJSON

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

func (*NullableDnaiChangeType) Set

func (*NullableDnaiChangeType) UnmarshalJSON

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

func (*NullableDnaiChangeType) Unset

func (v *NullableDnaiChangeType) Unset()

type NullableEasIpReplacementInfo

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

func NewNullableEasIpReplacementInfo

func NewNullableEasIpReplacementInfo(val *EasIpReplacementInfo) *NullableEasIpReplacementInfo

func (NullableEasIpReplacementInfo) Get

func (NullableEasIpReplacementInfo) IsSet

func (NullableEasIpReplacementInfo) MarshalJSON

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

func (*NullableEasIpReplacementInfo) Set

func (*NullableEasIpReplacementInfo) UnmarshalJSON

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

func (*NullableEasIpReplacementInfo) Unset

func (v *NullableEasIpReplacementInfo) Unset()

type NullableEasServerAddress

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

func NewNullableEasServerAddress

func NewNullableEasServerAddress(val *EasServerAddress) *NullableEasServerAddress

func (NullableEasServerAddress) Get

func (NullableEasServerAddress) IsSet

func (v NullableEasServerAddress) IsSet() bool

func (NullableEasServerAddress) MarshalJSON

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

func (*NullableEasServerAddress) Set

func (*NullableEasServerAddress) UnmarshalJSON

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

func (*NullableEasServerAddress) Unset

func (v *NullableEasServerAddress) 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 NullableEthFlowDescription

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

func NewNullableEthFlowDescription

func NewNullableEthFlowDescription(val *EthFlowDescription) *NullableEthFlowDescription

func (NullableEthFlowDescription) Get

func (NullableEthFlowDescription) IsSet

func (v NullableEthFlowDescription) IsSet() bool

func (NullableEthFlowDescription) MarshalJSON

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

func (*NullableEthFlowDescription) Set

func (*NullableEthFlowDescription) UnmarshalJSON

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

func (*NullableEthFlowDescription) Unset

func (v *NullableEthFlowDescription) Unset()

type NullableEventNotification

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

func NewNullableEventNotification

func NewNullableEventNotification(val *EventNotification) *NullableEventNotification

func (NullableEventNotification) Get

func (NullableEventNotification) IsSet

func (v NullableEventNotification) IsSet() bool

func (NullableEventNotification) MarshalJSON

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

func (*NullableEventNotification) Set

func (*NullableEventNotification) UnmarshalJSON

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

func (*NullableEventNotification) Unset

func (v *NullableEventNotification) 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 NullableFlowDirection

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

func NewNullableFlowDirection

func NewNullableFlowDirection(val *FlowDirection) *NullableFlowDirection

func (NullableFlowDirection) Get

func (NullableFlowDirection) IsSet

func (v NullableFlowDirection) IsSet() bool

func (NullableFlowDirection) MarshalJSON

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

func (*NullableFlowDirection) Set

func (v *NullableFlowDirection) Set(val *FlowDirection)

func (*NullableFlowDirection) UnmarshalJSON

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

func (*NullableFlowDirection) Unset

func (v *NullableFlowDirection) Unset()

type NullableFlowInfo

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

func NewNullableFlowInfo

func NewNullableFlowInfo(val *FlowInfo) *NullableFlowInfo

func (NullableFlowInfo) Get

func (v NullableFlowInfo) Get() *FlowInfo

func (NullableFlowInfo) IsSet

func (v NullableFlowInfo) IsSet() bool

func (NullableFlowInfo) MarshalJSON

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

func (*NullableFlowInfo) Set

func (v *NullableFlowInfo) Set(val *FlowInfo)

func (*NullableFlowInfo) UnmarshalJSON

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

func (*NullableFlowInfo) Unset

func (v *NullableFlowInfo) 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 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 NullableGeographicalArea

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

func NewNullableGeographicalArea

func NewNullableGeographicalArea(val *GeographicalArea) *NullableGeographicalArea

func (NullableGeographicalArea) Get

func (NullableGeographicalArea) IsSet

func (v NullableGeographicalArea) IsSet() bool

func (NullableGeographicalArea) MarshalJSON

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

func (*NullableGeographicalArea) Set

func (*NullableGeographicalArea) UnmarshalJSON

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

func (*NullableGeographicalArea) Unset

func (v *NullableGeographicalArea) 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 NullableInt

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

func NewNullableInt

func NewNullableInt(val *int) *NullableInt

func (NullableInt) Get

func (v NullableInt) Get() *int

func (NullableInt) IsSet

func (v NullableInt) IsSet() bool

func (NullableInt) MarshalJSON

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

func (*NullableInt) Set

func (v *NullableInt) Set(val *int)

func (*NullableInt) UnmarshalJSON

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

func (*NullableInt) Unset

func (v *NullableInt) Unset()

type NullableInt32

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

func NewNullableInt32

func NewNullableInt32(val *int32) *NullableInt32

func (NullableInt32) Get

func (v NullableInt32) Get() *int32

func (NullableInt32) IsSet

func (v NullableInt32) IsSet() bool

func (NullableInt32) MarshalJSON

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

func (*NullableInt32) Set

func (v *NullableInt32) Set(val *int32)

func (*NullableInt32) UnmarshalJSON

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

func (*NullableInt32) Unset

func (v *NullableInt32) Unset()

type NullableInt64

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

func NewNullableInt64

func NewNullableInt64(val *int64) *NullableInt64

func (NullableInt64) Get

func (v NullableInt64) Get() *int64

func (NullableInt64) IsSet

func (v NullableInt64) IsSet() bool

func (NullableInt64) MarshalJSON

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

func (*NullableInt64) Set

func (v *NullableInt64) Set(val *int64)

func (*NullableInt64) UnmarshalJSON

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

func (*NullableInt64) Unset

func (v *NullableInt64) Unset()

type NullableInvalidParam

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

func NewNullableInvalidParam

func NewNullableInvalidParam(val *InvalidParam) *NullableInvalidParam

func (NullableInvalidParam) Get

func (NullableInvalidParam) IsSet

func (v NullableInvalidParam) IsSet() bool

func (NullableInvalidParam) MarshalJSON

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

func (*NullableInvalidParam) Set

func (v *NullableInvalidParam) Set(val *InvalidParam)

func (*NullableInvalidParam) UnmarshalJSON

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

func (*NullableInvalidParam) Unset

func (v *NullableInvalidParam) Unset()

type NullableIpAddr

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

func NewNullableIpAddr

func NewNullableIpAddr(val *IpAddr) *NullableIpAddr

func (NullableIpAddr) Get

func (v NullableIpAddr) Get() *IpAddr

func (NullableIpAddr) IsSet

func (v NullableIpAddr) IsSet() bool

func (NullableIpAddr) MarshalJSON

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

func (*NullableIpAddr) Set

func (v *NullableIpAddr) Set(val *IpAddr)

func (*NullableIpAddr) UnmarshalJSON

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

func (*NullableIpAddr) Unset

func (v *NullableIpAddr) Unset()

type NullableIpv6Addr1

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

func NewNullableIpv6Addr1

func NewNullableIpv6Addr1(val *Ipv6Addr1) *NullableIpv6Addr1

func (NullableIpv6Addr1) Get

func (v NullableIpv6Addr1) Get() *Ipv6Addr1

func (NullableIpv6Addr1) IsSet

func (v NullableIpv6Addr1) IsSet() bool

func (NullableIpv6Addr1) MarshalJSON

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

func (*NullableIpv6Addr1) Set

func (v *NullableIpv6Addr1) Set(val *Ipv6Addr1)

func (*NullableIpv6Addr1) UnmarshalJSON

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

func (*NullableIpv6Addr1) Unset

func (v *NullableIpv6Addr1) Unset()

type NullableIpv6Prefix

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

func NewNullableIpv6Prefix

func NewNullableIpv6Prefix(val *Ipv6Prefix) *NullableIpv6Prefix

func (NullableIpv6Prefix) Get

func (v NullableIpv6Prefix) Get() *Ipv6Prefix

func (NullableIpv6Prefix) IsSet

func (v NullableIpv6Prefix) IsSet() bool

func (NullableIpv6Prefix) MarshalJSON

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

func (*NullableIpv6Prefix) Set

func (v *NullableIpv6Prefix) Set(val *Ipv6Prefix)

func (*NullableIpv6Prefix) UnmarshalJSON

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

func (*NullableIpv6Prefix) Unset

func (v *NullableIpv6Prefix) Unset()

type NullableLocal2dPointUncertaintyEllipse

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

func (NullableLocal2dPointUncertaintyEllipse) Get

func (NullableLocal2dPointUncertaintyEllipse) IsSet

func (NullableLocal2dPointUncertaintyEllipse) MarshalJSON

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

func (*NullableLocal2dPointUncertaintyEllipse) Set

func (*NullableLocal2dPointUncertaintyEllipse) UnmarshalJSON

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

func (*NullableLocal2dPointUncertaintyEllipse) Unset

type NullableLocal3dPointUncertaintyEllipsoid

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

func (NullableLocal3dPointUncertaintyEllipsoid) Get

func (NullableLocal3dPointUncertaintyEllipsoid) IsSet

func (NullableLocal3dPointUncertaintyEllipsoid) MarshalJSON

func (*NullableLocal3dPointUncertaintyEllipsoid) Set

func (*NullableLocal3dPointUncertaintyEllipsoid) UnmarshalJSON

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

func (*NullableLocal3dPointUncertaintyEllipsoid) Unset

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

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

func NewNullableProblemDetails

func NewNullableProblemDetails(val *ProblemDetails) *NullableProblemDetails

func (NullableProblemDetails) Get

func (NullableProblemDetails) IsSet

func (v NullableProblemDetails) IsSet() bool

func (NullableProblemDetails) MarshalJSON

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

func (*NullableProblemDetails) Set

func (*NullableProblemDetails) UnmarshalJSON

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

func (*NullableProblemDetails) Unset

func (v *NullableProblemDetails) Unset()

type NullableRelativeCartesianLocation

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

func (NullableRelativeCartesianLocation) Get

func (NullableRelativeCartesianLocation) IsSet

func (NullableRelativeCartesianLocation) MarshalJSON

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

func (*NullableRelativeCartesianLocation) Set

func (*NullableRelativeCartesianLocation) UnmarshalJSON

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

func (*NullableRelativeCartesianLocation) Unset

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

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

func NewNullableRouteInformation

func NewNullableRouteInformation(val *RouteInformation) *NullableRouteInformation

func (NullableRouteInformation) Get

func (NullableRouteInformation) IsSet

func (v NullableRouteInformation) IsSet() bool

func (NullableRouteInformation) MarshalJSON

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

func (*NullableRouteInformation) Set

func (*NullableRouteInformation) UnmarshalJSON

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

func (*NullableRouteInformation) Unset

func (v *NullableRouteInformation) Unset()

type NullableRouteToLocation

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

func NewNullableRouteToLocation

func NewNullableRouteToLocation(val *RouteToLocation) *NullableRouteToLocation

func (NullableRouteToLocation) Get

func (NullableRouteToLocation) IsSet

func (v NullableRouteToLocation) IsSet() bool

func (NullableRouteToLocation) MarshalJSON

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

func (*NullableRouteToLocation) Set

func (*NullableRouteToLocation) UnmarshalJSON

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

func (*NullableRouteToLocation) Unset

func (v *NullableRouteToLocation) Unset()

type NullableSnssai

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

func NewNullableSnssai

func NewNullableSnssai(val *Snssai) *NullableSnssai

func (NullableSnssai) Get

func (v NullableSnssai) Get() *Snssai

func (NullableSnssai) IsSet

func (v NullableSnssai) IsSet() bool

func (NullableSnssai) MarshalJSON

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

func (*NullableSnssai) Set

func (v *NullableSnssai) Set(val *Snssai)

func (*NullableSnssai) UnmarshalJSON

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

func (*NullableSnssai) Unset

func (v *NullableSnssai) Unset()

type NullableString

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

func NewNullableString

func NewNullableString(val *string) *NullableString

func (NullableString) Get

func (v NullableString) Get() *string

func (NullableString) IsSet

func (v NullableString) IsSet() bool

func (NullableString) MarshalJSON

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

func (*NullableString) Set

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

func (*NullableString) UnmarshalJSON

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

func (*NullableString) Unset

func (v *NullableString) Unset()

type NullableSubscribedEvent

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

func NewNullableSubscribedEvent

func NewNullableSubscribedEvent(val *SubscribedEvent) *NullableSubscribedEvent

func (NullableSubscribedEvent) Get

func (NullableSubscribedEvent) IsSet

func (v NullableSubscribedEvent) IsSet() bool

func (NullableSubscribedEvent) MarshalJSON

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

func (*NullableSubscribedEvent) Set

func (*NullableSubscribedEvent) UnmarshalJSON

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

func (*NullableSubscribedEvent) Unset

func (v *NullableSubscribedEvent) 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 NullableTemporalValidity

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

func NewNullableTemporalValidity

func NewNullableTemporalValidity(val *TemporalValidity) *NullableTemporalValidity

func (NullableTemporalValidity) Get

func (NullableTemporalValidity) IsSet

func (v NullableTemporalValidity) IsSet() bool

func (NullableTemporalValidity) MarshalJSON

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

func (*NullableTemporalValidity) Set

func (*NullableTemporalValidity) UnmarshalJSON

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

func (*NullableTemporalValidity) Unset

func (v *NullableTemporalValidity) 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 NullableTrafficInfluSub

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

func NewNullableTrafficInfluSub

func NewNullableTrafficInfluSub(val *TrafficInfluSub) *NullableTrafficInfluSub

func (NullableTrafficInfluSub) Get

func (NullableTrafficInfluSub) IsSet

func (v NullableTrafficInfluSub) IsSet() bool

func (NullableTrafficInfluSub) MarshalJSON

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

func (*NullableTrafficInfluSub) Set

func (*NullableTrafficInfluSub) UnmarshalJSON

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

func (*NullableTrafficInfluSub) Unset

func (v *NullableTrafficInfluSub) Unset()

type NullableTrafficInfluSubPatch

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

func NewNullableTrafficInfluSubPatch

func NewNullableTrafficInfluSubPatch(val *TrafficInfluSubPatch) *NullableTrafficInfluSubPatch

func (NullableTrafficInfluSubPatch) Get

func (NullableTrafficInfluSubPatch) IsSet

func (NullableTrafficInfluSubPatch) MarshalJSON

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

func (*NullableTrafficInfluSubPatch) Set

func (*NullableTrafficInfluSubPatch) UnmarshalJSON

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

func (*NullableTrafficInfluSubPatch) Unset

func (v *NullableTrafficInfluSubPatch) 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 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 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 ProblemDetails

type ProblemDetails struct {
	// string providing an URI formatted according to IETF RFC 3986.
	Type *string `json:"type,omitempty"`
	// A short, human-readable summary of the problem type. It should not change from occurrence to occurrence of the problem.
	Title *string `json:"title,omitempty"`
	// The HTTP status code for this occurrence of the problem.
	Status *int32 `json:"status,omitempty"`
	// A human-readable explanation specific to this occurrence of the problem.
	Detail *string `json:"detail,omitempty"`
	// string providing an URI formatted according to IETF RFC 3986.
	Instance *string `json:"instance,omitempty"`
	// A machine-readable application error cause specific to this occurrence of the problem. This IE should be present and provide application-related error information, if available.
	Cause *string `json:"cause,omitempty"`
	// Description of invalid parameters, for a request rejected due to invalid parameters.
	InvalidParams []InvalidParam `json:"invalidParams,omitempty"`
	// A string used to indicate the features supported by an API that is used as defined in clause  6.6 in 3GPP TS 29.500. The string shall contain a bitmask indicating supported features in  hexadecimal representation Each character in the string shall take a value of \"0\" to \"9\",  \"a\" to \"f\" or \"A\" to \"F\" and shall represent the support of 4 features as described in  table 5.2.2-3. The most significant character representing the highest-numbered features shall  appear first in the string, and the character representing features 1 to 4 shall appear last  in the string. The list of features and their numbering (starting with 1) are defined  separately for each API. If the string contains a lower number of characters than there are  defined features for an API, all features that would be represented by characters that are not  present in the string are not supported.
	SupportedFeatures *string `json:"supportedFeatures,omitempty"`
}

ProblemDetails Represents additional information and details on an error response.

func NewProblemDetails

func NewProblemDetails() *ProblemDetails

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

func NewProblemDetailsWithDefaults

func NewProblemDetailsWithDefaults() *ProblemDetails

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

func (*ProblemDetails) GetCause

func (o *ProblemDetails) GetCause() string

GetCause returns the Cause field value if set, zero value otherwise.

func (*ProblemDetails) GetCauseOk

func (o *ProblemDetails) GetCauseOk() (*string, bool)

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

func (*ProblemDetails) GetDetail

func (o *ProblemDetails) GetDetail() string

GetDetail returns the Detail field value if set, zero value otherwise.

func (*ProblemDetails) GetDetailOk

func (o *ProblemDetails) GetDetailOk() (*string, bool)

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

func (*ProblemDetails) GetInstance

func (o *ProblemDetails) GetInstance() string

GetInstance returns the Instance field value if set, zero value otherwise.

func (*ProblemDetails) GetInstanceOk

func (o *ProblemDetails) GetInstanceOk() (*string, bool)

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

func (*ProblemDetails) GetInvalidParams

func (o *ProblemDetails) GetInvalidParams() []InvalidParam

GetInvalidParams returns the InvalidParams field value if set, zero value otherwise.

func (*ProblemDetails) GetInvalidParamsOk

func (o *ProblemDetails) GetInvalidParamsOk() ([]InvalidParam, bool)

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

func (*ProblemDetails) GetStatus

func (o *ProblemDetails) GetStatus() int32

GetStatus returns the Status field value if set, zero value otherwise.

func (*ProblemDetails) GetStatusOk

func (o *ProblemDetails) GetStatusOk() (*int32, bool)

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

func (*ProblemDetails) GetSupportedFeatures

func (o *ProblemDetails) GetSupportedFeatures() string

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

func (*ProblemDetails) GetSupportedFeaturesOk

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

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

func (*ProblemDetails) GetTitle

func (o *ProblemDetails) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*ProblemDetails) GetTitleOk

func (o *ProblemDetails) GetTitleOk() (*string, bool)

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

func (*ProblemDetails) GetType

func (o *ProblemDetails) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*ProblemDetails) GetTypeOk

func (o *ProblemDetails) GetTypeOk() (*string, bool)

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

func (*ProblemDetails) HasCause

func (o *ProblemDetails) HasCause() bool

HasCause returns a boolean if a field has been set.

func (*ProblemDetails) HasDetail

func (o *ProblemDetails) HasDetail() bool

HasDetail returns a boolean if a field has been set.

func (*ProblemDetails) HasInstance

func (o *ProblemDetails) HasInstance() bool

HasInstance returns a boolean if a field has been set.

func (*ProblemDetails) HasInvalidParams

func (o *ProblemDetails) HasInvalidParams() bool

HasInvalidParams returns a boolean if a field has been set.

func (*ProblemDetails) HasStatus

func (o *ProblemDetails) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*ProblemDetails) HasSupportedFeatures

func (o *ProblemDetails) HasSupportedFeatures() bool

HasSupportedFeatures returns a boolean if a field has been set.

func (*ProblemDetails) HasTitle

func (o *ProblemDetails) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*ProblemDetails) HasType

func (o *ProblemDetails) HasType() bool

HasType returns a boolean if a field has been set.

func (ProblemDetails) MarshalJSON

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

func (*ProblemDetails) SetCause

func (o *ProblemDetails) SetCause(v string)

SetCause gets a reference to the given string and assigns it to the Cause field.

func (*ProblemDetails) SetDetail

func (o *ProblemDetails) SetDetail(v string)

SetDetail gets a reference to the given string and assigns it to the Detail field.

func (*ProblemDetails) SetInstance

func (o *ProblemDetails) SetInstance(v string)

SetInstance gets a reference to the given string and assigns it to the Instance field.

func (*ProblemDetails) SetInvalidParams

func (o *ProblemDetails) SetInvalidParams(v []InvalidParam)

SetInvalidParams gets a reference to the given []InvalidParam and assigns it to the InvalidParams field.

func (*ProblemDetails) SetStatus

func (o *ProblemDetails) SetStatus(v int32)

SetStatus gets a reference to the given int32 and assigns it to the Status field.

func (*ProblemDetails) SetSupportedFeatures

func (o *ProblemDetails) SetSupportedFeatures(v string)

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

func (*ProblemDetails) SetTitle

func (o *ProblemDetails) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (*ProblemDetails) SetType

func (o *ProblemDetails) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (ProblemDetails) ToMap

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

type RelativeCartesianLocation

type RelativeCartesianLocation struct {
	// string with format 'float' as defined in OpenAPI.
	X float32 `json:"x"`
	// string with format 'float' as defined in OpenAPI.
	Y float32 `json:"y"`
	// string with format 'float' as defined in OpenAPI.
	Z *float32 `json:"z,omitempty"`
}

RelativeCartesianLocation Relative Cartesian Location

func NewRelativeCartesianLocation

func NewRelativeCartesianLocation(x float32, y float32) *RelativeCartesianLocation

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

func NewRelativeCartesianLocationWithDefaults

func NewRelativeCartesianLocationWithDefaults() *RelativeCartesianLocation

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

func (*RelativeCartesianLocation) GetX

GetX returns the X field value

func (*RelativeCartesianLocation) GetXOk

func (o *RelativeCartesianLocation) GetXOk() (*float32, bool)

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

func (*RelativeCartesianLocation) GetY

GetY returns the Y field value

func (*RelativeCartesianLocation) GetYOk

func (o *RelativeCartesianLocation) GetYOk() (*float32, bool)

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

func (*RelativeCartesianLocation) GetZ

GetZ returns the Z field value if set, zero value otherwise.

func (*RelativeCartesianLocation) GetZOk

func (o *RelativeCartesianLocation) GetZOk() (*float32, bool)

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

func (*RelativeCartesianLocation) HasZ

func (o *RelativeCartesianLocation) HasZ() bool

HasZ returns a boolean if a field has been set.

func (RelativeCartesianLocation) MarshalJSON

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

func (*RelativeCartesianLocation) SetX

SetX sets field value

func (*RelativeCartesianLocation) SetY

SetY sets field value

func (*RelativeCartesianLocation) SetZ

SetZ gets a reference to the given float32 and assigns it to the Z field.

func (RelativeCartesianLocation) ToMap

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

func (*RelativeCartesianLocation) UnmarshalJSON

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

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

type RouteInformation struct {
	// String identifying a IPv4 address formatted in the 'dotted decimal' notation as defined in RFC 1166.
	Ipv4Addr *string    `json:"ipv4Addr,omitempty"`
	Ipv6Addr *Ipv6Addr1 `json:"ipv6Addr,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	PortNumber int32 `json:"portNumber"`
}

RouteInformation At least one of the \"ipv4Addr\" attribute and the \"ipv6Addr\" attribute shall be included in the \"RouteInformation\" data type.

func NewRouteInformation

func NewRouteInformation(portNumber int32) *RouteInformation

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

func NewRouteInformationWithDefaults

func NewRouteInformationWithDefaults() *RouteInformation

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

func (*RouteInformation) GetIpv4Addr

func (o *RouteInformation) GetIpv4Addr() string

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

func (*RouteInformation) GetIpv4AddrOk

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

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

func (*RouteInformation) GetIpv6Addr

func (o *RouteInformation) GetIpv6Addr() Ipv6Addr1

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

func (*RouteInformation) GetIpv6AddrOk

func (o *RouteInformation) GetIpv6AddrOk() (*Ipv6Addr1, bool)

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

func (*RouteInformation) GetPortNumber

func (o *RouteInformation) GetPortNumber() int32

GetPortNumber returns the PortNumber field value

func (*RouteInformation) GetPortNumberOk

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

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

func (*RouteInformation) HasIpv4Addr

func (o *RouteInformation) HasIpv4Addr() bool

HasIpv4Addr returns a boolean if a field has been set.

func (*RouteInformation) HasIpv6Addr

func (o *RouteInformation) HasIpv6Addr() bool

HasIpv6Addr returns a boolean if a field has been set.

func (RouteInformation) MarshalJSON

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

func (*RouteInformation) SetIpv4Addr

func (o *RouteInformation) SetIpv4Addr(v string)

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

func (*RouteInformation) SetIpv6Addr

func (o *RouteInformation) SetIpv6Addr(v Ipv6Addr1)

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

func (*RouteInformation) SetPortNumber

func (o *RouteInformation) SetPortNumber(v int32)

SetPortNumber sets field value

func (RouteInformation) ToMap

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

func (*RouteInformation) UnmarshalJSON

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

type RouteToLocation

type RouteToLocation struct {
	// DNAI (Data network access identifier), see clause 5.6.7 of 3GPP TS 23.501.
	Dnai      string                   `json:"dnai"`
	RouteInfo NullableRouteInformation `json:"routeInfo,omitempty"`
	// Identifies the routing profile Id.
	RouteProfId NullableString `json:"routeProfId,omitempty"`
}

RouteToLocation At least one of the \"routeInfo\" attribute and the \"routeProfId\" attribute shall be included in the \"RouteToLocation\" data type.

func NewRouteToLocation

func NewRouteToLocation(dnai string) *RouteToLocation

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

func NewRouteToLocationWithDefaults

func NewRouteToLocationWithDefaults() *RouteToLocation

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

func (*RouteToLocation) GetDnai

func (o *RouteToLocation) GetDnai() string

GetDnai returns the Dnai field value

func (*RouteToLocation) GetDnaiOk

func (o *RouteToLocation) GetDnaiOk() (*string, bool)

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

func (*RouteToLocation) GetRouteInfo

func (o *RouteToLocation) GetRouteInfo() RouteInformation

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

func (*RouteToLocation) GetRouteInfoOk

func (o *RouteToLocation) GetRouteInfoOk() (*RouteInformation, bool)

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

func (*RouteToLocation) GetRouteProfId

func (o *RouteToLocation) GetRouteProfId() string

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

func (*RouteToLocation) GetRouteProfIdOk

func (o *RouteToLocation) GetRouteProfIdOk() (*string, bool)

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

func (*RouteToLocation) HasRouteInfo

func (o *RouteToLocation) HasRouteInfo() bool

HasRouteInfo returns a boolean if a field has been set.

func (*RouteToLocation) HasRouteProfId

func (o *RouteToLocation) HasRouteProfId() bool

HasRouteProfId returns a boolean if a field has been set.

func (RouteToLocation) MarshalJSON

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

func (*RouteToLocation) SetDnai

func (o *RouteToLocation) SetDnai(v string)

SetDnai sets field value

func (*RouteToLocation) SetRouteInfo

func (o *RouteToLocation) SetRouteInfo(v RouteInformation)

SetRouteInfo gets a reference to the given NullableRouteInformation and assigns it to the RouteInfo field.

func (*RouteToLocation) SetRouteInfoNil

func (o *RouteToLocation) SetRouteInfoNil()

SetRouteInfoNil sets the value for RouteInfo to be an explicit nil

func (*RouteToLocation) SetRouteProfId

func (o *RouteToLocation) SetRouteProfId(v string)

SetRouteProfId gets a reference to the given NullableString and assigns it to the RouteProfId field.

func (*RouteToLocation) SetRouteProfIdNil

func (o *RouteToLocation) SetRouteProfIdNil()

SetRouteProfIdNil sets the value for RouteProfId to be an explicit nil

func (RouteToLocation) ToMap

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

func (*RouteToLocation) UnmarshalJSON

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

func (*RouteToLocation) UnsetRouteInfo

func (o *RouteToLocation) UnsetRouteInfo()

UnsetRouteInfo ensures that no value is present for RouteInfo, not even an explicit nil

func (*RouteToLocation) UnsetRouteProfId

func (o *RouteToLocation) UnsetRouteProfId()

UnsetRouteProfId ensures that no value is present for RouteProfId, not even an explicit nil

type ServerConfiguration

type ServerConfiguration struct {
	URL         string
	Description string
	Variables   map[string]ServerVariable
}

ServerConfiguration stores the information about a server

type ServerConfigurations

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL

func (sc ServerConfigurations) URL(index int, variables map[string]string) (string, error)

URL formats template on a index using given variables

type ServerVariable

type ServerVariable struct {
	Description  string
	DefaultValue string
	EnumValues   []string
}

ServerVariable stores the information about a server variable

type Snssai

type Snssai struct {
	// Unsigned integer, within the range 0 to 255, representing the Slice/Service Type.  It indicates the expected Network Slice behaviour in terms of features and services. Values 0 to 127 correspond to the standardized SST range. Values 128 to 255 correspond  to the Operator-specific range. See clause 28.4.2 of 3GPP TS 23.003. Standardized values are defined in clause 5.15.2.2 of 3GPP TS 23.501.
	Sst int32 `json:"sst"`
	// 3-octet string, representing the Slice Differentiator, in hexadecimal representation. Each character in the string shall take a value of \"0\" to \"9\", \"a\" to \"f\" or \"A\" to \"F\" and shall represent 4 bits. The most significant character representing the 4 most significant bits of the SD shall appear first in the string, and the character representing the 4 least significant bit of the SD shall appear last in the string. This is an optional parameter that complements the Slice/Service type(s) to allow to  differentiate amongst multiple Network Slices of the same Slice/Service type. This IE shall be absent if no SD value is associated with the SST.
	Sd *string `json:"sd,omitempty"`
}

Snssai When Snssai needs to be converted to string (e.g. when used in maps as key), the string shall be composed of one to three digits \"sst\" optionally followed by \"-\" and 6 hexadecimal digits \"sd\".

func NewSnssai

func NewSnssai(sst int32) *Snssai

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

func NewSnssaiWithDefaults

func NewSnssaiWithDefaults() *Snssai

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

func (*Snssai) GetSd

func (o *Snssai) GetSd() string

GetSd returns the Sd field value if set, zero value otherwise.

func (*Snssai) GetSdOk

func (o *Snssai) GetSdOk() (*string, bool)

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

func (*Snssai) GetSst

func (o *Snssai) GetSst() int32

GetSst returns the Sst field value

func (*Snssai) GetSstOk

func (o *Snssai) GetSstOk() (*int32, bool)

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

func (*Snssai) HasSd

func (o *Snssai) HasSd() bool

HasSd returns a boolean if a field has been set.

func (Snssai) MarshalJSON

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

func (*Snssai) SetSd

func (o *Snssai) SetSd(v string)

SetSd gets a reference to the given string and assigns it to the Sd field.

func (*Snssai) SetSst

func (o *Snssai) SetSst(v int32)

SetSst sets field value

func (Snssai) ToMap

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

func (*Snssai) UnmarshalJSON

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

type SubscribedEvent

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

SubscribedEvent Possible values are: - UP_PATH_CHANGE: The AF requests to be notified when the UP path changes for the PDU session.

func (*SubscribedEvent) MarshalJSON

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

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

func (*SubscribedEvent) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type SupportedGADShapes

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

SupportedGADShapes Indicates supported GAD shapes.

func (*SupportedGADShapes) MarshalJSON

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

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

func (*SupportedGADShapes) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type TemporalValidity

type TemporalValidity struct {
	// string with format 'date-time' as defined in OpenAPI.
	StartTime *time.Time `json:"startTime,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	StopTime *time.Time `json:"stopTime,omitempty"`
}

TemporalValidity Indicates the time interval(s) during which the AF request is to be applied.

func NewTemporalValidity

func NewTemporalValidity() *TemporalValidity

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

func NewTemporalValidityWithDefaults

func NewTemporalValidityWithDefaults() *TemporalValidity

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

func (*TemporalValidity) GetStartTime

func (o *TemporalValidity) GetStartTime() time.Time

GetStartTime returns the StartTime field value if set, zero value otherwise.

func (*TemporalValidity) GetStartTimeOk

func (o *TemporalValidity) GetStartTimeOk() (*time.Time, bool)

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

func (*TemporalValidity) GetStopTime

func (o *TemporalValidity) GetStopTime() time.Time

GetStopTime returns the StopTime field value if set, zero value otherwise.

func (*TemporalValidity) GetStopTimeOk

func (o *TemporalValidity) GetStopTimeOk() (*time.Time, bool)

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

func (*TemporalValidity) HasStartTime

func (o *TemporalValidity) HasStartTime() bool

HasStartTime returns a boolean if a field has been set.

func (*TemporalValidity) HasStopTime

func (o *TemporalValidity) HasStopTime() bool

HasStopTime returns a boolean if a field has been set.

func (TemporalValidity) MarshalJSON

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

func (*TemporalValidity) SetStartTime

func (o *TemporalValidity) SetStartTime(v time.Time)

SetStartTime gets a reference to the given time.Time and assigns it to the StartTime field.

func (*TemporalValidity) SetStopTime

func (o *TemporalValidity) SetStopTime(v time.Time)

SetStopTime gets a reference to the given time.Time and assigns it to the StopTime field.

func (TemporalValidity) ToMap

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

type TrafficInfluSub

type TrafficInfluSub struct {
	OneOf *OneOf
}

TrafficInfluSub Represents a traffic influence subscription.

func (*TrafficInfluSub) MarshalJSON

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

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

func (*TrafficInfluSub) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type TrafficInfluSubPatch

type TrafficInfluSubPatch struct {
	// Identifies whether an application can be relocated once a location of the application has been selected.
	AppReloInd NullableBool `json:"appReloInd,omitempty"`
	// Identifies IP packet filters.
	TrafficFilters []FlowInfo `json:"trafficFilters,omitempty"`
	// Identifies Ethernet packet filters.
	EthTrafficFilters []EthFlowDescription `json:"ethTrafficFilters,omitempty"`
	// Identifies the N6 traffic routing requirement.
	TrafficRoutes  []RouteToLocation  `json:"trafficRoutes,omitempty"`
	TfcCorrInd     NullableBool       `json:"tfcCorrInd,omitempty"`
	TempValidities []TemporalValidity `json:"tempValidities,omitempty"`
	// Identifies a geographic zone that the AF request applies only to the traffic of UE(s) located in this specific zone.
	// Deprecated
	ValidGeoZoneIds []string `json:"validGeoZoneIds,omitempty"`
	// Identifies geographical areas within which the AF request applies.
	GeoAreas      []GeographicalArea `json:"geoAreas,omitempty"`
	AfAckInd      NullableBool       `json:"afAckInd,omitempty"`
	AddrPreserInd NullableBool       `json:"addrPreserInd,omitempty"`
	// Indicates whether simultaneous connectivity should be temporarily maintained for the source and target PSA.
	SimConnInd *bool `json:"simConnInd,omitempty"`
	// indicating a time in seconds.
	SimConnTerm *int32 `json:"simConnTerm,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible with the OpenAPI 'nullable: true' property.
	MaxAllowedUpLat NullableInt32 `json:"maxAllowedUpLat,omitempty"`
	// Contains EAS IP replacement information.
	EasIpReplaceInfos []EasIpReplacementInfo `json:"easIpReplaceInfos,omitempty"`
	// Indicates the EAS rediscovery is required for the application if it is included and set to \"true\".
	EasRedisInd *bool `json:"easRedisInd,omitempty"`
	// string formatted according to IETF RFC 3986 identifying a referenced resource.
	NotificationDestination *string               `json:"notificationDestination,omitempty"`
	EventReq                *ReportingInformation `json:"eventReq,omitempty"`
}

TrafficInfluSubPatch Represents parameters to request the modification of a traffic influence subscription resource.

func NewTrafficInfluSubPatch

func NewTrafficInfluSubPatch() *TrafficInfluSubPatch

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

func NewTrafficInfluSubPatchWithDefaults

func NewTrafficInfluSubPatchWithDefaults() *TrafficInfluSubPatch

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

func (*TrafficInfluSubPatch) GetAddrPreserInd

func (o *TrafficInfluSubPatch) GetAddrPreserInd() bool

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

func (*TrafficInfluSubPatch) GetAddrPreserIndOk

func (o *TrafficInfluSubPatch) GetAddrPreserIndOk() (*bool, bool)

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

func (*TrafficInfluSubPatch) GetAfAckInd

func (o *TrafficInfluSubPatch) GetAfAckInd() bool

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

func (*TrafficInfluSubPatch) GetAfAckIndOk

func (o *TrafficInfluSubPatch) GetAfAckIndOk() (*bool, bool)

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

func (*TrafficInfluSubPatch) GetAppReloInd

func (o *TrafficInfluSubPatch) GetAppReloInd() bool

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

func (*TrafficInfluSubPatch) GetAppReloIndOk

func (o *TrafficInfluSubPatch) GetAppReloIndOk() (*bool, bool)

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

func (*TrafficInfluSubPatch) GetEasIpReplaceInfos

func (o *TrafficInfluSubPatch) GetEasIpReplaceInfos() []EasIpReplacementInfo

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

func (*TrafficInfluSubPatch) GetEasIpReplaceInfosOk

func (o *TrafficInfluSubPatch) GetEasIpReplaceInfosOk() ([]EasIpReplacementInfo, bool)

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

func (*TrafficInfluSubPatch) GetEasRedisInd

func (o *TrafficInfluSubPatch) GetEasRedisInd() bool

GetEasRedisInd returns the EasRedisInd field value if set, zero value otherwise.

func (*TrafficInfluSubPatch) GetEasRedisIndOk

func (o *TrafficInfluSubPatch) GetEasRedisIndOk() (*bool, bool)

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

func (*TrafficInfluSubPatch) GetEthTrafficFilters

func (o *TrafficInfluSubPatch) GetEthTrafficFilters() []EthFlowDescription

GetEthTrafficFilters returns the EthTrafficFilters field value if set, zero value otherwise.

func (*TrafficInfluSubPatch) GetEthTrafficFiltersOk

func (o *TrafficInfluSubPatch) GetEthTrafficFiltersOk() ([]EthFlowDescription, bool)

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

func (*TrafficInfluSubPatch) GetEventReq

func (o *TrafficInfluSubPatch) GetEventReq() ReportingInformation

GetEventReq returns the EventReq field value if set, zero value otherwise.

func (*TrafficInfluSubPatch) GetEventReqOk

func (o *TrafficInfluSubPatch) 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 (*TrafficInfluSubPatch) GetGeoAreas

func (o *TrafficInfluSubPatch) GetGeoAreas() []GeographicalArea

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

func (*TrafficInfluSubPatch) GetGeoAreasOk

func (o *TrafficInfluSubPatch) GetGeoAreasOk() ([]GeographicalArea, bool)

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

func (*TrafficInfluSubPatch) GetMaxAllowedUpLat

func (o *TrafficInfluSubPatch) GetMaxAllowedUpLat() int32

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

func (*TrafficInfluSubPatch) GetMaxAllowedUpLatOk

func (o *TrafficInfluSubPatch) GetMaxAllowedUpLatOk() (*int32, bool)

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

func (*TrafficInfluSubPatch) GetNotificationDestination

func (o *TrafficInfluSubPatch) GetNotificationDestination() string

GetNotificationDestination returns the NotificationDestination field value if set, zero value otherwise.

func (*TrafficInfluSubPatch) GetNotificationDestinationOk

func (o *TrafficInfluSubPatch) 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 (*TrafficInfluSubPatch) GetSimConnInd

func (o *TrafficInfluSubPatch) GetSimConnInd() bool

GetSimConnInd returns the SimConnInd field value if set, zero value otherwise.

func (*TrafficInfluSubPatch) GetSimConnIndOk

func (o *TrafficInfluSubPatch) GetSimConnIndOk() (*bool, bool)

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

func (*TrafficInfluSubPatch) GetSimConnTerm

func (o *TrafficInfluSubPatch) GetSimConnTerm() int32

GetSimConnTerm returns the SimConnTerm field value if set, zero value otherwise.

func (*TrafficInfluSubPatch) GetSimConnTermOk

func (o *TrafficInfluSubPatch) GetSimConnTermOk() (*int32, bool)

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

func (*TrafficInfluSubPatch) GetTempValidities

func (o *TrafficInfluSubPatch) GetTempValidities() []TemporalValidity

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

func (*TrafficInfluSubPatch) GetTempValiditiesOk

func (o *TrafficInfluSubPatch) GetTempValiditiesOk() ([]TemporalValidity, bool)

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

func (*TrafficInfluSubPatch) GetTfcCorrInd

func (o *TrafficInfluSubPatch) GetTfcCorrInd() bool

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

func (*TrafficInfluSubPatch) GetTfcCorrIndOk

func (o *TrafficInfluSubPatch) GetTfcCorrIndOk() (*bool, bool)

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

func (*TrafficInfluSubPatch) GetTrafficFilters

func (o *TrafficInfluSubPatch) GetTrafficFilters() []FlowInfo

GetTrafficFilters returns the TrafficFilters field value if set, zero value otherwise.

func (*TrafficInfluSubPatch) GetTrafficFiltersOk

func (o *TrafficInfluSubPatch) GetTrafficFiltersOk() ([]FlowInfo, bool)

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

func (*TrafficInfluSubPatch) GetTrafficRoutes

func (o *TrafficInfluSubPatch) GetTrafficRoutes() []RouteToLocation

GetTrafficRoutes returns the TrafficRoutes field value if set, zero value otherwise.

func (*TrafficInfluSubPatch) GetTrafficRoutesOk

func (o *TrafficInfluSubPatch) GetTrafficRoutesOk() ([]RouteToLocation, bool)

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

func (*TrafficInfluSubPatch) GetValidGeoZoneIds

func (o *TrafficInfluSubPatch) GetValidGeoZoneIds() []string

GetValidGeoZoneIds returns the ValidGeoZoneIds field value if set, zero value otherwise (both if not set or set to explicit null). Deprecated

func (*TrafficInfluSubPatch) GetValidGeoZoneIdsOk

func (o *TrafficInfluSubPatch) GetValidGeoZoneIdsOk() ([]string, bool)

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

func (*TrafficInfluSubPatch) HasAddrPreserInd

func (o *TrafficInfluSubPatch) HasAddrPreserInd() bool

HasAddrPreserInd returns a boolean if a field has been set.

func (*TrafficInfluSubPatch) HasAfAckInd

func (o *TrafficInfluSubPatch) HasAfAckInd() bool

HasAfAckInd returns a boolean if a field has been set.

func (*TrafficInfluSubPatch) HasAppReloInd

func (o *TrafficInfluSubPatch) HasAppReloInd() bool

HasAppReloInd returns a boolean if a field has been set.

func (*TrafficInfluSubPatch) HasEasIpReplaceInfos

func (o *TrafficInfluSubPatch) HasEasIpReplaceInfos() bool

HasEasIpReplaceInfos returns a boolean if a field has been set.

func (*TrafficInfluSubPatch) HasEasRedisInd

func (o *TrafficInfluSubPatch) HasEasRedisInd() bool

HasEasRedisInd returns a boolean if a field has been set.

func (*TrafficInfluSubPatch) HasEthTrafficFilters

func (o *TrafficInfluSubPatch) HasEthTrafficFilters() bool

HasEthTrafficFilters returns a boolean if a field has been set.

func (*TrafficInfluSubPatch) HasEventReq

func (o *TrafficInfluSubPatch) HasEventReq() bool

HasEventReq returns a boolean if a field has been set.

func (*TrafficInfluSubPatch) HasGeoAreas

func (o *TrafficInfluSubPatch) HasGeoAreas() bool

HasGeoAreas returns a boolean if a field has been set.

func (*TrafficInfluSubPatch) HasMaxAllowedUpLat

func (o *TrafficInfluSubPatch) HasMaxAllowedUpLat() bool

HasMaxAllowedUpLat returns a boolean if a field has been set.

func (*TrafficInfluSubPatch) HasNotificationDestination

func (o *TrafficInfluSubPatch) HasNotificationDestination() bool

HasNotificationDestination returns a boolean if a field has been set.

func (*TrafficInfluSubPatch) HasSimConnInd

func (o *TrafficInfluSubPatch) HasSimConnInd() bool

HasSimConnInd returns a boolean if a field has been set.

func (*TrafficInfluSubPatch) HasSimConnTerm

func (o *TrafficInfluSubPatch) HasSimConnTerm() bool

HasSimConnTerm returns a boolean if a field has been set.

func (*TrafficInfluSubPatch) HasTempValidities

func (o *TrafficInfluSubPatch) HasTempValidities() bool

HasTempValidities returns a boolean if a field has been set.

func (*TrafficInfluSubPatch) HasTfcCorrInd

func (o *TrafficInfluSubPatch) HasTfcCorrInd() bool

HasTfcCorrInd returns a boolean if a field has been set.

func (*TrafficInfluSubPatch) HasTrafficFilters

func (o *TrafficInfluSubPatch) HasTrafficFilters() bool

HasTrafficFilters returns a boolean if a field has been set.

func (*TrafficInfluSubPatch) HasTrafficRoutes

func (o *TrafficInfluSubPatch) HasTrafficRoutes() bool

HasTrafficRoutes returns a boolean if a field has been set.

func (*TrafficInfluSubPatch) HasValidGeoZoneIds

func (o *TrafficInfluSubPatch) HasValidGeoZoneIds() bool

HasValidGeoZoneIds returns a boolean if a field has been set.

func (TrafficInfluSubPatch) MarshalJSON

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

func (*TrafficInfluSubPatch) SetAddrPreserInd

func (o *TrafficInfluSubPatch) SetAddrPreserInd(v bool)

SetAddrPreserInd gets a reference to the given NullableBool and assigns it to the AddrPreserInd field.

func (*TrafficInfluSubPatch) SetAddrPreserIndNil

func (o *TrafficInfluSubPatch) SetAddrPreserIndNil()

SetAddrPreserIndNil sets the value for AddrPreserInd to be an explicit nil

func (*TrafficInfluSubPatch) SetAfAckInd

func (o *TrafficInfluSubPatch) SetAfAckInd(v bool)

SetAfAckInd gets a reference to the given NullableBool and assigns it to the AfAckInd field.

func (*TrafficInfluSubPatch) SetAfAckIndNil

func (o *TrafficInfluSubPatch) SetAfAckIndNil()

SetAfAckIndNil sets the value for AfAckInd to be an explicit nil

func (*TrafficInfluSubPatch) SetAppReloInd

func (o *TrafficInfluSubPatch) SetAppReloInd(v bool)

SetAppReloInd gets a reference to the given NullableBool and assigns it to the AppReloInd field.

func (*TrafficInfluSubPatch) SetAppReloIndNil

func (o *TrafficInfluSubPatch) SetAppReloIndNil()

SetAppReloIndNil sets the value for AppReloInd to be an explicit nil

func (*TrafficInfluSubPatch) SetEasIpReplaceInfos

func (o *TrafficInfluSubPatch) SetEasIpReplaceInfos(v []EasIpReplacementInfo)

SetEasIpReplaceInfos gets a reference to the given []EasIpReplacementInfo and assigns it to the EasIpReplaceInfos field.

func (*TrafficInfluSubPatch) SetEasRedisInd

func (o *TrafficInfluSubPatch) SetEasRedisInd(v bool)

SetEasRedisInd gets a reference to the given bool and assigns it to the EasRedisInd field.

func (*TrafficInfluSubPatch) SetEthTrafficFilters

func (o *TrafficInfluSubPatch) SetEthTrafficFilters(v []EthFlowDescription)

SetEthTrafficFilters gets a reference to the given []EthFlowDescription and assigns it to the EthTrafficFilters field.

func (*TrafficInfluSubPatch) SetEventReq

func (o *TrafficInfluSubPatch) SetEventReq(v ReportingInformation)

SetEventReq gets a reference to the given ReportingInformation and assigns it to the EventReq field.

func (*TrafficInfluSubPatch) SetGeoAreas

func (o *TrafficInfluSubPatch) SetGeoAreas(v []GeographicalArea)

SetGeoAreas gets a reference to the given []GeographicalArea and assigns it to the GeoAreas field.

func (*TrafficInfluSubPatch) SetMaxAllowedUpLat

func (o *TrafficInfluSubPatch) SetMaxAllowedUpLat(v int32)

SetMaxAllowedUpLat gets a reference to the given NullableInt32 and assigns it to the MaxAllowedUpLat field.

func (*TrafficInfluSubPatch) SetMaxAllowedUpLatNil

func (o *TrafficInfluSubPatch) SetMaxAllowedUpLatNil()

SetMaxAllowedUpLatNil sets the value for MaxAllowedUpLat to be an explicit nil

func (*TrafficInfluSubPatch) SetNotificationDestination

func (o *TrafficInfluSubPatch) SetNotificationDestination(v string)

SetNotificationDestination gets a reference to the given string and assigns it to the NotificationDestination field.

func (*TrafficInfluSubPatch) SetSimConnInd

func (o *TrafficInfluSubPatch) SetSimConnInd(v bool)

SetSimConnInd gets a reference to the given bool and assigns it to the SimConnInd field.

func (*TrafficInfluSubPatch) SetSimConnTerm

func (o *TrafficInfluSubPatch) SetSimConnTerm(v int32)

SetSimConnTerm gets a reference to the given int32 and assigns it to the SimConnTerm field.

func (*TrafficInfluSubPatch) SetTempValidities

func (o *TrafficInfluSubPatch) SetTempValidities(v []TemporalValidity)

SetTempValidities gets a reference to the given []TemporalValidity and assigns it to the TempValidities field.

func (*TrafficInfluSubPatch) SetTfcCorrInd

func (o *TrafficInfluSubPatch) SetTfcCorrInd(v bool)

SetTfcCorrInd gets a reference to the given NullableBool and assigns it to the TfcCorrInd field.

func (*TrafficInfluSubPatch) SetTfcCorrIndNil

func (o *TrafficInfluSubPatch) SetTfcCorrIndNil()

SetTfcCorrIndNil sets the value for TfcCorrInd to be an explicit nil

func (*TrafficInfluSubPatch) SetTrafficFilters

func (o *TrafficInfluSubPatch) SetTrafficFilters(v []FlowInfo)

SetTrafficFilters gets a reference to the given []FlowInfo and assigns it to the TrafficFilters field.

func (*TrafficInfluSubPatch) SetTrafficRoutes

func (o *TrafficInfluSubPatch) SetTrafficRoutes(v []RouteToLocation)

SetTrafficRoutes gets a reference to the given []RouteToLocation and assigns it to the TrafficRoutes field.

func (*TrafficInfluSubPatch) SetValidGeoZoneIds

func (o *TrafficInfluSubPatch) SetValidGeoZoneIds(v []string)

SetValidGeoZoneIds gets a reference to the given []string and assigns it to the ValidGeoZoneIds field. Deprecated

func (TrafficInfluSubPatch) ToMap

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

func (*TrafficInfluSubPatch) UnsetAddrPreserInd

func (o *TrafficInfluSubPatch) UnsetAddrPreserInd()

UnsetAddrPreserInd ensures that no value is present for AddrPreserInd, not even an explicit nil

func (*TrafficInfluSubPatch) UnsetAfAckInd

func (o *TrafficInfluSubPatch) UnsetAfAckInd()

UnsetAfAckInd ensures that no value is present for AfAckInd, not even an explicit nil

func (*TrafficInfluSubPatch) UnsetAppReloInd

func (o *TrafficInfluSubPatch) UnsetAppReloInd()

UnsetAppReloInd ensures that no value is present for AppReloInd, not even an explicit nil

func (*TrafficInfluSubPatch) UnsetMaxAllowedUpLat

func (o *TrafficInfluSubPatch) UnsetMaxAllowedUpLat()

UnsetMaxAllowedUpLat ensures that no value is present for MaxAllowedUpLat, not even an explicit nil

func (*TrafficInfluSubPatch) UnsetTfcCorrInd

func (o *TrafficInfluSubPatch) UnsetTfcCorrInd()

UnsetTfcCorrInd ensures that no value is present for TfcCorrInd, not even an explicit nil

type TrafficInfluenceSubscriptionAPIService

type TrafficInfluenceSubscriptionAPIService service

TrafficInfluenceSubscriptionAPIService TrafficInfluenceSubscriptionAPI service

func (*TrafficInfluenceSubscriptionAPIService) CreateNewSubscription

CreateNewSubscription Creates a new subscription resource

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param afId Identifier of the AF
@return ApiCreateNewSubscriptionRequest

func (*TrafficInfluenceSubscriptionAPIService) CreateNewSubscriptionExecute

Execute executes the request

@return TrafficInfluSub

func (*TrafficInfluenceSubscriptionAPIService) ReadAllSubscriptions

ReadAllSubscriptions read all of the active subscriptions for the AF

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param afId Identifier of the AF
@return ApiReadAllSubscriptionsRequest

func (*TrafficInfluenceSubscriptionAPIService) ReadAllSubscriptionsExecute

Execute executes the request

@return []TrafficInfluSub

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

Jump to

Keyboard shortcuts

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