Categorygithub.com/5GCoreNet/openapiopenapi_Namf_Communication
package
1.18.2
Repository: https://github.com/5gcorenet/openapi.git
Documentation: pkg.go.dev

# README

Go API client for openapi_Namf_Communication

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

Overview

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

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

Installation

Install the following dependencies:

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

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

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

To use a proxy, set the environment variable HTTP_PROXY:

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

Configuration of Server URL

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

Select Server Configuration

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

ctx := context.WithValue(context.Background(), openapi_Namf_Communication.ContextServerIndex, 1)

Templated Server URL

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

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

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

URLs Configuration per Operation

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

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

Documentation for API Endpoints

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

ClassMethodHTTP requestDescription
IndividualSubscriptionDocumentApiAMFStatusChangeSubscribeModfyPut /subscriptions/{subscriptionId}Namf_Communication AMF Status Change Subscribe Modify service Operation
IndividualSubscriptionDocumentApiAMFStatusChangeUnSubscribeDelete /subscriptions/{subscriptionId}Namf_Communication AMF Status Change UnSubscribe service Operation
IndividualUeContextDocumentApiCancelRelocateUEContextPost /ue-contexts/{ueContextId}/cancel-relocateNamf_Communication CancelRelocateUEContext service Operation
IndividualUeContextDocumentApiCreateUEContextPut /ue-contexts/{ueContextId}Namf_Communication CreateUEContext service Operation
IndividualUeContextDocumentApiEBIAssignmentPost /ue-contexts/{ueContextId}/assign-ebiNamf_Communication EBI Assignment service Operation
IndividualUeContextDocumentApiRegistrationStatusUpdatePost /ue-contexts/{ueContextId}/transfer-updateNamf_Communication RegistrationStatusUpdate service Operation
IndividualUeContextDocumentApiReleaseUEContextPost /ue-contexts/{ueContextId}/releaseNamf_Communication ReleaseUEContext service Operation
IndividualUeContextDocumentApiRelocateUEContextPost /ue-contexts/{ueContextId}/relocateNamf_Communication RelocateUEContext service Operation
IndividualUeContextDocumentApiUEContextTransferPost /ue-contexts/{ueContextId}/transferNamf_Communication UEContextTransfer service Operation
N1N2IndividualSubscriptionDocumentApiN1N2MessageUnSubscribeDelete /ue-contexts/{ueContextId}/n1-n2-messages/subscriptions/{subscriptionId}Namf_Communication N1N2 Message UnSubscribe (UE Specific) service Operation
N1N2MessageCollectionCollectionApiN1N2MessageTransferPost /ue-contexts/{ueContextId}/n1-n2-messagesNamf_Communication N1N2 Message Transfer (UE Specific) service Operation
N1N2SubscriptionsCollectionForIndividualUEContextsCollectionApiN1N2MessageSubscribePost /ue-contexts/{ueContextId}/n1-n2-messages/subscriptionsNamf_Communication N1N2 Message Subscribe (UE Specific) service Operation
NonUEN2MessageNotificationIndividualSubscriptionDocumentApiNonUeN2InfoUnSubscribeDelete /non-ue-n2-messages/subscriptions/{n2NotifySubscriptionId}Namf_Communication Non UE N2 Info UnSubscribe service Operation
NonUEN2MessagesCollectionCollectionApiNonUeN2MessageTransferPost /non-ue-n2-messages/transferNamf_Communication Non UE N2 Message Transfer service Operation
NonUEN2MessagesSubscriptionsCollectionCollectionApiNonUeN2InfoSubscribePost /non-ue-n2-messages/subscriptionsNamf_Communication Non UE N2 Info Subscribe service Operation
SubscriptionsCollectionCollectionApiAMFStatusChangeSubscribePost /subscriptionsNamf_Communication AMF Status Change Subscribe service Operation

Documentation For Models

Documentation For Authorization

oAuth2ClientCredentials

  • Type: OAuth
  • Flow: application
  • Authorization URL:
  • Scopes:
  • namf-comm: Access to the Namf_Communication API

Example

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

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

import "golang.org/x/oauth2"

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

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

Documentation for Utility Methods

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

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

Author

# Functions

CacheExpires helper function to determine remaining time before repeating a request.
interface{}AsArea is a convenience function that returns interface{} wrapped in Area.
interface{}AsConsumerNfInformation is a convenience function that returns interface{} wrapped in ConsumerNfInformation.
interface{}AsGeraLocation is a convenience function that returns interface{} wrapped in GeraLocation.
interface{}AsGlobalRanNodeId is a convenience function that returns interface{} wrapped in GlobalRanNodeId.
interface{}AsIpAddr is a convenience function that returns interface{} wrapped in IpAddr.
interface{}AsIpAddress is a convenience function that returns interface{} wrapped in IpAddress.
interface{}AsIpEthFlowDescription is a convenience function that returns interface{} wrapped in IpEthFlowDescription.
interface{}AsPrevSubInfo is a convenience function that returns interface{} wrapped in PrevSubInfo.
interface{}AsQosRequirement is a convenience function that returns interface{} wrapped in QosRequirement.
interface{}AsQosSustainabilityInfo is a convenience function that returns interface{} wrapped in QosSustainabilityInfo.
interface{}AsRetainabilityThreshold is a convenience function that returns interface{} wrapped in RetainabilityThreshold.
interface{}AsTacRange is a convenience function that returns interface{} wrapped in TacRange.
interface{}AsTopApplication is a convenience function that returns interface{} wrapped in TopApplication.
interface{}AsUtraLocation is a convenience function that returns interface{} wrapped in UtraLocation.
IsNil checks if an input is nil.
NewAbnormalBehaviour instantiates a new AbnormalBehaviour object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAbnormalBehaviourWithDefaults instantiates a new AbnormalBehaviour object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAccessTokenErr instantiates a new AccessTokenErr object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccessTokenErrWithDefaults instantiates a new AccessTokenErr object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAccessTokenReq instantiates a new AccessTokenReq object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccessTokenReqWithDefaults instantiates a new AccessTokenReq object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAccessTypeFromValue returns a pointer to a valid AccessType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewAdditionalMeasurement instantiates a new AdditionalMeasurement object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAdditionalMeasurementWithDefaults instantiates a new AdditionalMeasurement object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddressList instantiates a new AddressList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddressListWithDefaults instantiates a new AddressList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddrFqdn instantiates a new AddrFqdn object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddrFqdnWithDefaults instantiates a new AddrFqdn object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAllowedNssai instantiates a new AllowedNssai object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAllowedNssaiWithDefaults instantiates a new AllowedNssai object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAllowedSnssai instantiates a new AllowedSnssai object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAllowedSnssaiWithDefaults instantiates a new AllowedSnssai object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAmbr instantiates a new Ambr object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAmbrWithDefaults instantiates a new Ambr object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAmfEvent instantiates a new AmfEvent object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAmfEventArea instantiates a new AmfEventArea object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAmfEventAreaWithDefaults instantiates a new AmfEventArea object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAmfEventMode instantiates a new AmfEventMode object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAmfEventModeWithDefaults instantiates a new AmfEventMode object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAmfEventSubscription instantiates a new AmfEventSubscription object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAmfEventSubscriptionAddInfo instantiates a new AmfEventSubscriptionAddInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAmfEventSubscriptionAddInfoWithDefaults instantiates a new AmfEventSubscriptionAddInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAmfEventSubscriptionWithDefaults instantiates a new AmfEventSubscription object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAmfEventWithDefaults instantiates a new AmfEvent object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAmfStatusChangeNotification instantiates a new AmfStatusChangeNotification object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAmfStatusChangeNotificationWithDefaults instantiates a new AmfStatusChangeNotification object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAmfStatusInfo instantiates a new AmfStatusInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAmfStatusInfoWithDefaults instantiates a new AmfStatusInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAnalyticsMetadataIndication instantiates a new AnalyticsMetadataIndication object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAnalyticsMetadataIndicationWithDefaults instantiates a new AnalyticsMetadataIndication object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAnalyticsMetadataInfo instantiates a new AnalyticsMetadataInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAnalyticsMetadataInfoWithDefaults instantiates a new AnalyticsMetadataInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAnalyticsSubscription instantiates a new AnalyticsSubscription object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAnalyticsSubscriptionWithDefaults instantiates a new AnalyticsSubscription object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAPIClient creates a new API client.
NewAPIResponse returns a new APIResponse object.
NewAPIResponseWithError returns a new APIResponse object with the provided error message.
NewApplicationVolume instantiates a new ApplicationVolume object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewApplicationVolumeWithDefaults instantiates a new ApplicationVolume object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAppListForUeComm instantiates a new AppListForUeComm object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAppListForUeCommWithDefaults instantiates a new AppListForUeComm object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAreaOfInterestEventState instantiates a new AreaOfInterestEventState object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAreaOfInterestEventStateWithDefaults instantiates a new AreaOfInterestEventState object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAreaOfValidity instantiates a new AreaOfValidity object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAreaOfValidityWithDefaults instantiates a new AreaOfValidity object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAreaScope instantiates a new AreaScope object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAreaScopeWithDefaults instantiates a new AreaScope object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewArp instantiates a new Arp object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewArpWithDefaults instantiates a new Arp object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAssignEbiData instantiates a new AssignEbiData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAssignEbiDataWithDefaults instantiates a new AssignEbiData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAssignEbiError instantiates a new AssignEbiError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAssignEbiErrorWithDefaults instantiates a new AssignEbiError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAssignEbiFailed instantiates a new AssignEbiFailed object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAssignEbiFailedWithDefaults instantiates a new AssignEbiFailed object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAssignedEbiData instantiates a new AssignedEbiData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAssignedEbiDataWithDefaults instantiates a new AssignedEbiData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBatteryIndication instantiates a new BatteryIndication object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBatteryIndicationWithDefaults instantiates a new BatteryIndication object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBwRequirement instantiates a new BwRequirement object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBwRequirementWithDefaults instantiates a new BwRequirement object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCagData instantiates a new CagData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCagDataWithDefaults instantiates a new CagData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCagInfo instantiates a new CagInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCagInfoWithDefaults instantiates a new CagInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCancelRelocateUEContextRequest instantiates a new CancelRelocateUEContextRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCancelRelocateUEContextRequestWithDefaults instantiates a new CancelRelocateUEContextRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCandidateForReplacement instantiates a new CandidateForReplacement object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCandidateForReplacementWithDefaults instantiates a new CandidateForReplacement object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCellGlobalId instantiates a new CellGlobalId object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCellGlobalIdWithDefaults instantiates a new CellGlobalId object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCeModeBInd instantiates a new CeModeBInd object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCeModeBIndWithDefaults instantiates a new CeModeBInd object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCircumstanceDescription instantiates a new CircumstanceDescription object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCircumstanceDescriptionWithDefaults instantiates a new CircumstanceDescription object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
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.
NewClassCriterion instantiates a new ClassCriterion object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewClassCriterionWithDefaults instantiates a new ClassCriterion object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCnAssistedRanPara instantiates a new CnAssistedRanPara object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCnAssistedRanParaWithDefaults instantiates a new CnAssistedRanPara object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConfiguration returns a new Configuration object.
NewConfiguredSnssai instantiates a new ConfiguredSnssai object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConfiguredSnssaiWithDefaults instantiates a new ConfiguredSnssai object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCongestionInfo instantiates a new CongestionInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCongestionInfoWithDefaults instantiates a new CongestionInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateUEContext201Response instantiates a new CreateUEContext201Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateUEContext201ResponseWithDefaults instantiates a new CreateUEContext201Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateUEContext403Response instantiates a new CreateUEContext403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateUEContext403ResponseWithDefaults instantiates a new CreateUEContext403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateUEContextRequest instantiates a new CreateUEContextRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateUEContextRequestWithDefaults instantiates a new CreateUEContextRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDddTrafficDescriptor instantiates a new DddTrafficDescriptor object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDddTrafficDescriptorWithDefaults instantiates a new DddTrafficDescriptor object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDispersionArea instantiates a new DispersionArea object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDispersionAreaWithDefaults instantiates a new DispersionArea object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDispersionCollection instantiates a new DispersionCollection object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDispersionCollectionWithDefaults instantiates a new DispersionCollection object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDispersionInfo instantiates a new DispersionInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDispersionInfoWithDefaults instantiates a new DispersionInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDispersionRequirement instantiates a new DispersionRequirement object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDispersionRequirementWithDefaults instantiates a new DispersionRequirement object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDnPerf instantiates a new DnPerf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDnPerfInfo instantiates a new DnPerfInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDnPerfInfoWithDefaults instantiates a new DnPerfInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDnPerformanceReq instantiates a new DnPerformanceReq object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDnPerformanceReqWithDefaults instantiates a new DnPerformanceReq object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDnPerfWithDefaults instantiates a new DnPerf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEbiArpMapping instantiates a new EbiArpMapping object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEbiArpMappingWithDefaults instantiates a new EbiArpMapping object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEcgi instantiates a new Ecgi object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEcgiWithDefaults instantiates a new Ecgi object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEcRestrictionDataWb instantiates a new EcRestrictionDataWb object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEcRestrictionDataWbWithDefaults instantiates a new EcRestrictionDataWb object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
NewEllipsoidArcAllOf instantiates a new EllipsoidArcAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEllipsoidArcAllOfWithDefaults instantiates a new EllipsoidArcAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
NewEpsInterworkingInfo instantiates a new EpsInterworkingInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEpsInterworkingInfoWithDefaults instantiates a new EpsInterworkingInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEpsIwkPgw instantiates a new EpsIwkPgw object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEpsIwkPgwWithDefaults instantiates a new EpsIwkPgw object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEpsNasSecurityMode instantiates a new EpsNasSecurityMode object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEpsNasSecurityModeWithDefaults instantiates a new EpsNasSecurityMode object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
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.
NewEutraLocation instantiates a new EutraLocation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEutraLocationWithDefaults instantiates a new EutraLocation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
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.
NewEventReportingRequirement instantiates a new EventReportingRequirement object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEventReportingRequirementWithDefaults instantiates a new EventReportingRequirement object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEventSubscription instantiates a new EventSubscription object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEventSubscriptionWithDefaults instantiates a new EventSubscription object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewException instantiates a new Exception object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewExceptionWithDefaults instantiates a new Exception object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewExpectedUeBehavior instantiates a new ExpectedUeBehavior object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewExpectedUeBehaviorWithDefaults instantiates a new ExpectedUeBehavior object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewExpectedUeBehaviourData instantiates a new ExpectedUeBehaviourData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewExpectedUeBehaviourDataWithDefaults instantiates a new ExpectedUeBehaviourData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewExtAmfEventSubscription instantiates a new ExtAmfEventSubscription object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewExtAmfEventSubscriptionWithDefaults instantiates a new ExtAmfEventSubscription object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewExtSnssai instantiates a new ExtSnssai object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewExtSnssaiWithDefaults instantiates a new ExtSnssai object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewFailureEventInfo instantiates a new FailureEventInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewFailureEventInfoWithDefaults instantiates a new FailureEventInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
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.
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.
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.
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.
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.
NewGNbId instantiates a new GNbId object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGNbIdWithDefaults instantiates a new GNbId object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGuami instantiates a new Guami object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGuamiWithDefaults instantiates a new Guami object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewHfcNodeId instantiates a new HfcNodeId object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewHfcNodeIdWithDefaults instantiates a new HfcNodeId object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewImmediateMdtConf instantiates a new ImmediateMdtConf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewImmediateMdtConfWithDefaults instantiates a new ImmediateMdtConf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
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.
NewIpv6Addr instantiates a new Ipv6Addr object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIpv6AddrWithDefaults instantiates a new Ipv6Addr object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
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.
NewKeyAmf instantiates a new KeyAmf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewKeyAmfWithDefaults instantiates a new KeyAmf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLadnInfo instantiates a new LadnInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLadnInfoWithDefaults instantiates a new LadnInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
NewLocal2dPointUncertaintyEllipseAllOf instantiates a new Local2dPointUncertaintyEllipseAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLocal2dPointUncertaintyEllipseAllOfWithDefaults instantiates a new Local2dPointUncertaintyEllipseAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
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.
NewLocal3dPointUncertaintyEllipsoidAllOf instantiates a new Local3dPointUncertaintyEllipsoidAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLocal3dPointUncertaintyEllipsoidAllOfWithDefaults instantiates a new Local3dPointUncertaintyEllipsoidAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
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.
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.
NewLocationArea instantiates a new LocationArea object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLocationAreaId instantiates a new LocationAreaId object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLocationAreaIdWithDefaults instantiates a new LocationAreaId object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLocationAreaWithDefaults instantiates a new LocationArea object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLocationInfo instantiates a new LocationInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLocationInfoWithDefaults instantiates a new LocationInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLteMInd instantiates a new LteMInd object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLteMIndWithDefaults instantiates a new LteMInd object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLteV2xAuth instantiates a new LteV2xAuth object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLteV2xAuthWithDefaults instantiates a new LteV2xAuth object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMmContext instantiates a new MmContext object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMmContextWithDefaults instantiates a new MmContext object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMoExpDataCounter instantiates a new MoExpDataCounter object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMoExpDataCounterWithDefaults instantiates a new MoExpDataCounter object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewN1MessageContainer instantiates a new N1MessageContainer object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewN1MessageContainerWithDefaults instantiates a new N1MessageContainer object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewN1MessageNotification instantiates a new N1MessageNotification object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewN1MessageNotificationWithDefaults instantiates a new N1MessageNotification object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewN1N2MessageTransferError instantiates a new N1N2MessageTransferError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewN1N2MessageTransferErrorWithDefaults instantiates a new N1N2MessageTransferError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewN1N2MessageTransferReqData instantiates a new N1N2MessageTransferReqData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewN1N2MessageTransferReqDataWithDefaults instantiates a new N1N2MessageTransferReqData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewN1N2MessageTransferRspData instantiates a new N1N2MessageTransferRspData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewN1N2MessageTransferRspDataWithDefaults instantiates a new N1N2MessageTransferRspData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewN1N2MsgTxfrErrDetail instantiates a new N1N2MsgTxfrErrDetail object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewN1N2MsgTxfrErrDetailWithDefaults instantiates a new N1N2MsgTxfrErrDetail object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewN1N2MsgTxfrFailureNotification instantiates a new N1N2MsgTxfrFailureNotification object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewN1N2MsgTxfrFailureNotificationWithDefaults instantiates a new N1N2MsgTxfrFailureNotification object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewN2InfoContainer instantiates a new N2InfoContainer object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewN2InfoContainerWithDefaults instantiates a new N2InfoContainer object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewN2InfoContent instantiates a new N2InfoContent object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewN2InfoContentWithDefaults instantiates a new N2InfoContent object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewN2InfoNotificationRspData instantiates a new N2InfoNotificationRspData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewN2InfoNotificationRspDataWithDefaults instantiates a new N2InfoNotificationRspData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewN2InfoNotifyHandoverComplete200Response instantiates a new N2InfoNotifyHandoverComplete200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewN2InfoNotifyHandoverComplete200ResponseWithDefaults instantiates a new N2InfoNotifyHandoverComplete200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewN2InfoNotifyRequest instantiates a new N2InfoNotifyRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewN2InfoNotifyRequestWithDefaults instantiates a new N2InfoNotifyRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewN2InformationNotification instantiates a new N2InformationNotification object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewN2InformationNotificationWithDefaults instantiates a new N2InformationNotification object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewN2InformationTransferError instantiates a new N2InformationTransferError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewN2InformationTransferErrorWithDefaults instantiates a new N2InformationTransferError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewN2InformationTransferReqData instantiates a new N2InformationTransferReqData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewN2InformationTransferReqDataWithDefaults instantiates a new N2InformationTransferReqData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewN2InformationTransferRspData instantiates a new N2InformationTransferRspData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewN2InformationTransferRspDataWithDefaults instantiates a new N2InformationTransferRspData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewN2RanInformation instantiates a new N2RanInformation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewN2RanInformationWithDefaults instantiates a new N2RanInformation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewN2SmInformation instantiates a new N2SmInformation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewN2SmInformationWithDefaults instantiates a new N2SmInformation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewN3gaLocation instantiates a new N3gaLocation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewN3gaLocationWithDefaults instantiates a new N3gaLocation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNasSecurityMode instantiates a new NasSecurityMode object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNasSecurityModeWithDefaults instantiates a new NasSecurityMode object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNcgi instantiates a new Ncgi object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNcgiWithDefaults instantiates a new Ncgi object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNetworkAreaInfo instantiates a new NetworkAreaInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNetworkAreaInfo1 instantiates a new NetworkAreaInfo1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNetworkAreaInfo1WithDefaults instantiates a new NetworkAreaInfo1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNetworkAreaInfoWithDefaults instantiates a new NetworkAreaInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNetworkPerfInfo instantiates a new NetworkPerfInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNetworkPerfInfoWithDefaults instantiates a new NetworkPerfInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNetworkPerfRequirement instantiates a new NetworkPerfRequirement object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNetworkPerfRequirementWithDefaults instantiates a new NetworkPerfRequirement object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNfLoadLevelInformation instantiates a new NfLoadLevelInformation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNfLoadLevelInformationWithDefaults instantiates a new NfLoadLevelInformation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNgApCause instantiates a new NgApCause object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNgApCauseWithDefaults instantiates a new NgApCause object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNgKsi instantiates a new NgKsi object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNgKsiWithDefaults instantiates a new NgKsi object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNgRanTargetId instantiates a new NgRanTargetId object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNgRanTargetIdWithDefaults instantiates a new NgRanTargetId object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNnwdafEventsSubscription instantiates a new NnwdafEventsSubscription object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNnwdafEventsSubscriptionWithDefaults instantiates a new NnwdafEventsSubscription object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNonUeN2InfoNotifyRequest instantiates a new NonUeN2InfoNotifyRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNonUeN2InfoNotifyRequestWithDefaults instantiates a new NonUeN2InfoNotifyRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNonUeN2InfoSubscriptionCreateData instantiates a new NonUeN2InfoSubscriptionCreateData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNonUeN2InfoSubscriptionCreateDataWithDefaults instantiates a new NonUeN2InfoSubscriptionCreateData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNonUeN2InfoSubscriptionCreatedData instantiates a new NonUeN2InfoSubscriptionCreatedData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNonUeN2InfoSubscriptionCreatedDataWithDefaults instantiates a new NonUeN2InfoSubscriptionCreatedData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNonUeN2MessageTransferRequest instantiates a new NonUeN2MessageTransferRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNonUeN2MessageTransferRequestWithDefaults instantiates a new NonUeN2MessageTransferRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNpnAccessInfo instantiates a new NpnAccessInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNpnAccessInfoWithDefaults instantiates a new NpnAccessInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNrLocation instantiates a new NrLocation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNrLocationWithDefaults instantiates a new NrLocation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNrppaInformation instantiates a new NrppaInformation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNrppaInformationWithDefaults instantiates a new NrppaInformation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNrV2xAuth instantiates a new NrV2xAuth object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNrV2xAuthWithDefaults instantiates a new NrV2xAuth object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNsiIdInfo instantiates a new NsiIdInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNsiIdInfoWithDefaults instantiates a new NsiIdInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNsiInformation instantiates a new NsiInformation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNsiInformationWithDefaults instantiates a new NsiInformation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNsiLoadLevelInfo instantiates a new NsiLoadLevelInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNsiLoadLevelInfoWithDefaults instantiates a new NsiLoadLevelInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNssaaStatus instantiates a new NssaaStatus object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNssaaStatusWithDefaults instantiates a new NssaaStatus object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNssaiMapping instantiates a new NssaiMapping object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNssaiMappingWithDefaults instantiates a new NssaiMapping object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
NewNumberAverage instantiates a new NumberAverage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNumberAverageWithDefaults instantiates a new NumberAverage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNwdafSubscription instantiates a new NwdafSubscription object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNwdafSubscriptionWithDefaults instantiates a new NwdafSubscription object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewObservedRedundantTransExp instantiates a new ObservedRedundantTransExp object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewObservedRedundantTransExpWithDefaults instantiates a new ObservedRedundantTransExp object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPc5FlowBitRates instantiates a new Pc5FlowBitRates object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPc5FlowBitRatesWithDefaults instantiates a new Pc5FlowBitRates object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPc5QosFlowItem instantiates a new Pc5QosFlowItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPc5QosFlowItemWithDefaults instantiates a new Pc5QosFlowItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPc5QoSPara instantiates a new Pc5QoSPara object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPc5QoSParaWithDefaults instantiates a new Pc5QoSPara object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPcfUeCallbackInfo instantiates a new PcfUeCallbackInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPcfUeCallbackInfoWithDefaults instantiates a new PcfUeCallbackInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPduSessionContext instantiates a new PduSessionContext object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPduSessionContextWithDefaults instantiates a new PduSessionContext object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPduSessionInfo instantiates a new PduSessionInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPduSessionInfoWithDefaults instantiates a new PduSessionInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPerfData instantiates a new PerfData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPerfDataWithDefaults instantiates a new PerfData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPlmnId instantiates a new PlmnId object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPlmnIdNid instantiates a new PlmnIdNid object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPlmnIdNidWithDefaults instantiates a new PlmnIdNid object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPlmnIdWithDefaults instantiates a new PlmnId object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
NewPointAllOf instantiates a new PointAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPointAllOfWithDefaults instantiates a new PointAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
NewPointAltitudeAllOf instantiates a new PointAltitudeAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPointAltitudeAllOfWithDefaults instantiates a new PointAltitudeAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
NewPointAltitudeUncertaintyAllOf instantiates a new PointAltitudeUncertaintyAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPointAltitudeUncertaintyAllOfWithDefaults instantiates a new PointAltitudeUncertaintyAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
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.
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.
NewPointUncertaintyCircleAllOf instantiates a new PointUncertaintyCircleAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPointUncertaintyCircleAllOfWithDefaults instantiates a new PointUncertaintyCircleAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
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.
NewPointUncertaintyEllipseAllOf instantiates a new PointUncertaintyEllipseAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPointUncertaintyEllipseAllOfWithDefaults instantiates a new PointUncertaintyEllipseAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
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.
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.
NewPolygonAllOf instantiates a new PolygonAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPolygonAllOfWithDefaults instantiates a new PolygonAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
NewPresenceInfo instantiates a new PresenceInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPresenceInfoWithDefaults instantiates a new PresenceInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
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.
NewProseContext instantiates a new ProseContext object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewProseContextWithDefaults instantiates a new ProseContext object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewProSeInformation instantiates a new ProSeInformation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewProSeInformationWithDefaults instantiates a new ProSeInformation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPWSErrorData instantiates a new PWSErrorData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPWSErrorDataWithDefaults instantiates a new PWSErrorData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPwsInformation instantiates a new PwsInformation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPwsInformationWithDefaults instantiates a new PwsInformation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPWSResponseData instantiates a new PWSResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPWSResponseDataWithDefaults instantiates a new PWSResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRankingCriterion instantiates a new RankingCriterion object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRankingCriterionWithDefaults instantiates a new RankingCriterion object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRatFreqInformation instantiates a new RatFreqInformation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRatFreqInformationWithDefaults instantiates a new RatFreqInformation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRedirectResponse instantiates a new RedirectResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRedirectResponseWithDefaults instantiates a new RedirectResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRedundantTransmissionExpInfo instantiates a new RedundantTransmissionExpInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRedundantTransmissionExpInfoWithDefaults instantiates a new RedundantTransmissionExpInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRedundantTransmissionExpPerTS instantiates a new RedundantTransmissionExpPerTS object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRedundantTransmissionExpPerTSWithDefaults instantiates a new RedundantTransmissionExpPerTS object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRedundantTransmissionExpReq instantiates a new RedundantTransmissionExpReq object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRedundantTransmissionExpReqWithDefaults instantiates a new RedundantTransmissionExpReq object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRefToBinaryData instantiates a new RefToBinaryData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRefToBinaryDataWithDefaults instantiates a new RefToBinaryData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRegistrationContextContainer instantiates a new RegistrationContextContainer object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRegistrationContextContainerWithDefaults instantiates a new RegistrationContextContainer object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
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.
NewReleaseSessionInfo instantiates a new ReleaseSessionInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewReleaseSessionInfoWithDefaults instantiates a new ReleaseSessionInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRelocateUEContextRequest instantiates a new RelocateUEContextRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRelocateUEContextRequestWithDefaults instantiates a new RelocateUEContextRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
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.
NewResourceUsage instantiates a new ResourceUsage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewResourceUsageWithDefaults instantiates a new ResourceUsage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRoutingAreaId instantiates a new RoutingAreaId object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRoutingAreaIdWithDefaults instantiates a new RoutingAreaId object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewScheduledCommunicationTime instantiates a new ScheduledCommunicationTime object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewScheduledCommunicationTime1 instantiates a new ScheduledCommunicationTime1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewScheduledCommunicationTime1WithDefaults instantiates a new ScheduledCommunicationTime1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewScheduledCommunicationTimeWithDefaults instantiates a new ScheduledCommunicationTime object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSdRange instantiates a new SdRange object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSdRangeWithDefaults instantiates a new SdRange object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSeafData instantiates a new SeafData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSeafDataWithDefaults instantiates a new SeafData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewServiceAreaId instantiates a new ServiceAreaId object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewServiceAreaIdWithDefaults instantiates a new ServiceAreaId object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewServiceAreaRestriction instantiates a new ServiceAreaRestriction object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewServiceAreaRestrictionWithDefaults instantiates a new ServiceAreaRestriction object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewServiceExperienceInfo instantiates a new ServiceExperienceInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewServiceExperienceInfoWithDefaults instantiates a new ServiceExperienceInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSessInactTimerForUeComm instantiates a new SessInactTimerForUeComm object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSessInactTimerForUeCommWithDefaults instantiates a new SessInactTimerForUeComm object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSliceLoadLevelInformation instantiates a new SliceLoadLevelInformation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSliceLoadLevelInformationWithDefaults instantiates a new SliceLoadLevelInformation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSliceMbr instantiates a new SliceMbr object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSliceMbrWithDefaults instantiates a new SliceMbr object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSmallDataRateStatus instantiates a new SmallDataRateStatus object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSmallDataRateStatusInfo instantiates a new SmallDataRateStatusInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSmallDataRateStatusInfoWithDefaults instantiates a new SmallDataRateStatusInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSmallDataRateStatusWithDefaults instantiates a new SmallDataRateStatus object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSmcceInfo instantiates a new SmcceInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSmcceInfoWithDefaults instantiates a new SmcceInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSmfChangeInfo instantiates a new SmfChangeInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSmfChangeInfoWithDefaults instantiates a new SmfChangeInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSmfSelectionData instantiates a new SmfSelectionData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSmfSelectionDataWithDefaults instantiates a new SmfSelectionData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
NewSnssaiExtension instantiates a new SnssaiExtension object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSnssaiExtensionWithDefaults instantiates a new SnssaiExtension object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
NewSubscriptionData instantiates a new SubscriptionData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSubscriptionDataWithDefaults instantiates a new SubscriptionData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSvcExperience instantiates a new SvcExperience object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSvcExperienceWithDefaults instantiates a new SvcExperience object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTacInfo instantiates a new TacInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTacInfoWithDefaults instantiates a new TacInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTai instantiates a new Tai object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTaiRange instantiates a new TaiRange object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTaiRangeWithDefaults instantiates a new TaiRange object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTaiWithDefaults instantiates a new Tai object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTargetArea instantiates a new TargetArea object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTargetAreaWithDefaults instantiates a new TargetArea object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTargetUeInformation instantiates a new TargetUeInformation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTargetUeInformationWithDefaults instantiates a new TargetUeInformation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewThresholdLevel instantiates a new ThresholdLevel object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewThresholdLevelWithDefaults instantiates a new ThresholdLevel object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTimeWindow instantiates a new TimeWindow object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTimeWindowWithDefaults instantiates a new TimeWindow object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTnapId instantiates a new TnapId object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTnapIdWithDefaults instantiates a new TnapId object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTraceData instantiates a new TraceData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTraceDataWithDefaults instantiates a new TraceData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTrafficDescriptor instantiates a new TrafficDescriptor object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTrafficDescriptorWithDefaults instantiates a new TrafficDescriptor object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTwapId instantiates a new TwapId object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTwapIdWithDefaults instantiates a new TwapId object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUeAnalyticsContextDescriptor instantiates a new UeAnalyticsContextDescriptor object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUeAnalyticsContextDescriptorWithDefaults instantiates a new UeAnalyticsContextDescriptor object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUeCommunication instantiates a new UeCommunication object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUeCommunicationWithDefaults instantiates a new UeCommunication object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUeContext instantiates a new UeContext object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUeContextCancelRelocateData instantiates a new UeContextCancelRelocateData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUeContextCancelRelocateDataWithDefaults instantiates a new UeContextCancelRelocateData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUeContextCreateData instantiates a new UeContextCreateData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUeContextCreateDataWithDefaults instantiates a new UeContextCreateData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUeContextCreatedData instantiates a new UeContextCreatedData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUeContextCreatedDataWithDefaults instantiates a new UeContextCreatedData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUeContextCreateError instantiates a new UeContextCreateError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUeContextCreateErrorWithDefaults instantiates a new UeContextCreateError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUEContextRelease instantiates a new UEContextRelease object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUEContextReleaseWithDefaults instantiates a new UEContextRelease object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUeContextRelocateData instantiates a new UeContextRelocateData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUeContextRelocateDataWithDefaults instantiates a new UeContextRelocateData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUeContextRelocatedData instantiates a new UeContextRelocatedData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUeContextRelocatedDataWithDefaults instantiates a new UeContextRelocatedData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUEContextTransfer200Response instantiates a new UEContextTransfer200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUEContextTransfer200ResponseWithDefaults instantiates a new UEContextTransfer200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUeContextTransferReqData instantiates a new UeContextTransferReqData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUeContextTransferReqDataWithDefaults instantiates a new UeContextTransferReqData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUEContextTransferRequest instantiates a new UEContextTransferRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUEContextTransferRequestWithDefaults instantiates a new UEContextTransferRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUeContextTransferRspData instantiates a new UeContextTransferRspData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUeContextTransferRspDataWithDefaults instantiates a new UeContextTransferRspData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUeContextWithDefaults instantiates a new UeContext object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUeDifferentiationInfo instantiates a new UeDifferentiationInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUeDifferentiationInfoWithDefaults instantiates a new UeDifferentiationInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUeInAreaFilter instantiates a new UeInAreaFilter object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUeInAreaFilterWithDefaults instantiates a new UeInAreaFilter object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUeMobility instantiates a new UeMobility object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUeMobilityWithDefaults instantiates a new UeMobility object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUeN1N2InfoSubscriptionCreateData instantiates a new UeN1N2InfoSubscriptionCreateData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUeN1N2InfoSubscriptionCreateDataWithDefaults instantiates a new UeN1N2InfoSubscriptionCreateData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUeN1N2InfoSubscriptionCreatedData instantiates a new UeN1N2InfoSubscriptionCreatedData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUeN1N2InfoSubscriptionCreatedDataWithDefaults instantiates a new UeN1N2InfoSubscriptionCreatedData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUeRegStatusUpdateReqData instantiates a new UeRegStatusUpdateReqData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUeRegStatusUpdateReqDataWithDefaults instantiates a new UeRegStatusUpdateReqData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUeRegStatusUpdateRspData instantiates a new UeRegStatusUpdateRspData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUeRegStatusUpdateRspDataWithDefaults instantiates a new UeRegStatusUpdateRspData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUmtTime instantiates a new UmtTime object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUmtTimeWithDefaults instantiates a new UmtTime object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
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.
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.
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.
NewUpdpSubscriptionData instantiates a new UpdpSubscriptionData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdpSubscriptionDataWithDefaults instantiates a new UpdpSubscriptionData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpfInformation instantiates a new UpfInformation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpfInformationWithDefaults instantiates a new UpfInformation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUserDataCongestionInfo instantiates a new UserDataCongestionInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserDataCongestionInfoWithDefaults instantiates a new UserDataCongestionInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUserLocation instantiates a new UserLocation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserLocationWithDefaults instantiates a new UserLocation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewV2xContext instantiates a new V2xContext object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewV2xContextWithDefaults instantiates a new V2xContext object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewV2xInformation instantiates a new V2xInformation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewV2xInformationWithDefaults instantiates a new V2xInformation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWlanPerformanceInfo instantiates a new WlanPerformanceInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWlanPerformanceInfoWithDefaults instantiates a new WlanPerformanceInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWlanPerformanceReq instantiates a new WlanPerformanceReq object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWlanPerformanceReqWithDefaults instantiates a new WlanPerformanceReq object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWlanPerSsIdPerformanceInfo instantiates a new WlanPerSsIdPerformanceInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWlanPerSsIdPerformanceInfoWithDefaults instantiates a new WlanPerSsIdPerformanceInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
OneOfAnyTypeAnyTypeAsConsumerNfInformation is a convenience function that returns OneOfAnyTypeAnyType wrapped in ConsumerNfInformation.
PtrBool is a helper routine that returns a pointer to given boolean value.
PtrFloat32 is a helper routine that returns a pointer to given float value.
PtrFloat64 is a helper routine that returns a pointer to given float value.
PtrInt is a helper routine that returns a pointer to given integer value.
PtrInt32 is a helper routine that returns a pointer to given integer value.
PtrInt64 is a helper routine that returns a pointer to given integer value.
PtrString is a helper routine that returns a pointer to given string value.
PtrTime is helper routine that returns a pointer to given Time value.
stringAsDispersionClass is a convenience function that returns string wrapped in DispersionClass.
stringAsDispersionType is a convenience function that returns string wrapped in DispersionType.

# Constants

List of AccessType.

# Variables

All allowed values of AccessType enum.
ContextOAuth2 takes an oauth2.TokenSource as authentication for the request.
ContextOperationServerIndices uses a server configuration from the index mapping.
ContextOperationServerVariables overrides a server configuration variables using operation specific values.
ContextServerIndex uses a server configuration from the index.
ContextServerVariables overrides a server configuration variables.

# Structs

AbnormalBehaviour Represents the abnormal behaviour information.
AccessTokenErr Error returned in the access token response message.
AccessTokenReq Contains information related to the access token request.
Accuracy Possible values are: - LOW: Low accuracy.
AdditionalMeasurement Represents additional measurement information.
AddressList Represents a list of IPv4 and/or IPv6 addresses.
AddrFqdn IP address and/or FQDN.
AllowedNssai Contains an array of allowed S-NSSAI that constitute the allowed NSSAI information for the authorized network slice information.
AllowedSnssai Contains the authorized S-NSSAI and optional mapped home S-NSSAI and network slice instance information.
Ambr Contains the maximum aggregated uplink and downlink bit rates.
AmfEvent Describes an event to be subscribed.
AmfEventArea Represents an area to be monitored by an AMF event.
AmfEventMode Describes how the reports shall be generated by a subscribed event.
AmfEventSubscription Represents an individual event subscription resource on AMF.
AmfEventSubscriptionAddInfo Additional information received for an AMF event subscription, e.g.
AmfEventTrigger Describes how AMF should generate the report for the event.
AmfEventType Describes the supported event types of Namf_EventExposure Service.
AmfStatusChangeNotification Data within an AMF Status Change Notification request.
AmfStatusInfo AMF Status Information.
AnalyticsMetadata Possible values are: - NUM_OF_SAMPLES: Number of data samples used for the generation of the output analytics.
AnalyticsMetadataIndication Contains analytics metadata information requested to be used during analytics generation.
AnalyticsMetadataInfo Contains analytics metadata information required for analytics aggregation.
AnalyticsSubscription Analytics subscriptions created in the NWDAF.
AnalyticsSubset Possible values are: - NUM_OF_UE_REG: The number of UE registered.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
APIClient manages communication with the Namf_Communication API v1.3.0-alpha.1 In most cases there should be only one, shared, APIClient.
No description provided by the author
No description provided by the author
APIKey provides API key based authentication to a request passed via context using ContextAPIKey.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
APIResponse stores the API response returned by the server.
No description provided by the author
ApplicationVolume Application data volume per Application Id.
AppListForUeComm Represents the analytics of the application list used by UE.
Area - Provides area information.
AreaOfInterestEventState Event State of AoI event in old AMF.
AreaOfValidity Area of validity information for N2 information transfer.
AreaScope Contain the area based on Cells or Tracking Areas.
Arp Contains Allocation and Retention Priority information.
AssignEbiData Data within an EBI assignment request.
AssignEbiError Data within a failure response to the EBI assignment request.
AssignEbiFailed Represents failed assignment of EBI(s).
AssignedEbiData Data within a successful response to an EBI assignment request.
AuthStatus Possible values are: - \"EAP_SUCCESS\": The NSSAA status is EAP-Success.
BasicAuth provides basic http authentication to a request passed via context using ContextBasicAuth.
BatteryIndication Parameters \"replaceableInd\" and \"rechargeableInd\" are only included if the value of Parameter \"batteryInd\" is true.
BwRequirement Represents bandwidth requirements.
CagData struct for CagData.
CagInfo struct for CagInfo.
CancelRelocateUEContextRequest struct for CancelRelocateUEContextRequest.
CandidateForReplacement Represents a list of candidate DNNs for replacement for an S-NSSAI.
CellGlobalId Contains a Cell Global Identification as defined in 3GPP TS 23.003, clause 4.3.1.
CeModeBInd CE-mode-B Support Indicator.
CipheringAlgorithm Indicates the supported Ciphering Algorithm.
CircumstanceDescription Contains the description of a circumstance.
CivicAddress Indicates a Civic address.
ClassCriterion Indicates the dispersion class criterion for fixed, camper and/or traveller UE, and/or the top-heavy UE dispersion class criterion.
CnAssistedRanPara SMF derived CN assisted RAN parameters tuning.
CollectionPeriodRmmLteMdt The enumeration CollectionPeriodRmmLteMdt defines Collection period for RRM measurements LTE for MDT in the trace.
CollectionPeriodRmmNrMdt The enumeration CollectionPeriodRmmNrMdt defines Collection period for RRM measurements NR for MDT in the trace.
Configuration stores the configuration of the API client.
ConfiguredSnssai Contains the configured S-NSSAI(s) authorized by the NSSF in the serving PLMN and optional mapped home S-NSSAI.
CongestionInfo Represents the congestion information.
CongestionType Possible values are: - USER_PLANE: The congestion analytics type is User Plane.
ConsumerNfInformation - Represents the analytics consumer NF Information.
CoreNetworkType It contains the Core Network type 5GC or EPC.
CreateUEContext201Response struct for CreateUEContext201Response.
CreateUEContext403Response struct for CreateUEContext403Response.
CreateUEContextRequest struct for CreateUEContextRequest.
DatasetStatisticalProperty Possible values are: - UNIFORM_DIST_DATA: Indicates the use of data samples that are uniformly distributed according to the different aspects of the requested analytics.
DddTrafficDescriptor Contains a Traffic Descriptor.
DispersionArea Dispersion Area.
DispersionClass - Possible values are: - FIXED: Dispersion class as fixed UE its data or transaction usage at a location or a slice, is higher than its class threshold set for its all data or transaction usage.
DispersionCollection Dispersion collection per UE location or per slice.
DispersionInfo Represents the Dispersion information.
DispersionOrderingCriterion Possible values are: - TIME_SLOT_START: Indicates the order of time slot start.
DispersionRequirement Represents the dispersion analytics requirements.
DispersionType - Possible values are: - DVDA: Data Volume Dispersion Analytics.
DnPerf Represents DN performance for the application.
DnPerfInfo Represents DN performance information.
DnPerfOrderingCriterion Possible values are: - AVERAGE_TRAFFIC_RATE: Indicates the average traffic rate.
DnPerformanceReq Represents other DN performance analytics requirements.
EbiArpMapping EBI to ARP mapping.
Ecgi Contains the ECGI (E-UTRAN Cell Global Identity), as described in 3GPP 23.003.
EcRestrictionDataWb Enhanced Coverage Restriction Data for WB-N1 mode.
EllipsoidArc Ellipsoid Arc.
EllipsoidArcAllOf struct for EllipsoidArcAllOf.
EpsInterworkingInfo struct for EpsInterworkingInfo.
EpsIwkPgw struct for EpsIwkPgw.
EpsNasCipheringAlgorithm Indicates the supported EPS NAS Ciphering Algorithm.
EpsNasIntegrityAlgorithm Indicates the supported EPS NAS Integrity Algorithm.
EpsNasSecurityMode Indicates the EPS NAS Security Mode.
EthFlowDescription Identifies an Ethernet flow.
EutraLocation Contains the E-UTRA user location.
EventNotification Represents a notification on events that occurred.
EventReportingRequirement Represents the type of reporting that the subscription requires.
EventSubscription Represents a subscription to a single event.
Exception Represents the Exception information.
ExceptionId Possible values are: - UNEXPECTED_UE_LOCATION: Unexpected UE location - UNEXPECTED_LONG_LIVE_FLOW: Unexpected long-live rate flows - UNEXPECTED_LARGE_RATE_FLOW: Unexpected large rate flows - UNEXPECTED_WAKEUP: Unexpected wakeup - SUSPICION_OF_DDOS_ATTACK: Suspicion of DDoS attack - WRONG_DESTINATION_ADDRESS: Wrong destination address - TOO_FREQUENT_SERVICE_ACCESS: Too frequent Service Access - UNEXPECTED_RADIO_LINK_FAILURES: Unexpected radio link failures - PING_PONG_ACROSS_CELLS: Ping-ponging across neighbouring cells.
ExceptionTrend Possible values are: - UP: Up trend of the exception level.
ExpectedAnalyticsType Possible values are: - MOBILITY: Mobility related abnormal behaviour analytics is expected by the consumer.
ExpectedUeBehavior Represents the expected UE behavior (e.g.
ExpectedUeBehaviourData struct for ExpectedUeBehaviourData.
ExtAmfEventSubscription AMF event subscription extended with additional information received for the subscription.
ExtSnssai The sdRanges and wildcardSd attributes shall be exclusive from each other.
FailureEventInfo Contains information on the event for which the subscription is not successful.
FlowDirection Possible values are: - DOWNLINK: The corresponding filter applies for traffic to the UE.
FlowInfo Represents IP flow information.
GADShape Common base type for GAD shapes.
GenericOpenAPIError Provides access to the body, error and model on returned errors.
GeographicalCoordinates Geographical coordinates.
GeographicArea Geographic area specified by different shape.
GeraLocation - Exactly one of cgi, sai or lai shall be present.
GlobalRanNodeId - One of the six attributes n3IwfId, gNbIdm, ngeNbId, wagfId, tngfId, eNbId shall be present.
GNbId Provides the G-NB identifier.
Guami Globally Unique AMF Identifier constructed out of PLMN, Network and AMF identity.
HfcNodeId REpresents the HFC Node Identifer received over NGAP.
ImmediateMdtConf Immediate MDT Configuration.
IntegrityAlgorithm Indicates the supported Integrity Algorithm.
InvalidParam It contains an invalid parameter and a related description.
IpAddr - Contains an IP adresse.
IpAddress - struct for IpAddress.
IpEthFlowDescription - Contains the description of an Uplink and/or Downlink Ethernet flow.
Ipv6Addr String identifying an IPv6 address formatted according to clause 4 of RFC5952.
Ipv6Prefix String identifying an IPv6 address prefix formatted according to clause 4 of RFC 5952.
JobType The enumeration JobType defines Job Type in the trace.
KeyAmf Represents the Kamf or K'amf.
KeyAmfType Indicates the Kamf type.
LadnInfo LADN Information.
LineType Possible values are: - DSL: Identifies a DSL line - PON: Identifies a PON line.
Local2dPointUncertaintyEllipse Local 2D point with uncertainty ellipse.
Local2dPointUncertaintyEllipseAllOf struct for Local2dPointUncertaintyEllipseAllOf.
Local3dPointUncertaintyEllipsoid Local 3D point with uncertainty ellipsoid.
Local3dPointUncertaintyEllipsoidAllOf struct for Local3dPointUncertaintyEllipsoidAllOf.
LocalOrigin Indicates a Local origin in a reference system.
LocationArea struct for LocationArea.
LocationAreaId Contains a Location area identification as defined in 3GPP TS 23.003, clause 4.1.
LocationFilter Describes the supported filters of LOCATION_REPORT event type.
LocationInfo Represents UE location information.
LteMInd LTE-M Indication.
LteV2xAuth Contains LTE V2X services authorized information.
MatchingDirection Possible values are: - ASCENDING: Threshold is crossed in ascending direction.
MeasurementLteForMdt The enumeration MeasurementLteForMdt defines Measurements used for MDT in LTE in the trace.
MeasurementNrForMdt The enumeration MeasurementNrForMdt defines Measurements used for MDT in NR in the trace.
MeasurementPeriodLteMdt The enumeration MeasurementPeriodLteMdt defines Measurement period LTE for MDT in the trace.
MmContext Represents a Mobility Management Context in UE Context.
MoExpDataCounter Contain the MO Exception Data Counter.
N1MessageClass Enumeration for N1 Message Class.
N1MessageContainer N1 Message container.
N1MessageNotification Data within a N1 message notification request.
N1N2MessageTransferCause Enumeration for N1N2Message Transfer Cause.
N1N2MessageTransferError Data within a N1/N2 Message Transfer Error response.
N1N2MessageTransferReqData Data within a N1/N2 message transfer request.
N1N2MessageTransferRspData Data within a N1/N2 message transfer response.
N1N2MsgTxfrErrDetail N1/N2 Message Transfer Error Details.
N1N2MsgTxfrFailureNotification Data within a N1/N2 Message Transfer Failure Notification request.
N2InfoContainer N2 information container.
N2InfoContent Represents a transparent N2 information content to be relayed by AMF.
N2InfoNotificationRspData Data within a N2 information notification response.
N2InfoNotifyHandoverComplete200Response struct for N2InfoNotifyHandoverComplete200Response.
N2InfoNotifyReason N2 Information Notify Reason.
N2InfoNotifyRequest struct for N2InfoNotifyRequest.
N2InformationClass Enumeration for N2 Information Class.
N2InformationNotification Data within a N2 information notification request.
N2InformationTransferError Data within a failure response for a non-UE related N2 Information Transfer.
N2InformationTransferReqData Data within a N2 Information Transfer request containing the N2 information requested to be transferred to 5G AN.
N2InformationTransferResult Describes the result of N2 information transfer by AMF to the AN.
N2InformationTransferRspData Data within a successful response to the N2 Information Transfer request to transfer N2 Information to the AN.
N2RanInformation Represents the RAN related N2 information data part.
N2SmInformation Represents the session management SMF related N2 information data part.
N3gaLocation Contains the Non-3GPP access user location.
NasSecurityMode Indicates the NAS Security Mode.
Ncgi Contains the NCGI (NR Cell Global Identity), as described in 3GPP 23.003.
NetworkAreaInfo Describes a network area information in which the NF service consumer requests the number of UEs.
NetworkAreaInfo1 Describes a network area information in which the NF service consumer requests the number of UEs.
NetworkPerfInfo Represents the network performance information.
NetworkPerfRequirement Represents a network performance requirement.
NetworkPerfType Possible values are: - GNB_ACTIVE_RATIO: Indicates that the network performance requirement is gNodeB active (i.e.
NfLoadLevelInformation Represents load level information of a given NF instance.
NfStatus Contains the percentage of time spent on various NF states.
NFType NF types known to NRF.
NgApCause Represents the NGAP cause.
NgapIeType Indicates the supported NGAP IE types.
NgKsi Represents the ngKSI.
NgRanTargetId Indicates a NG RAN as target of the handover.
NnwdafEventsSubscription Represents an Individual NWDAF Event Subscription resource.
NonUeN2InfoNotifyRequest struct for NonUeN2InfoNotifyRequest.
NonUeN2InfoSubscriptionCreateData Data within a create subscription request for non-UE specific N2 information notification.
NonUeN2InfoSubscriptionCreatedData Data for the created subscription for non-UE specific N2 information notification.
NonUeN2MessageTransferRequest struct for NonUeN2MessageTransferRequest.
NotificationFlag Possible values are: - ACTIVATE: The event notification is activated.
NotificationMethod Possible values are: - PERIODIC: The subscribe of NWDAF Event is periodically.
NotificationMethod1 Possible values are: - PERIODIC - ONE_TIME - ON_EVENT_DETECTION.
NpnAccessInfo NPN Access Information.
NrLocation Contains the NR user location.
NrppaInformation Represents a NRPPa related N2 information data part.
NrV2xAuth Contains NR V2X services authorized information.
NsiIdInfo Represents the S-NSSAI and the optionally associated Network Slice Instance(s).
NsiInformation Contains the API URIs of NRF services to be used to discover NFs/services, subscribe to NF status changes and/or request access tokens within the selected Network Slice instance and optional the Identifier of the selected Network Slice instance.
NsiLoadLevelInfo Represents the network slice and optionally the associated network slice instance and the load level information.
NssaaStatus contains the Subscribed S-NSSAI subject to NSSAA procedure and the status.
NssaiMapping Represents the mapping between a S-NSSAI in serving PLMN to a S-NSSAI in home PLMN.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
NumberAverage Represents average and variance information.
NwdafEvent Possible values are: - SLICE_LOAD_LEVEL: Indicates that the event subscribed is load level information of Network Slice - NETWORK_PERFORMANCE: Indicates that the event subscribed is network performance information.
NwdafFailureCode Possible values are: - UNAVAILABLE_DATA: Indicates the requested statistics information for the event is rejected since necessary data to perform the service is unavailable.
NwdafSubscription Individual NWDAF subscription identified by the subscription Id.
ObservedRedundantTransExp Represents the observed redundant transmission experience related information.
OutputStrategy Possible values are: - BINARY: Indicates that the analytics shall only be reported when the requested level of accuracy is reached within a cycle of periodic notification.
PartitioningCriteria Possible values are: - \"TAC\": Type Allocation Code - \"SUBPLMN\": Subscriber PLMN ID - \"GEOAREA\": Geographical area, i.e.
Pc5FlowBitRates it shall represent the PC5 Flow Bit Rates.
Pc5QosFlowItem Contains a PC5 QOS flow.
Pc5QoSPara Contains policy data on the PC5 QoS parameters.
PcfUeCallbackInfo Contains the PCF for the UE information necessary for the PCF for the PDU session to send SM Policy Association Establishment and Termination events.
PduSessionContext Represents a PDU Session Context in UE Context.
PduSessionInfo indicates the DNN and S-NSSAI combination of a PDU session.
PerfData Represents DN performance data.
PeriodicCommunicationIndicator Indicates the Periodic Communication Indicator.
PlmnId When PlmnId needs to be converted to string (e.g.
PlmnIdNid Contains the serving core network operator PLMN ID and, for an SNPN, the NID that together with the PLMN ID identifies the SNPN.
Point Ellipsoid Point.
PointAllOf struct for PointAllOf.
PointAltitude Ellipsoid point with altitude.
PointAltitudeAllOf struct for PointAltitudeAllOf.
PointAltitudeUncertainty Ellipsoid point with altitude and uncertainty ellipsoid.
PointAltitudeUncertaintyAllOf struct for PointAltitudeUncertaintyAllOf.
PointUncertaintyCircle Ellipsoid point with uncertainty circle.
PointUncertaintyCircleAllOf struct for PointUncertaintyCircleAllOf.
PointUncertaintyEllipse Ellipsoid point with uncertainty ellipse.
PointUncertaintyEllipseAllOf struct for PointUncertaintyEllipseAllOf.
PolicyReqTrigger Policy Request Triggers.
Polygon Polygon.
PolygonAllOf struct for PolygonAllOf.
PositioningMethodMdt The enumeration LoggingDurationMdt defines Logging Duration for MDT in the trace.
PreemptionCapability The enumeration PreemptionCapability indicates the pre-emption capability of a request on other QoS flows.
PreemptionVulnerability The enumeration PreemptionVulnerability indicates the pre-emption vulnerability of the QoS flow to pre-emption from other QoS flows.
PresenceInfo If the additionalPraId IE is present, this IE shall state the presence information of the UE for the individual PRA identified by the additionalPraId IE; If the additionalPraId IE is not present, this IE shall state the presence information of the UE for the PRA identified by the praId IE.
PresenceState Possible values are: -IN_AREA: Indicates that the UE is inside or enters the presence reporting area.
PrevSubInfo - Information of the previous subscription.
ProblemDetails Provides additional information in an error response.
ProseContext Represents the ProSe services related parameters.
ProSeInformation Represents 5G ProSe related N2 information.
PWSErrorData Data related to PWS error included in a N2 Information Transfer failure response.
PwsInformation Represents a PWS related information data part.
PWSResponseData Data related PWS included in a N2 Information Transfer response.
QosRequirement - Represents the QoS requirements.
QosResourceType The enumeration QosResourceType indicates whether a QoS Flow is non-GBR, delay critical GBR, or non-delay critical GBR (see clauses 5.7.3.4 and 5.7.3.5 of 3GPP TS 23.501).
QosSustainabilityInfo - Represents the QoS Sustainability information.
RankingCriterion Indicates the usage ranking criterion between the high, medium and low usage UE.
RatFreqInformation Represents the RAT type and/or Frequency information.
RatSelector Indicates the RAT type for the transfer of N2 information.
RatType Indicates the radio access used.
ReachabilityFilter Event filter for REACHABILITY_REPORT event type.
RedirectResponse The response shall include a Location header field containing a different URI (pointing to a different URI of an other service instance), or the same URI if a request is redirected to the same target resource via a different SCP.
RedTransExpOrderingCriterion Possible values are: - TIME_SLOT_START: Indicates the order of time slot start.
RedundantTransmissionExpInfo The redundant transmission experience related information.
RedundantTransmissionExpPerTS The redundant transmission experience per Time Slot.
RedundantTransmissionExpReq Represents other redundant transmission experience analytics requirements.
RefToBinaryData This parameter provides information about the referenced binary body data.
RegistrationContextContainer Registration Context Container used to send the UE context information, N1 message from UE, AN address etc during Registration with AMF re-allocation procedure.
RelativeCartesianLocation Relative Cartesian Location.
ReleaseCause The cause for triggering the release.
ReleaseSessionInfo PDU session Id(s) and the cause for triggering the release.
RelocateUEContextRequest struct for RelocateUEContextRequest.
ReportAmountMdt The enumeration ReportAmountMdt defines Report Amount for MDT in the trace.
ReportingInformation Represents the type of reporting that the subscription requires.
ReportingTrigger The enumeration ReportingTrigger defines Reporting Triggers for MDT in the trace.
ReportIntervalMdt The enumeration ReportIntervalMdt defines Report Interval for MDT in the trace.
ReportIntervalNrMdt The enumeration ReportIntervalNrMdt defines Report Interval in NR for MDT in the trace.
ResourceUsage The current usage of the virtual resources assigned to the NF instances belonging to a particular network slice instance.
RestrictionType It contains the restriction type ALLOWED_AREAS or NOT_ALLOWED_AREAS.
RetainabilityThreshold - Represents a QoS flow retainability threshold.
RoutingAreaId Contains a Routing Area Identification as defined in 3GPP TS 23.003, clause 4.2.
SbiBindingLevel SBI Binding Level.
ScheduledCommunicationTime Identifies time and day of the week when the UE is available for communication.
ScheduledCommunicationTime1 Represents an offered scheduled communication time.
ScheduledCommunicationType Possible values are: -DOWNLINK_ONLY: Downlink only -UPLINK_ONLY: Uplink only -BIDIRECTIONA: Bi-directional.
ScType Indicates the security context type.
SdRange A range of SDs (Slice Differentiators).
SeafData Represents SEAF data derived from data received from AUSF.
SensorMeasurement The enumeration SensorMeasurement defines sensor measurement type for MDT in the trace.
ServerConfiguration stores the information about a server.
ServerVariable stores the information about a server variable.
ServiceAreaId Contains a Service Area Identifier as defined in 3GPP TS 23.003, clause 12.5.
ServiceAreaRestriction Provides information about allowed or not allowed areas.
ServiceExperienceInfo Represents service experience information.
ServiceExperienceType Possible values are: - VOICE: Indicates that the service experience analytics is for voice service.
SessInactTimerForUeComm Represents the N4 Session inactivity timer.
SliceLoadLevelInformation Contains load level information applicable for one or several slices.
SliceMbr MBR related to slice.
SmallDataRateStatus It indicates theSmall Data Rate Control Status.
SmallDataRateStatusInfo Represents the small data rate status.
SmcceInfo Represents the Session Management congestion control experience information.
SmcceUeList Represents the List of UEs classified based on experience level of Session Management congestion control.
SmfChangeIndication Indicates the I-SMF or V-SMF change or removal.
SmfChangeInfo SMF change information for PDU session(s).
SmfSelectionData Represents the SMF Selection information that may be replaced by the PCF.
SmsSupport Indicates the supported SMS delivery of a UE.
Snssai When Snssai needs to be converted to string (e.g.
SnssaiExtension Extensions to the Snssai data type, sdRanges and wildcardSd shall not be present simultaneously.
StationaryIndication Possible values are: - STATIONARY: Identifies the UE is stationary - MOBILE: Identifies the UE is mobile.
StatusChange Enumeration for AMF status.
SubscriptionData Data within an AMF Status Change Subscription request and response.
SupportedGADShapes Indicates supported GAD shapes.
SvcExperience Contains a mean opinion score with the customized range.
TacInfo contains tracking area information (tracking area codes).
TacRange - Range of TACs (Tracking Area Codes).
Tai Contains the tracking area identity as described in 3GPP 23.003.
TaiRange Range of TAIs (Tracking Area Identities).
TargetArea TA list or TAI range list or any TA.
TargetUeInformation Identifies the target UE information.
ThresholdLevel Represents a threshold level.
TimeUnit Possible values are: - MINUTE: Time unit is per minute.
TimeWindow Represents a time window identified by a start time and a stop time.
TnapId Contain the TNAP Identifier see clause5.6.2 of 3GPP TS 23.501.
TopApplication - Top application that contributes the most to the traffic.
TraceData contains Trace control and configuration parameters.
TraceDepth The enumeration TraceDepth defines how detailed information should be recorded in the trace.
TrafficCharacterization Identifies the detailed traffic characterization.
TrafficDescriptor Represents the Traffic Descriptor.
TrafficInformation Traffic information including UL/DL data rate and/or Traffic volume.
TrafficProfile Possible values are: - SINGLE_TRANS_UL: Uplink single packet transmission.
TransferReason Indicates UE Context Transfer Reason.
TransportProtocol Possible values are: - UDP: User Datagram Protocol.
TwapId Contain the TWAP Identifier as defined in clause 4.2.8.5.3 of 3GPP TS 23.501 or the WLAN location information as defined in clause 4.5.7.2.8 of 3GPP TS 23.402.
UeAnalyticsContextDescriptor Contains information about available UE related analytics contexts.
UeAuth Possible values are: - AUTHORIZED: Indicates that the UE is authorized.
UeCommunication Represents UE communication information.
UeContext Represents an individual ueContext resource.
UeContextCancelRelocateData Data structure used for cancellation of UE Context Relocation.
UeContextCreateData Data within a request to create an individual ueContext resource.
UeContextCreatedData Data within a successful response for creating an individual ueContext resource.
UeContextCreateError Data within a failure response for creating a UE context.
UEContextRelease Data within a Release UE Context request.
UeContextRelocateData Data within a Relocate UE Context request.
UeContextRelocatedData Data within a Relocate UE Context response.
UEContextTransfer200Response struct for UEContextTransfer200Response.
UeContextTransferReqData Data within a UE Context Transfer Request to start transferring of an individual ueContext resource from old AMF to new AMF.
UEContextTransferRequest struct for UEContextTransferRequest.
UeContextTransferRspData Data within a successful response to the UE Context Transfer request.
UeContextTransferStatus Describes the status of an individual ueContext resource in UE Context Transfer procedures.
UeDifferentiationInfo Represents the UE Differentiation Information and its validity time.
UeInAreaFilter Additional filters for UE in Area Report event.
UeMobility Represents UE mobility information.
UeN1N2InfoSubscriptionCreateData Data within a create subscription request for UE specific N1 and/or N2 information notification.
UeN1N2InfoSubscriptionCreatedData Data for the created subscription for UE specific N1 and/or N2 information notification.
UeRegStatusUpdateReqData Data within a UE registration status update request to indicate a completion of transferring at a target AMF.
UeRegStatusUpdateRspData Data within a UE registration status update response to provide the status of UE context transfer status update at a source AMF.
UeType Describes the type of UEs.
UmtTime struct for UmtTime.
UncertaintyEllipse Ellipse with uncertainty.
UncertaintyEllipsoid Ellipsoid with uncertainty.
UpdpSubscriptionData UE policy delivery related N1 message notification subscription data.
UpfInformation Represents the ID/address/FQDN of the UPF.
UserDataCongestionInfo Represents the user data congestion information.
UserLocation At least one of eutraLocation, nrLocation and n3gaLocation shall be present.
UtraLocation - Exactly one of cgi, sai or lai shall be present.
UuaaMmStatus Indicates the UUAA-MM status.
V2xContext Represents the V2X services related parameters.
V2xInformation V2X related N2 information.
WlanOrderingCriterion Possible values are: - TIME_SLOT_START: Indicates the order of time slot start.
WlanPerformanceInfo The WLAN performance related information.
WlanPerformanceReq Represents other WLAN performance analytics requirements.
WlanPerSsIdPerformanceInfo The WLAN performance per SSID.
WlanPerTsPerformanceInfo WLAN performance information per Time Slot during the analytics target period.

# Interfaces

No description provided by the author

# Type aliases

AccessType Indicates whether the access is via 3GPP or via non-3GPP.
IndividualSubscriptionDocumentApiService IndividualSubscriptionDocumentApi service.
IndividualUeContextDocumentApiService IndividualUeContextDocumentApi service.
N1N2IndividualSubscriptionDocumentApiService N1N2IndividualSubscriptionDocumentApi service.
N1N2MessageCollectionCollectionApiService N1N2MessageCollectionCollectionApi service.
N1N2SubscriptionsCollectionForIndividualUEContextsCollectionApiService N1N2SubscriptionsCollectionForIndividualUEContextsCollectionApi service.
NonUEN2MessageNotificationIndividualSubscriptionDocumentApiService NonUEN2MessageNotificationIndividualSubscriptionDocumentApi service.
NonUEN2MessagesCollectionCollectionApiService NonUEN2MessagesCollectionCollectionApi service.
NonUEN2MessagesSubscriptionsCollectionCollectionApiService NonUEN2MessagesSubscriptionsCollectionCollectionApi service.
ServerConfigurations stores multiple ServerConfiguration items.
SubscriptionsCollectionCollectionApiService SubscriptionsCollectionCollectionApi service.