OpenAPI_AsSessionWithQoS

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

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

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

README

Go API client for OpenAPI_AsSessionWithQoS

API for setting us an AS session with required QoS.
© 2023, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC).
All rights reserved.

Overview

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

  • API version: 1.2.3
  • 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_AsSessionWithQoS "gitee.com/konglinglong/openapi/OpenAPI_AsSessionWithQoS"

To use a proxy, set the environment variable HTTP_PROXY:

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

Configuration of Server URL

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

Select Server Configuration

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

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

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

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

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

URLs Configuration per Operation

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

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

Documentation for API Endpoints

All URIs are relative to https://example.com/3gpp-as-session-with-qos/v1

Class Method HTTP request Description
ASSessionWithRequiredQoSSubscriptionsAPI CreateASSessionWithQoSSubscription Post /{scsAsId}/subscriptions Creates a new subscription resource.
ASSessionWithRequiredQoSSubscriptionsAPI FetchAllASSessionWithQoSSubscriptions Get /{scsAsId}/subscriptions Read all or queried active subscriptions for the SCS/AS.
IndividualASSessionWithRequiredQoSSubscriptionAPI DeleteIndASSessionWithQoSSubscription Delete /{scsAsId}/subscriptions/{subscriptionId} Deletes an already existing subscription.
IndividualASSessionWithRequiredQoSSubscriptionAPI FetchIndASSessionWithQoSSubscription Get /{scsAsId}/subscriptions/{subscriptionId} Read an active subscriptions for the SCS/AS and the subscription Id.
IndividualASSessionWithRequiredQoSSubscriptionAPI ModifyIndASSessionWithQoSSubscription Patch /{scsAsId}/subscriptions/{subscriptionId} Updates/replaces an existing subscription resource.
IndividualASSessionWithRequiredQoSSubscriptionAPI UpdateIndASSessionWithQoSSubscription Put /{scsAsId}/subscriptions/{subscriptionId} Updates/replaces an existing subscription resource.

Documentation For Models

Documentation For Authorization

Authentication schemes defined for the API:

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

Example

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

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

import "golang.org/x/oauth2"

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

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

Documentation for Utility Methods

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

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

Author

Documentation

Index

Constants

This section is empty.

Variables

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

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

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

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

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

Functions

func CacheExpires

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

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

func IsNil

func IsNil(i interface{}) bool

IsNil checks if an input is nil

func PtrBool

func PtrBool(v bool) *bool

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

func PtrFloat32

func PtrFloat32(v float32) *float32

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

func PtrFloat64

func PtrFloat64(v float64) *float64

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

func PtrInt

func PtrInt(v int) *int

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

func PtrInt32

func PtrInt32(v int32) *int32

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

func PtrInt64

func PtrInt64(v int64) *int64

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

func PtrString

func PtrString(v string) *string

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

func PtrTime

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

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

Types

type APIClient

type APIClient struct {
	ASSessionWithRequiredQoSSubscriptionsAPI *ASSessionWithRequiredQoSSubscriptionsAPIService

	IndividualASSessionWithRequiredQoSSubscriptionAPI *IndividualASSessionWithRequiredQoSSubscriptionAPIService
	// contains filtered or unexported fields
}

APIClient manages communication with the 3gpp-as-session-with-qos API v1.2.3 In most cases there should be only one, shared, APIClient.

func NewAPIClient

func NewAPIClient(cfg *Configuration) *APIClient

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

func (*APIClient) GetConfig

func (c *APIClient) GetConfig() *Configuration

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

type APIKey

type APIKey struct {
	Key    string
	Prefix string
}

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

type APIResponse

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

APIResponse stores the API response returned by the server.

func NewAPIResponse

func NewAPIResponse(r *http.Response) *APIResponse

NewAPIResponse returns a new APIResponse object.

func NewAPIResponseWithError

func NewAPIResponseWithError(errorMessage string) *APIResponse

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

type ASSessionWithRequiredQoSSubscriptionsAPIService

type ASSessionWithRequiredQoSSubscriptionsAPIService service

ASSessionWithRequiredQoSSubscriptionsAPIService ASSessionWithRequiredQoSSubscriptionsAPI service

func (*ASSessionWithRequiredQoSSubscriptionsAPIService) CreateASSessionWithQoSSubscription

CreateASSessionWithQoSSubscription Creates a new subscription resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param scsAsId Identifier of the SCS/AS
@return ApiCreateASSessionWithQoSSubscriptionRequest

func (*ASSessionWithRequiredQoSSubscriptionsAPIService) CreateASSessionWithQoSSubscriptionExecute

Execute executes the request

@return AsSessionWithQoSSubscription

func (*ASSessionWithRequiredQoSSubscriptionsAPIService) FetchAllASSessionWithQoSSubscriptions

FetchAllASSessionWithQoSSubscriptions Read all or queried active subscriptions for the SCS/AS.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param scsAsId Identifier of the SCS/AS
@return ApiFetchAllASSessionWithQoSSubscriptionsRequest

func (*ASSessionWithRequiredQoSSubscriptionsAPIService) FetchAllASSessionWithQoSSubscriptionsExecute

Execute executes the request

@return []AsSessionWithQoSSubscription

type AccumulatedUsage

type AccumulatedUsage struct {
	// Unsigned integer identifying a period of time in units of seconds.
	Duration *int32 `json:"duration,omitempty"`
	// Unsigned integer identifying a volume in units of bytes.
	TotalVolume *int64 `json:"totalVolume,omitempty"`
	// Unsigned integer identifying a volume in units of bytes.
	DownlinkVolume *int64 `json:"downlinkVolume,omitempty"`
	// Unsigned integer identifying a volume in units of bytes.
	UplinkVolume *int64 `json:"uplinkVolume,omitempty"`
}

AccumulatedUsage Represents an accumulated usage.

func NewAccumulatedUsage

func NewAccumulatedUsage() *AccumulatedUsage

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

func NewAccumulatedUsageWithDefaults

func NewAccumulatedUsageWithDefaults() *AccumulatedUsage

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

func (*AccumulatedUsage) GetDownlinkVolume

func (o *AccumulatedUsage) GetDownlinkVolume() int64

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

func (*AccumulatedUsage) GetDownlinkVolumeOk

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

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

func (*AccumulatedUsage) GetDuration

func (o *AccumulatedUsage) GetDuration() int32

GetDuration returns the Duration field value if set, zero value otherwise.

func (*AccumulatedUsage) GetDurationOk

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

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

func (*AccumulatedUsage) GetTotalVolume

func (o *AccumulatedUsage) GetTotalVolume() int64

GetTotalVolume returns the TotalVolume field value if set, zero value otherwise.

func (*AccumulatedUsage) GetTotalVolumeOk

func (o *AccumulatedUsage) GetTotalVolumeOk() (*int64, bool)

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

func (*AccumulatedUsage) GetUplinkVolume

func (o *AccumulatedUsage) GetUplinkVolume() int64

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

func (*AccumulatedUsage) GetUplinkVolumeOk

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

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

func (*AccumulatedUsage) HasDownlinkVolume

func (o *AccumulatedUsage) HasDownlinkVolume() bool

HasDownlinkVolume returns a boolean if a field has been set.

func (*AccumulatedUsage) HasDuration

func (o *AccumulatedUsage) HasDuration() bool

HasDuration returns a boolean if a field has been set.

func (*AccumulatedUsage) HasTotalVolume

func (o *AccumulatedUsage) HasTotalVolume() bool

HasTotalVolume returns a boolean if a field has been set.

func (*AccumulatedUsage) HasUplinkVolume

func (o *AccumulatedUsage) HasUplinkVolume() bool

HasUplinkVolume returns a boolean if a field has been set.

func (AccumulatedUsage) MarshalJSON

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

func (*AccumulatedUsage) SetDownlinkVolume

func (o *AccumulatedUsage) SetDownlinkVolume(v int64)

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

func (*AccumulatedUsage) SetDuration

func (o *AccumulatedUsage) SetDuration(v int32)

SetDuration gets a reference to the given int32 and assigns it to the Duration field.

func (*AccumulatedUsage) SetTotalVolume

func (o *AccumulatedUsage) SetTotalVolume(v int64)

SetTotalVolume gets a reference to the given int64 and assigns it to the TotalVolume field.

func (*AccumulatedUsage) SetUplinkVolume

func (o *AccumulatedUsage) SetUplinkVolume(v int64)

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

func (AccumulatedUsage) ToMap

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

type AlternativeServiceRequirementsData

type AlternativeServiceRequirementsData struct {
	// Reference to this alternative QoS related parameter set.
	AltQosParamSetRef string `json:"altQosParamSetRef"`
	// String representing a bit rate; the prefixes follow the standard symbols from The International System of Units, and represent x1000 multipliers, with the exception that prefix \"K\" is used to represent the standard symbol \"k\".
	GbrUl *string `json:"gbrUl,omitempty"`
	// String representing a bit rate; the prefixes follow the standard symbols from The International System of Units, and represent x1000 multipliers, with the exception that prefix \"K\" is used to represent the standard symbol \"k\".
	GbrDl *string `json:"gbrDl,omitempty"`
	// Unsigned integer indicating Packet Delay Budget (see clauses 5.7.3.4 and 5.7.4 of 3GPP TS 23.501), expressed in milliseconds.
	Pdb *int32 `json:"pdb,omitempty"`
}

AlternativeServiceRequirementsData Contains an alternative QoS related parameter set.

func NewAlternativeServiceRequirementsData

func NewAlternativeServiceRequirementsData(altQosParamSetRef string) *AlternativeServiceRequirementsData

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

func NewAlternativeServiceRequirementsDataWithDefaults

func NewAlternativeServiceRequirementsDataWithDefaults() *AlternativeServiceRequirementsData

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

func (*AlternativeServiceRequirementsData) GetAltQosParamSetRef

func (o *AlternativeServiceRequirementsData) GetAltQosParamSetRef() string

GetAltQosParamSetRef returns the AltQosParamSetRef field value

func (*AlternativeServiceRequirementsData) GetAltQosParamSetRefOk

func (o *AlternativeServiceRequirementsData) GetAltQosParamSetRefOk() (*string, bool)

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

func (*AlternativeServiceRequirementsData) GetGbrDl

GetGbrDl returns the GbrDl field value if set, zero value otherwise.

func (*AlternativeServiceRequirementsData) GetGbrDlOk

func (o *AlternativeServiceRequirementsData) GetGbrDlOk() (*string, bool)

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

func (*AlternativeServiceRequirementsData) GetGbrUl

GetGbrUl returns the GbrUl field value if set, zero value otherwise.

func (*AlternativeServiceRequirementsData) GetGbrUlOk

func (o *AlternativeServiceRequirementsData) GetGbrUlOk() (*string, bool)

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

func (*AlternativeServiceRequirementsData) GetPdb

GetPdb returns the Pdb field value if set, zero value otherwise.

func (*AlternativeServiceRequirementsData) GetPdbOk

func (o *AlternativeServiceRequirementsData) GetPdbOk() (*int32, bool)

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

func (*AlternativeServiceRequirementsData) HasGbrDl

HasGbrDl returns a boolean if a field has been set.

func (*AlternativeServiceRequirementsData) HasGbrUl

HasGbrUl returns a boolean if a field has been set.

func (*AlternativeServiceRequirementsData) HasPdb

HasPdb returns a boolean if a field has been set.

func (AlternativeServiceRequirementsData) MarshalJSON

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

func (*AlternativeServiceRequirementsData) SetAltQosParamSetRef

func (o *AlternativeServiceRequirementsData) SetAltQosParamSetRef(v string)

SetAltQosParamSetRef sets field value

func (*AlternativeServiceRequirementsData) SetGbrDl

SetGbrDl gets a reference to the given string and assigns it to the GbrDl field.

func (*AlternativeServiceRequirementsData) SetGbrUl

SetGbrUl gets a reference to the given string and assigns it to the GbrUl field.

func (*AlternativeServiceRequirementsData) SetPdb

SetPdb gets a reference to the given int32 and assigns it to the Pdb field.

func (AlternativeServiceRequirementsData) ToMap

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

func (*AlternativeServiceRequirementsData) UnmarshalJSON

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

type ApiCreateASSessionWithQoSSubscriptionRequest

type ApiCreateASSessionWithQoSSubscriptionRequest struct {
	ApiService *ASSessionWithRequiredQoSSubscriptionsAPIService
	// contains filtered or unexported fields
}

func (ApiCreateASSessionWithQoSSubscriptionRequest) AsSessionWithQoSSubscription

Request to create a new subscription resource

func (ApiCreateASSessionWithQoSSubscriptionRequest) Execute

type ApiDeleteIndASSessionWithQoSSubscriptionRequest

type ApiDeleteIndASSessionWithQoSSubscriptionRequest struct {
	ApiService *IndividualASSessionWithRequiredQoSSubscriptionAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteIndASSessionWithQoSSubscriptionRequest) Execute

type ApiFetchAllASSessionWithQoSSubscriptionsRequest

type ApiFetchAllASSessionWithQoSSubscriptionsRequest struct {
	ApiService *ASSessionWithRequiredQoSSubscriptionsAPIService
	// contains filtered or unexported fields
}

func (ApiFetchAllASSessionWithQoSSubscriptionsRequest) Execute

func (ApiFetchAllASSessionWithQoSSubscriptionsRequest) IpAddrs

The IP address(es) of the requested UE(s).

func (ApiFetchAllASSessionWithQoSSubscriptionsRequest) IpDomain

The IPv4 address domain identifier. The attribute may only be provided if IPv4 address is included in the ip-addrs query parameter.

func (ApiFetchAllASSessionWithQoSSubscriptionsRequest) MacAddrs

The MAC address(es) of the requested UE(s).

type ApiFetchIndASSessionWithQoSSubscriptionRequest

type ApiFetchIndASSessionWithQoSSubscriptionRequest struct {
	ApiService *IndividualASSessionWithRequiredQoSSubscriptionAPIService
	// contains filtered or unexported fields
}

func (ApiFetchIndASSessionWithQoSSubscriptionRequest) Execute

type ApiModifyIndASSessionWithQoSSubscriptionRequest

type ApiModifyIndASSessionWithQoSSubscriptionRequest struct {
	ApiService *IndividualASSessionWithRequiredQoSSubscriptionAPIService
	// contains filtered or unexported fields
}

func (ApiModifyIndASSessionWithQoSSubscriptionRequest) AsSessionWithQoSSubscriptionPatch

func (ApiModifyIndASSessionWithQoSSubscriptionRequest) Execute

type ApiUpdateIndASSessionWithQoSSubscriptionRequest

type ApiUpdateIndASSessionWithQoSSubscriptionRequest struct {
	ApiService *IndividualASSessionWithRequiredQoSSubscriptionAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateIndASSessionWithQoSSubscriptionRequest) AsSessionWithQoSSubscription

Parameters to update/replace the existing subscription

func (ApiUpdateIndASSessionWithQoSSubscriptionRequest) Execute

type AsSessionWithQoSSubscription

type AsSessionWithQoSSubscription struct {
	// string formatted according to IETF RFC 3986 identifying a referenced resource.
	Self *string `json:"self,omitempty"`
	// A string used to indicate the features supported by an API that is used as defined in clause  6.6 in 3GPP TS 29.500. The string shall contain a bitmask indicating supported features in  hexadecimal representation Each character in the string shall take a value of \"0\" to \"9\",  \"a\" to \"f\" or \"A\" to \"F\" and shall represent the support of 4 features as described in  table 5.2.2-3. The most significant character representing the highest-numbered features shall  appear first in the string, and the character representing features 1 to 4 shall appear last  in the string. The list of features and their numbering (starting with 1) are defined  separately for each API. If the string contains a lower number of characters than there are  defined features for an API, all features that would be represented by characters that are not  present in the string are not supported.
	SupportedFeatures *string `json:"supportedFeatures,omitempty"`
	// String representing a Data Network as defined in clause 9A of 3GPP TS 23.003;  it shall contain either a DNN Network Identifier, or a full DNN with both the Network  Identifier and Operator Identifier, as specified in 3GPP TS 23.003 clause 9.1.1 and 9.1.2. It shall be coded as string in which the labels are separated by dots  (e.g. \"Label1.Label2.Label3\").
	Dnn    *string `json:"dnn,omitempty"`
	Snssai *Snssai `json:"snssai,omitempty"`
	// string formatted according to IETF RFC 3986 identifying a referenced resource.
	NotificationDestination string `json:"notificationDestination"`
	// Identifies the external Application Identifier.
	ExterAppId *string `json:"exterAppId,omitempty"`
	// Describe the data flow which requires QoS.
	FlowInfo []FlowInfo `json:"flowInfo,omitempty"`
	// Identifies Ethernet packet flows.
	EthFlowInfo []EthFlowDescription `json:"ethFlowInfo,omitempty"`
	// Identifies the Ethernet flows which require QoS. Each Ethernet flow consists of a flow idenifer and the corresponding UL and/or DL flows.
	EnEthFlowInfo []EthFlowInfo `json:"enEthFlowInfo,omitempty"`
	// Identifies a pre-defined QoS information
	QosReference *string `json:"qosReference,omitempty"`
	// Identifies an ordered list of pre-defined QoS information. The lower the index of the array for a given entry, the higher the priority.
	AltQoSReferences []string `json:"altQoSReferences,omitempty"`
	// Identifies an ordered list of alternative service requirements that include individual QoS parameter sets. The lower the index of the array for a given entry, the higher the priority.
	AltQosReqs []AlternativeServiceRequirementsData `json:"altQosReqs,omitempty"`
	// Indicates whether the QoS flow parameters signalling to the UE when the SMF is notified by the NG-RAN of changes in the fulfilled QoS situation is disabled (true) or not (false). Default value is false. The fulfilled situation is either the QoS profile or an Alternative QoS Profile.
	DisUeNotif *bool `json:"disUeNotif,omitempty"`
	// string identifying a Ipv4 address formatted in the \"dotted decimal\" notation as defined in IETF RFC 1166.
	UeIpv4Addr *string `json:"ueIpv4Addr,omitempty"`
	IpDomain   *string `json:"ipDomain,omitempty"`
	// string identifying a Ipv6 address formatted according to clause 4 in IETF RFC 5952. The mixed Ipv4 Ipv6 notation according to clause 5 of IETF RFC 5952 shall not be used.
	UeIpv6Addr *string `json:"ueIpv6Addr,omitempty"`
	// String identifying a MAC address formatted in the hexadecimal notation according to clause 1.1 and clause 2.1 of RFC 7042.
	MacAddr        *string                   `json:"macAddr,omitempty"`
	UsageThreshold *UsageThreshold           `json:"usageThreshold,omitempty"`
	SponsorInfo    *SponsorInformation       `json:"sponsorInfo,omitempty"`
	QosMonInfo     *QosMonitoringInformation `json:"qosMonInfo,omitempty"`
	// Indicates whether the direct event notification is requested (true) or not (false). Default value is false.
	DirectNotifInd *bool              `json:"directNotifInd,omitempty"`
	TscQosReq      *TscQosRequirement `json:"tscQosReq,omitempty"`
	// Set to true by the SCS/AS to request the SCEF to send a test notification as defined in clause 5.2.5.3. Set to false or omitted otherwise.
	RequestTestNotification *bool               `json:"requestTestNotification,omitempty"`
	WebsockNotifConfig      *WebsockNotifConfig `json:"websockNotifConfig,omitempty"`
	// Represents the list of user plane event(s) to which the SCS/AS requests to subscribe to.
	Events []UserPlaneEvent `json:"events,omitempty"`
}

AsSessionWithQoSSubscription Represents an individual AS session with required QoS subscription resource.

func NewAsSessionWithQoSSubscription

func NewAsSessionWithQoSSubscription(notificationDestination string) *AsSessionWithQoSSubscription

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

func NewAsSessionWithQoSSubscriptionWithDefaults

func NewAsSessionWithQoSSubscriptionWithDefaults() *AsSessionWithQoSSubscription

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

func (*AsSessionWithQoSSubscription) GetAltQoSReferences

func (o *AsSessionWithQoSSubscription) GetAltQoSReferences() []string

GetAltQoSReferences returns the AltQoSReferences field value if set, zero value otherwise.

func (*AsSessionWithQoSSubscription) GetAltQoSReferencesOk

func (o *AsSessionWithQoSSubscription) GetAltQoSReferencesOk() ([]string, bool)

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

func (*AsSessionWithQoSSubscription) GetAltQosReqs

GetAltQosReqs returns the AltQosReqs field value if set, zero value otherwise.

func (*AsSessionWithQoSSubscription) GetAltQosReqsOk

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

func (*AsSessionWithQoSSubscription) GetDirectNotifInd

func (o *AsSessionWithQoSSubscription) GetDirectNotifInd() bool

GetDirectNotifInd returns the DirectNotifInd field value if set, zero value otherwise.

func (*AsSessionWithQoSSubscription) GetDirectNotifIndOk

func (o *AsSessionWithQoSSubscription) GetDirectNotifIndOk() (*bool, bool)

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

func (*AsSessionWithQoSSubscription) GetDisUeNotif

func (o *AsSessionWithQoSSubscription) GetDisUeNotif() bool

GetDisUeNotif returns the DisUeNotif field value if set, zero value otherwise.

func (*AsSessionWithQoSSubscription) GetDisUeNotifOk

func (o *AsSessionWithQoSSubscription) GetDisUeNotifOk() (*bool, bool)

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

func (*AsSessionWithQoSSubscription) GetDnn

GetDnn returns the Dnn field value if set, zero value otherwise.

func (*AsSessionWithQoSSubscription) GetDnnOk

func (o *AsSessionWithQoSSubscription) GetDnnOk() (*string, bool)

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

func (*AsSessionWithQoSSubscription) GetEnEthFlowInfo

func (o *AsSessionWithQoSSubscription) GetEnEthFlowInfo() []EthFlowInfo

GetEnEthFlowInfo returns the EnEthFlowInfo field value if set, zero value otherwise.

func (*AsSessionWithQoSSubscription) GetEnEthFlowInfoOk

func (o *AsSessionWithQoSSubscription) GetEnEthFlowInfoOk() ([]EthFlowInfo, bool)

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

func (*AsSessionWithQoSSubscription) GetEthFlowInfo

func (o *AsSessionWithQoSSubscription) GetEthFlowInfo() []EthFlowDescription

GetEthFlowInfo returns the EthFlowInfo field value if set, zero value otherwise.

func (*AsSessionWithQoSSubscription) GetEthFlowInfoOk

func (o *AsSessionWithQoSSubscription) GetEthFlowInfoOk() ([]EthFlowDescription, bool)

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

func (*AsSessionWithQoSSubscription) GetEvents

GetEvents returns the Events field value if set, zero value otherwise.

func (*AsSessionWithQoSSubscription) GetEventsOk

func (o *AsSessionWithQoSSubscription) GetEventsOk() ([]UserPlaneEvent, bool)

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

func (*AsSessionWithQoSSubscription) GetExterAppId

func (o *AsSessionWithQoSSubscription) GetExterAppId() string

GetExterAppId returns the ExterAppId field value if set, zero value otherwise.

func (*AsSessionWithQoSSubscription) GetExterAppIdOk

func (o *AsSessionWithQoSSubscription) GetExterAppIdOk() (*string, bool)

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

func (*AsSessionWithQoSSubscription) GetFlowInfo

func (o *AsSessionWithQoSSubscription) GetFlowInfo() []FlowInfo

GetFlowInfo returns the FlowInfo field value if set, zero value otherwise.

func (*AsSessionWithQoSSubscription) GetFlowInfoOk

func (o *AsSessionWithQoSSubscription) GetFlowInfoOk() ([]FlowInfo, bool)

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

func (*AsSessionWithQoSSubscription) GetIpDomain

func (o *AsSessionWithQoSSubscription) GetIpDomain() string

GetIpDomain returns the IpDomain field value if set, zero value otherwise.

func (*AsSessionWithQoSSubscription) GetIpDomainOk

func (o *AsSessionWithQoSSubscription) GetIpDomainOk() (*string, bool)

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

func (*AsSessionWithQoSSubscription) GetMacAddr

func (o *AsSessionWithQoSSubscription) GetMacAddr() string

GetMacAddr returns the MacAddr field value if set, zero value otherwise.

func (*AsSessionWithQoSSubscription) GetMacAddrOk

func (o *AsSessionWithQoSSubscription) GetMacAddrOk() (*string, bool)

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

func (*AsSessionWithQoSSubscription) GetNotificationDestination

func (o *AsSessionWithQoSSubscription) GetNotificationDestination() string

GetNotificationDestination returns the NotificationDestination field value

func (*AsSessionWithQoSSubscription) GetNotificationDestinationOk

func (o *AsSessionWithQoSSubscription) GetNotificationDestinationOk() (*string, bool)

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

func (*AsSessionWithQoSSubscription) GetQosMonInfo

GetQosMonInfo returns the QosMonInfo field value if set, zero value otherwise.

func (*AsSessionWithQoSSubscription) GetQosMonInfoOk

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

func (*AsSessionWithQoSSubscription) GetQosReference

func (o *AsSessionWithQoSSubscription) GetQosReference() string

GetQosReference returns the QosReference field value if set, zero value otherwise.

func (*AsSessionWithQoSSubscription) GetQosReferenceOk

func (o *AsSessionWithQoSSubscription) GetQosReferenceOk() (*string, bool)

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

func (*AsSessionWithQoSSubscription) GetRequestTestNotification

func (o *AsSessionWithQoSSubscription) GetRequestTestNotification() bool

GetRequestTestNotification returns the RequestTestNotification field value if set, zero value otherwise.

func (*AsSessionWithQoSSubscription) GetRequestTestNotificationOk

func (o *AsSessionWithQoSSubscription) GetRequestTestNotificationOk() (*bool, bool)

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

func (*AsSessionWithQoSSubscription) GetSelf

func (o *AsSessionWithQoSSubscription) GetSelf() string

GetSelf returns the Self field value if set, zero value otherwise.

func (*AsSessionWithQoSSubscription) GetSelfOk

func (o *AsSessionWithQoSSubscription) GetSelfOk() (*string, bool)

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

func (*AsSessionWithQoSSubscription) GetSnssai

func (o *AsSessionWithQoSSubscription) GetSnssai() Snssai

GetSnssai returns the Snssai field value if set, zero value otherwise.

func (*AsSessionWithQoSSubscription) GetSnssaiOk

func (o *AsSessionWithQoSSubscription) GetSnssaiOk() (*Snssai, bool)

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

func (*AsSessionWithQoSSubscription) GetSponsorInfo

GetSponsorInfo returns the SponsorInfo field value if set, zero value otherwise.

func (*AsSessionWithQoSSubscription) GetSponsorInfoOk

func (o *AsSessionWithQoSSubscription) GetSponsorInfoOk() (*SponsorInformation, bool)

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

func (*AsSessionWithQoSSubscription) GetSupportedFeatures

func (o *AsSessionWithQoSSubscription) GetSupportedFeatures() string

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

func (*AsSessionWithQoSSubscription) GetSupportedFeaturesOk

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

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

func (*AsSessionWithQoSSubscription) GetTscQosReq

GetTscQosReq returns the TscQosReq field value if set, zero value otherwise.

func (*AsSessionWithQoSSubscription) GetTscQosReqOk

func (o *AsSessionWithQoSSubscription) GetTscQosReqOk() (*TscQosRequirement, bool)

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

func (*AsSessionWithQoSSubscription) GetUeIpv4Addr

func (o *AsSessionWithQoSSubscription) GetUeIpv4Addr() string

GetUeIpv4Addr returns the UeIpv4Addr field value if set, zero value otherwise.

func (*AsSessionWithQoSSubscription) GetUeIpv4AddrOk

func (o *AsSessionWithQoSSubscription) GetUeIpv4AddrOk() (*string, bool)

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

func (*AsSessionWithQoSSubscription) GetUeIpv6Addr

func (o *AsSessionWithQoSSubscription) GetUeIpv6Addr() string

GetUeIpv6Addr returns the UeIpv6Addr field value if set, zero value otherwise.

func (*AsSessionWithQoSSubscription) GetUeIpv6AddrOk

func (o *AsSessionWithQoSSubscription) GetUeIpv6AddrOk() (*string, bool)

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

func (*AsSessionWithQoSSubscription) GetUsageThreshold

func (o *AsSessionWithQoSSubscription) GetUsageThreshold() UsageThreshold

GetUsageThreshold returns the UsageThreshold field value if set, zero value otherwise.

func (*AsSessionWithQoSSubscription) GetUsageThresholdOk

func (o *AsSessionWithQoSSubscription) GetUsageThresholdOk() (*UsageThreshold, bool)

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

func (*AsSessionWithQoSSubscription) GetWebsockNotifConfig

func (o *AsSessionWithQoSSubscription) GetWebsockNotifConfig() WebsockNotifConfig

GetWebsockNotifConfig returns the WebsockNotifConfig field value if set, zero value otherwise.

func (*AsSessionWithQoSSubscription) GetWebsockNotifConfigOk

func (o *AsSessionWithQoSSubscription) GetWebsockNotifConfigOk() (*WebsockNotifConfig, bool)

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

func (*AsSessionWithQoSSubscription) HasAltQoSReferences

func (o *AsSessionWithQoSSubscription) HasAltQoSReferences() bool

HasAltQoSReferences returns a boolean if a field has been set.

func (*AsSessionWithQoSSubscription) HasAltQosReqs

func (o *AsSessionWithQoSSubscription) HasAltQosReqs() bool

HasAltQosReqs returns a boolean if a field has been set.

func (*AsSessionWithQoSSubscription) HasDirectNotifInd

func (o *AsSessionWithQoSSubscription) HasDirectNotifInd() bool

HasDirectNotifInd returns a boolean if a field has been set.

func (*AsSessionWithQoSSubscription) HasDisUeNotif

func (o *AsSessionWithQoSSubscription) HasDisUeNotif() bool

HasDisUeNotif returns a boolean if a field has been set.

func (*AsSessionWithQoSSubscription) HasDnn

func (o *AsSessionWithQoSSubscription) HasDnn() bool

HasDnn returns a boolean if a field has been set.

func (*AsSessionWithQoSSubscription) HasEnEthFlowInfo

func (o *AsSessionWithQoSSubscription) HasEnEthFlowInfo() bool

HasEnEthFlowInfo returns a boolean if a field has been set.

func (*AsSessionWithQoSSubscription) HasEthFlowInfo

func (o *AsSessionWithQoSSubscription) HasEthFlowInfo() bool

HasEthFlowInfo returns a boolean if a field has been set.

func (*AsSessionWithQoSSubscription) HasEvents

func (o *AsSessionWithQoSSubscription) HasEvents() bool

HasEvents returns a boolean if a field has been set.

func (*AsSessionWithQoSSubscription) HasExterAppId

func (o *AsSessionWithQoSSubscription) HasExterAppId() bool

HasExterAppId returns a boolean if a field has been set.

func (*AsSessionWithQoSSubscription) HasFlowInfo

func (o *AsSessionWithQoSSubscription) HasFlowInfo() bool

HasFlowInfo returns a boolean if a field has been set.

func (*AsSessionWithQoSSubscription) HasIpDomain

func (o *AsSessionWithQoSSubscription) HasIpDomain() bool

HasIpDomain returns a boolean if a field has been set.

func (*AsSessionWithQoSSubscription) HasMacAddr

func (o *AsSessionWithQoSSubscription) HasMacAddr() bool

HasMacAddr returns a boolean if a field has been set.

func (*AsSessionWithQoSSubscription) HasQosMonInfo

func (o *AsSessionWithQoSSubscription) HasQosMonInfo() bool

HasQosMonInfo returns a boolean if a field has been set.

func (*AsSessionWithQoSSubscription) HasQosReference

func (o *AsSessionWithQoSSubscription) HasQosReference() bool

HasQosReference returns a boolean if a field has been set.

func (*AsSessionWithQoSSubscription) HasRequestTestNotification

func (o *AsSessionWithQoSSubscription) HasRequestTestNotification() bool

HasRequestTestNotification returns a boolean if a field has been set.

func (*AsSessionWithQoSSubscription) HasSelf

func (o *AsSessionWithQoSSubscription) HasSelf() bool

HasSelf returns a boolean if a field has been set.

func (*AsSessionWithQoSSubscription) HasSnssai

func (o *AsSessionWithQoSSubscription) HasSnssai() bool

HasSnssai returns a boolean if a field has been set.

func (*AsSessionWithQoSSubscription) HasSponsorInfo

func (o *AsSessionWithQoSSubscription) HasSponsorInfo() bool

HasSponsorInfo returns a boolean if a field has been set.

func (*AsSessionWithQoSSubscription) HasSupportedFeatures

func (o *AsSessionWithQoSSubscription) HasSupportedFeatures() bool

HasSupportedFeatures returns a boolean if a field has been set.

func (*AsSessionWithQoSSubscription) HasTscQosReq

func (o *AsSessionWithQoSSubscription) HasTscQosReq() bool

HasTscQosReq returns a boolean if a field has been set.

func (*AsSessionWithQoSSubscription) HasUeIpv4Addr

func (o *AsSessionWithQoSSubscription) HasUeIpv4Addr() bool

HasUeIpv4Addr returns a boolean if a field has been set.

func (*AsSessionWithQoSSubscription) HasUeIpv6Addr

func (o *AsSessionWithQoSSubscription) HasUeIpv6Addr() bool

HasUeIpv6Addr returns a boolean if a field has been set.

func (*AsSessionWithQoSSubscription) HasUsageThreshold

func (o *AsSessionWithQoSSubscription) HasUsageThreshold() bool

HasUsageThreshold returns a boolean if a field has been set.

func (*AsSessionWithQoSSubscription) HasWebsockNotifConfig

func (o *AsSessionWithQoSSubscription) HasWebsockNotifConfig() bool

HasWebsockNotifConfig returns a boolean if a field has been set.

func (AsSessionWithQoSSubscription) MarshalJSON

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

func (*AsSessionWithQoSSubscription) SetAltQoSReferences

func (o *AsSessionWithQoSSubscription) SetAltQoSReferences(v []string)

SetAltQoSReferences gets a reference to the given []string and assigns it to the AltQoSReferences field.

func (*AsSessionWithQoSSubscription) SetAltQosReqs

SetAltQosReqs gets a reference to the given []AlternativeServiceRequirementsData and assigns it to the AltQosReqs field.

func (*AsSessionWithQoSSubscription) SetDirectNotifInd

func (o *AsSessionWithQoSSubscription) SetDirectNotifInd(v bool)

SetDirectNotifInd gets a reference to the given bool and assigns it to the DirectNotifInd field.

func (*AsSessionWithQoSSubscription) SetDisUeNotif

func (o *AsSessionWithQoSSubscription) SetDisUeNotif(v bool)

SetDisUeNotif gets a reference to the given bool and assigns it to the DisUeNotif field.

func (*AsSessionWithQoSSubscription) SetDnn

func (o *AsSessionWithQoSSubscription) SetDnn(v string)

SetDnn gets a reference to the given string and assigns it to the Dnn field.

func (*AsSessionWithQoSSubscription) SetEnEthFlowInfo

func (o *AsSessionWithQoSSubscription) SetEnEthFlowInfo(v []EthFlowInfo)

SetEnEthFlowInfo gets a reference to the given []EthFlowInfo and assigns it to the EnEthFlowInfo field.

func (*AsSessionWithQoSSubscription) SetEthFlowInfo

func (o *AsSessionWithQoSSubscription) SetEthFlowInfo(v []EthFlowDescription)

SetEthFlowInfo gets a reference to the given []EthFlowDescription and assigns it to the EthFlowInfo field.

func (*AsSessionWithQoSSubscription) SetEvents

func (o *AsSessionWithQoSSubscription) SetEvents(v []UserPlaneEvent)

SetEvents gets a reference to the given []UserPlaneEvent and assigns it to the Events field.

func (*AsSessionWithQoSSubscription) SetExterAppId

func (o *AsSessionWithQoSSubscription) SetExterAppId(v string)

SetExterAppId gets a reference to the given string and assigns it to the ExterAppId field.

func (*AsSessionWithQoSSubscription) SetFlowInfo

func (o *AsSessionWithQoSSubscription) SetFlowInfo(v []FlowInfo)

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

func (*AsSessionWithQoSSubscription) SetIpDomain

func (o *AsSessionWithQoSSubscription) SetIpDomain(v string)

SetIpDomain gets a reference to the given string and assigns it to the IpDomain field.

func (*AsSessionWithQoSSubscription) SetMacAddr

func (o *AsSessionWithQoSSubscription) SetMacAddr(v string)

SetMacAddr gets a reference to the given string and assigns it to the MacAddr field.

func (*AsSessionWithQoSSubscription) SetNotificationDestination

func (o *AsSessionWithQoSSubscription) SetNotificationDestination(v string)

SetNotificationDestination sets field value

func (*AsSessionWithQoSSubscription) SetQosMonInfo

SetQosMonInfo gets a reference to the given QosMonitoringInformation and assigns it to the QosMonInfo field.

func (*AsSessionWithQoSSubscription) SetQosReference

func (o *AsSessionWithQoSSubscription) SetQosReference(v string)

SetQosReference gets a reference to the given string and assigns it to the QosReference field.

func (*AsSessionWithQoSSubscription) SetRequestTestNotification

func (o *AsSessionWithQoSSubscription) SetRequestTestNotification(v bool)

SetRequestTestNotification gets a reference to the given bool and assigns it to the RequestTestNotification field.

func (*AsSessionWithQoSSubscription) SetSelf

func (o *AsSessionWithQoSSubscription) SetSelf(v string)

SetSelf gets a reference to the given string and assigns it to the Self field.

func (*AsSessionWithQoSSubscription) SetSnssai

func (o *AsSessionWithQoSSubscription) SetSnssai(v Snssai)

SetSnssai gets a reference to the given Snssai and assigns it to the Snssai field.

func (*AsSessionWithQoSSubscription) SetSponsorInfo

func (o *AsSessionWithQoSSubscription) SetSponsorInfo(v SponsorInformation)

SetSponsorInfo gets a reference to the given SponsorInformation and assigns it to the SponsorInfo field.

func (*AsSessionWithQoSSubscription) SetSupportedFeatures

func (o *AsSessionWithQoSSubscription) SetSupportedFeatures(v string)

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

func (*AsSessionWithQoSSubscription) SetTscQosReq

SetTscQosReq gets a reference to the given TscQosRequirement and assigns it to the TscQosReq field.

func (*AsSessionWithQoSSubscription) SetUeIpv4Addr

func (o *AsSessionWithQoSSubscription) SetUeIpv4Addr(v string)

SetUeIpv4Addr gets a reference to the given string and assigns it to the UeIpv4Addr field.

func (*AsSessionWithQoSSubscription) SetUeIpv6Addr

func (o *AsSessionWithQoSSubscription) SetUeIpv6Addr(v string)

SetUeIpv6Addr gets a reference to the given string and assigns it to the UeIpv6Addr field.

func (*AsSessionWithQoSSubscription) SetUsageThreshold

func (o *AsSessionWithQoSSubscription) SetUsageThreshold(v UsageThreshold)

SetUsageThreshold gets a reference to the given UsageThreshold and assigns it to the UsageThreshold field.

func (*AsSessionWithQoSSubscription) SetWebsockNotifConfig

func (o *AsSessionWithQoSSubscription) SetWebsockNotifConfig(v WebsockNotifConfig)

SetWebsockNotifConfig gets a reference to the given WebsockNotifConfig and assigns it to the WebsockNotifConfig field.

func (AsSessionWithQoSSubscription) ToMap

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

func (*AsSessionWithQoSSubscription) UnmarshalJSON

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

type AsSessionWithQoSSubscriptionPatch

type AsSessionWithQoSSubscriptionPatch struct {
	// Identifies the external Application Identifier.
	ExterAppId *string `json:"exterAppId,omitempty"`
	// Describe the IP data flow which requires QoS.
	FlowInfo []FlowInfo `json:"flowInfo,omitempty"`
	// Identifies Ethernet packet flows.
	EthFlowInfo []EthFlowDescription `json:"ethFlowInfo,omitempty"`
	// Identifies the Ethernet flows which require QoS. Each Ethernet flow consists of a flow idenifer and the corresponding UL and/or DL flows.
	EnEthFlowInfo []EthFlowInfo `json:"enEthFlowInfo,omitempty"`
	// Pre-defined QoS reference
	QosReference *string `json:"qosReference,omitempty"`
	// Identifies an ordered list of pre-defined QoS information. The lower the index of the array for a given entry, the higher the priority.
	AltQoSReferences []string `json:"altQoSReferences,omitempty"`
	// Identifies an ordered list of alternative service requirements that include individual QoS parameter sets. The lower the index of the array for a given entry, the higher the priority.
	AltQosReqs []AlternativeServiceRequirementsData `json:"altQosReqs,omitempty"`
	// Indicates whether the QoS flow parameters signalling to the UE when the SMF is notified by the NG-RAN of changes in the fulfilled QoS situation is disabled (true) or not (false). The fulfilled situation is either the QoS profile or an Alternative QoS Profile.
	DisUeNotif     *bool                       `json:"disUeNotif,omitempty"`
	UsageThreshold NullableUsageThresholdRm    `json:"usageThreshold,omitempty"`
	QosMonInfo     *QosMonitoringInformationRm `json:"qosMonInfo,omitempty"`
	// Indicates whether the direct event notification is requested (true) or not (false).
	DirectNotifInd *bool `json:"directNotifInd,omitempty"`
	// string formatted according to IETF RFC 3986 identifying a referenced resource.
	NotificationDestination *string              `json:"notificationDestination,omitempty"`
	TscQosReq               *TscQosRequirementRm `json:"tscQosReq,omitempty"`
	// Represents the updated list of user plane event(s) to which the SCS/AS requests to subscribe to.
	Events []UserPlaneEvent `json:"events,omitempty"`
}

AsSessionWithQoSSubscriptionPatch Represents parameters to modify an AS session with specific QoS subscription.

func NewAsSessionWithQoSSubscriptionPatch

func NewAsSessionWithQoSSubscriptionPatch() *AsSessionWithQoSSubscriptionPatch

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

func NewAsSessionWithQoSSubscriptionPatchWithDefaults

func NewAsSessionWithQoSSubscriptionPatchWithDefaults() *AsSessionWithQoSSubscriptionPatch

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

func (*AsSessionWithQoSSubscriptionPatch) GetAltQoSReferences

func (o *AsSessionWithQoSSubscriptionPatch) GetAltQoSReferences() []string

GetAltQoSReferences returns the AltQoSReferences field value if set, zero value otherwise.

func (*AsSessionWithQoSSubscriptionPatch) GetAltQoSReferencesOk

func (o *AsSessionWithQoSSubscriptionPatch) GetAltQoSReferencesOk() ([]string, bool)

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

func (*AsSessionWithQoSSubscriptionPatch) GetAltQosReqs

GetAltQosReqs returns the AltQosReqs field value if set, zero value otherwise.

func (*AsSessionWithQoSSubscriptionPatch) GetAltQosReqsOk

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

func (*AsSessionWithQoSSubscriptionPatch) GetDirectNotifInd

func (o *AsSessionWithQoSSubscriptionPatch) GetDirectNotifInd() bool

GetDirectNotifInd returns the DirectNotifInd field value if set, zero value otherwise.

func (*AsSessionWithQoSSubscriptionPatch) GetDirectNotifIndOk

func (o *AsSessionWithQoSSubscriptionPatch) GetDirectNotifIndOk() (*bool, bool)

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

func (*AsSessionWithQoSSubscriptionPatch) GetDisUeNotif

func (o *AsSessionWithQoSSubscriptionPatch) GetDisUeNotif() bool

GetDisUeNotif returns the DisUeNotif field value if set, zero value otherwise.

func (*AsSessionWithQoSSubscriptionPatch) GetDisUeNotifOk

func (o *AsSessionWithQoSSubscriptionPatch) GetDisUeNotifOk() (*bool, bool)

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

func (*AsSessionWithQoSSubscriptionPatch) GetEnEthFlowInfo

func (o *AsSessionWithQoSSubscriptionPatch) GetEnEthFlowInfo() []EthFlowInfo

GetEnEthFlowInfo returns the EnEthFlowInfo field value if set, zero value otherwise.

func (*AsSessionWithQoSSubscriptionPatch) GetEnEthFlowInfoOk

func (o *AsSessionWithQoSSubscriptionPatch) GetEnEthFlowInfoOk() ([]EthFlowInfo, bool)

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

func (*AsSessionWithQoSSubscriptionPatch) GetEthFlowInfo

GetEthFlowInfo returns the EthFlowInfo field value if set, zero value otherwise.

func (*AsSessionWithQoSSubscriptionPatch) GetEthFlowInfoOk

func (o *AsSessionWithQoSSubscriptionPatch) GetEthFlowInfoOk() ([]EthFlowDescription, bool)

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

func (*AsSessionWithQoSSubscriptionPatch) GetEvents

GetEvents returns the Events field value if set, zero value otherwise.

func (*AsSessionWithQoSSubscriptionPatch) GetEventsOk

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

func (*AsSessionWithQoSSubscriptionPatch) GetExterAppId

func (o *AsSessionWithQoSSubscriptionPatch) GetExterAppId() string

GetExterAppId returns the ExterAppId field value if set, zero value otherwise.

func (*AsSessionWithQoSSubscriptionPatch) GetExterAppIdOk

func (o *AsSessionWithQoSSubscriptionPatch) GetExterAppIdOk() (*string, bool)

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

func (*AsSessionWithQoSSubscriptionPatch) GetFlowInfo

func (o *AsSessionWithQoSSubscriptionPatch) GetFlowInfo() []FlowInfo

GetFlowInfo returns the FlowInfo field value if set, zero value otherwise.

func (*AsSessionWithQoSSubscriptionPatch) GetFlowInfoOk

func (o *AsSessionWithQoSSubscriptionPatch) GetFlowInfoOk() ([]FlowInfo, bool)

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

func (*AsSessionWithQoSSubscriptionPatch) GetNotificationDestination

func (o *AsSessionWithQoSSubscriptionPatch) GetNotificationDestination() string

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

func (*AsSessionWithQoSSubscriptionPatch) GetNotificationDestinationOk

func (o *AsSessionWithQoSSubscriptionPatch) GetNotificationDestinationOk() (*string, bool)

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

func (*AsSessionWithQoSSubscriptionPatch) GetQosMonInfo

GetQosMonInfo returns the QosMonInfo field value if set, zero value otherwise.

func (*AsSessionWithQoSSubscriptionPatch) GetQosMonInfoOk

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

func (*AsSessionWithQoSSubscriptionPatch) GetQosReference

func (o *AsSessionWithQoSSubscriptionPatch) GetQosReference() string

GetQosReference returns the QosReference field value if set, zero value otherwise.

func (*AsSessionWithQoSSubscriptionPatch) GetQosReferenceOk

func (o *AsSessionWithQoSSubscriptionPatch) GetQosReferenceOk() (*string, bool)

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

func (*AsSessionWithQoSSubscriptionPatch) GetTscQosReq

GetTscQosReq returns the TscQosReq field value if set, zero value otherwise.

func (*AsSessionWithQoSSubscriptionPatch) GetTscQosReqOk

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

func (*AsSessionWithQoSSubscriptionPatch) GetUsageThreshold

func (o *AsSessionWithQoSSubscriptionPatch) GetUsageThreshold() UsageThresholdRm

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

func (*AsSessionWithQoSSubscriptionPatch) GetUsageThresholdOk

func (o *AsSessionWithQoSSubscriptionPatch) GetUsageThresholdOk() (*UsageThresholdRm, bool)

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

func (*AsSessionWithQoSSubscriptionPatch) HasAltQoSReferences

func (o *AsSessionWithQoSSubscriptionPatch) HasAltQoSReferences() bool

HasAltQoSReferences returns a boolean if a field has been set.

func (*AsSessionWithQoSSubscriptionPatch) HasAltQosReqs

func (o *AsSessionWithQoSSubscriptionPatch) HasAltQosReqs() bool

HasAltQosReqs returns a boolean if a field has been set.

func (*AsSessionWithQoSSubscriptionPatch) HasDirectNotifInd

func (o *AsSessionWithQoSSubscriptionPatch) HasDirectNotifInd() bool

HasDirectNotifInd returns a boolean if a field has been set.

func (*AsSessionWithQoSSubscriptionPatch) HasDisUeNotif

func (o *AsSessionWithQoSSubscriptionPatch) HasDisUeNotif() bool

HasDisUeNotif returns a boolean if a field has been set.

func (*AsSessionWithQoSSubscriptionPatch) HasEnEthFlowInfo

func (o *AsSessionWithQoSSubscriptionPatch) HasEnEthFlowInfo() bool

HasEnEthFlowInfo returns a boolean if a field has been set.

func (*AsSessionWithQoSSubscriptionPatch) HasEthFlowInfo

func (o *AsSessionWithQoSSubscriptionPatch) HasEthFlowInfo() bool

HasEthFlowInfo returns a boolean if a field has been set.

func (*AsSessionWithQoSSubscriptionPatch) HasEvents

func (o *AsSessionWithQoSSubscriptionPatch) HasEvents() bool

HasEvents returns a boolean if a field has been set.

func (*AsSessionWithQoSSubscriptionPatch) HasExterAppId

func (o *AsSessionWithQoSSubscriptionPatch) HasExterAppId() bool

HasExterAppId returns a boolean if a field has been set.

func (*AsSessionWithQoSSubscriptionPatch) HasFlowInfo

func (o *AsSessionWithQoSSubscriptionPatch) HasFlowInfo() bool

HasFlowInfo returns a boolean if a field has been set.

func (*AsSessionWithQoSSubscriptionPatch) HasNotificationDestination

func (o *AsSessionWithQoSSubscriptionPatch) HasNotificationDestination() bool

HasNotificationDestination returns a boolean if a field has been set.

func (*AsSessionWithQoSSubscriptionPatch) HasQosMonInfo

func (o *AsSessionWithQoSSubscriptionPatch) HasQosMonInfo() bool

HasQosMonInfo returns a boolean if a field has been set.

func (*AsSessionWithQoSSubscriptionPatch) HasQosReference

func (o *AsSessionWithQoSSubscriptionPatch) HasQosReference() bool

HasQosReference returns a boolean if a field has been set.

func (*AsSessionWithQoSSubscriptionPatch) HasTscQosReq

func (o *AsSessionWithQoSSubscriptionPatch) HasTscQosReq() bool

HasTscQosReq returns a boolean if a field has been set.

func (*AsSessionWithQoSSubscriptionPatch) HasUsageThreshold

func (o *AsSessionWithQoSSubscriptionPatch) HasUsageThreshold() bool

HasUsageThreshold returns a boolean if a field has been set.

func (AsSessionWithQoSSubscriptionPatch) MarshalJSON

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

func (*AsSessionWithQoSSubscriptionPatch) SetAltQoSReferences

func (o *AsSessionWithQoSSubscriptionPatch) SetAltQoSReferences(v []string)

SetAltQoSReferences gets a reference to the given []string and assigns it to the AltQoSReferences field.

func (*AsSessionWithQoSSubscriptionPatch) SetAltQosReqs

SetAltQosReqs gets a reference to the given []AlternativeServiceRequirementsData and assigns it to the AltQosReqs field.

func (*AsSessionWithQoSSubscriptionPatch) SetDirectNotifInd

func (o *AsSessionWithQoSSubscriptionPatch) SetDirectNotifInd(v bool)

SetDirectNotifInd gets a reference to the given bool and assigns it to the DirectNotifInd field.

func (*AsSessionWithQoSSubscriptionPatch) SetDisUeNotif

func (o *AsSessionWithQoSSubscriptionPatch) SetDisUeNotif(v bool)

SetDisUeNotif gets a reference to the given bool and assigns it to the DisUeNotif field.

func (*AsSessionWithQoSSubscriptionPatch) SetEnEthFlowInfo

func (o *AsSessionWithQoSSubscriptionPatch) SetEnEthFlowInfo(v []EthFlowInfo)

SetEnEthFlowInfo gets a reference to the given []EthFlowInfo and assigns it to the EnEthFlowInfo field.

func (*AsSessionWithQoSSubscriptionPatch) SetEthFlowInfo

SetEthFlowInfo gets a reference to the given []EthFlowDescription and assigns it to the EthFlowInfo field.

func (*AsSessionWithQoSSubscriptionPatch) SetEvents

SetEvents gets a reference to the given []UserPlaneEvent and assigns it to the Events field.

func (*AsSessionWithQoSSubscriptionPatch) SetExterAppId

func (o *AsSessionWithQoSSubscriptionPatch) SetExterAppId(v string)

SetExterAppId gets a reference to the given string and assigns it to the ExterAppId field.

func (*AsSessionWithQoSSubscriptionPatch) SetFlowInfo

func (o *AsSessionWithQoSSubscriptionPatch) SetFlowInfo(v []FlowInfo)

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

func (*AsSessionWithQoSSubscriptionPatch) SetNotificationDestination

func (o *AsSessionWithQoSSubscriptionPatch) SetNotificationDestination(v string)

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

func (*AsSessionWithQoSSubscriptionPatch) SetQosMonInfo

SetQosMonInfo gets a reference to the given QosMonitoringInformationRm and assigns it to the QosMonInfo field.

func (*AsSessionWithQoSSubscriptionPatch) SetQosReference

func (o *AsSessionWithQoSSubscriptionPatch) SetQosReference(v string)

SetQosReference gets a reference to the given string and assigns it to the QosReference field.

func (*AsSessionWithQoSSubscriptionPatch) SetTscQosReq

SetTscQosReq gets a reference to the given TscQosRequirementRm and assigns it to the TscQosReq field.

func (*AsSessionWithQoSSubscriptionPatch) SetUsageThreshold

func (o *AsSessionWithQoSSubscriptionPatch) SetUsageThreshold(v UsageThresholdRm)

SetUsageThreshold gets a reference to the given NullableUsageThresholdRm and assigns it to the UsageThreshold field.

func (*AsSessionWithQoSSubscriptionPatch) SetUsageThresholdNil

func (o *AsSessionWithQoSSubscriptionPatch) SetUsageThresholdNil()

SetUsageThresholdNil sets the value for UsageThreshold to be an explicit nil

func (AsSessionWithQoSSubscriptionPatch) ToMap

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

func (*AsSessionWithQoSSubscriptionPatch) UnsetUsageThreshold

func (o *AsSessionWithQoSSubscriptionPatch) UnsetUsageThreshold()

UnsetUsageThreshold ensures that no value is present for UsageThreshold, not even an explicit nil

type BasicAuth

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

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

type Configuration

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

Configuration stores the configuration of the API client

func NewConfiguration

func NewConfiguration() *Configuration

NewConfiguration returns a new Configuration object

func (*Configuration) AddDefaultHeader

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

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

func (*Configuration) ServerURL

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

ServerURL returns URL based on server settings

func (*Configuration) ServerURLWithContext

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

ServerURLWithContext returns a new server URL given an endpoint

type EthFlowDescription

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

EthFlowDescription Identifies an Ethernet flow.

func NewEthFlowDescription

func NewEthFlowDescription(ethType string) *EthFlowDescription

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

func NewEthFlowDescriptionWithDefaults

func NewEthFlowDescriptionWithDefaults() *EthFlowDescription

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

func (*EthFlowDescription) GetDestMacAddr

func (o *EthFlowDescription) GetDestMacAddr() string

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

func (*EthFlowDescription) GetDestMacAddrEnd

func (o *EthFlowDescription) GetDestMacAddrEnd() string

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

func (*EthFlowDescription) GetDestMacAddrEndOk

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

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

func (*EthFlowDescription) GetDestMacAddrOk

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

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

func (*EthFlowDescription) GetEthType

func (o *EthFlowDescription) GetEthType() string

GetEthType returns the EthType field value

func (*EthFlowDescription) GetEthTypeOk

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

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

func (*EthFlowDescription) GetFDesc

func (o *EthFlowDescription) GetFDesc() string

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

func (*EthFlowDescription) GetFDescOk

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

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

func (*EthFlowDescription) GetFDir

func (o *EthFlowDescription) GetFDir() FlowDirection

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

func (*EthFlowDescription) GetFDirOk

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

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

func (*EthFlowDescription) GetSourceMacAddr

func (o *EthFlowDescription) GetSourceMacAddr() string

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

func (*EthFlowDescription) GetSourceMacAddrOk

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

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

func (*EthFlowDescription) GetSrcMacAddrEnd

func (o *EthFlowDescription) GetSrcMacAddrEnd() string

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

func (*EthFlowDescription) GetSrcMacAddrEndOk

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

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

func (*EthFlowDescription) GetVlanTags

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

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

func (*EthFlowDescription) GetVlanTagsOk

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

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

func (*EthFlowDescription) HasDestMacAddr

func (o *EthFlowDescription) HasDestMacAddr() bool

HasDestMacAddr returns a boolean if a field has been set.

func (*EthFlowDescription) HasDestMacAddrEnd

func (o *EthFlowDescription) HasDestMacAddrEnd() bool

HasDestMacAddrEnd returns a boolean if a field has been set.

func (*EthFlowDescription) HasFDesc

func (o *EthFlowDescription) HasFDesc() bool

HasFDesc returns a boolean if a field has been set.

func (*EthFlowDescription) HasFDir

func (o *EthFlowDescription) HasFDir() bool

HasFDir returns a boolean if a field has been set.

func (*EthFlowDescription) HasSourceMacAddr

func (o *EthFlowDescription) HasSourceMacAddr() bool

HasSourceMacAddr returns a boolean if a field has been set.

func (*EthFlowDescription) HasSrcMacAddrEnd

func (o *EthFlowDescription) HasSrcMacAddrEnd() bool

HasSrcMacAddrEnd returns a boolean if a field has been set.

func (*EthFlowDescription) HasVlanTags

func (o *EthFlowDescription) HasVlanTags() bool

HasVlanTags returns a boolean if a field has been set.

func (EthFlowDescription) MarshalJSON

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

func (*EthFlowDescription) SetDestMacAddr

func (o *EthFlowDescription) SetDestMacAddr(v string)

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

func (*EthFlowDescription) SetDestMacAddrEnd

func (o *EthFlowDescription) SetDestMacAddrEnd(v string)

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

func (*EthFlowDescription) SetEthType

func (o *EthFlowDescription) SetEthType(v string)

SetEthType sets field value

func (*EthFlowDescription) SetFDesc

func (o *EthFlowDescription) SetFDesc(v string)

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

func (*EthFlowDescription) SetFDir

func (o *EthFlowDescription) SetFDir(v FlowDirection)

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

func (*EthFlowDescription) SetSourceMacAddr

func (o *EthFlowDescription) SetSourceMacAddr(v string)

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

func (*EthFlowDescription) SetSrcMacAddrEnd

func (o *EthFlowDescription) SetSrcMacAddrEnd(v string)

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

func (*EthFlowDescription) SetVlanTags

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

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

func (EthFlowDescription) ToMap

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

func (*EthFlowDescription) UnmarshalJSON

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

type EthFlowInfo

type EthFlowInfo struct {
	// Indicates the Ethernet flow identifier.
	FlowId int32 `json:"flowId"`
	// Indicates the packet filters of the Ethernet flow. It shall contain UL and/or DL Ethernet flow description.
	EthFlowDescriptions []EthFlowDescription `json:"ethFlowDescriptions,omitempty"`
}

EthFlowInfo Represents Ethernet flow information.

func NewEthFlowInfo

func NewEthFlowInfo(flowId int32) *EthFlowInfo

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

func NewEthFlowInfoWithDefaults

func NewEthFlowInfoWithDefaults() *EthFlowInfo

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

func (*EthFlowInfo) GetEthFlowDescriptions

func (o *EthFlowInfo) GetEthFlowDescriptions() []EthFlowDescription

GetEthFlowDescriptions returns the EthFlowDescriptions field value if set, zero value otherwise.

func (*EthFlowInfo) GetEthFlowDescriptionsOk

func (o *EthFlowInfo) GetEthFlowDescriptionsOk() ([]EthFlowDescription, bool)

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

func (*EthFlowInfo) GetFlowId

func (o *EthFlowInfo) GetFlowId() int32

GetFlowId returns the FlowId field value

func (*EthFlowInfo) GetFlowIdOk

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

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

func (*EthFlowInfo) HasEthFlowDescriptions

func (o *EthFlowInfo) HasEthFlowDescriptions() bool

HasEthFlowDescriptions returns a boolean if a field has been set.

func (EthFlowInfo) MarshalJSON

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

func (*EthFlowInfo) SetEthFlowDescriptions

func (o *EthFlowInfo) SetEthFlowDescriptions(v []EthFlowDescription)

SetEthFlowDescriptions gets a reference to the given []EthFlowDescription and assigns it to the EthFlowDescriptions field.

func (*EthFlowInfo) SetFlowId

func (o *EthFlowInfo) SetFlowId(v int32)

SetFlowId sets field value

func (EthFlowInfo) ToMap

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

func (*EthFlowInfo) UnmarshalJSON

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

type FlowDirection

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

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

func (*FlowDirection) MarshalJSON

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

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

func (*FlowDirection) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type FlowInfo

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

FlowInfo Represents IP flow information.

func NewFlowInfo

func NewFlowInfo(flowId int32) *FlowInfo

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

func NewFlowInfoWithDefaults

func NewFlowInfoWithDefaults() *FlowInfo

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

func (*FlowInfo) GetFlowDescriptions

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

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

func (*FlowInfo) GetFlowDescriptionsOk

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

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

func (*FlowInfo) GetFlowId

func (o *FlowInfo) GetFlowId() int32

GetFlowId returns the FlowId field value

func (*FlowInfo) GetFlowIdOk

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

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

func (*FlowInfo) HasFlowDescriptions

func (o *FlowInfo) HasFlowDescriptions() bool

HasFlowDescriptions returns a boolean if a field has been set.

func (FlowInfo) MarshalJSON

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

func (*FlowInfo) SetFlowDescriptions

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

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

func (*FlowInfo) SetFlowId

func (o *FlowInfo) SetFlowId(v int32)

SetFlowId sets field value

func (FlowInfo) ToMap

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

func (*FlowInfo) UnmarshalJSON

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

type GenericOpenAPIError

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

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

func (GenericOpenAPIError) Body

func (e GenericOpenAPIError) Body() []byte

Body returns the raw bytes of the response

func (GenericOpenAPIError) Error

func (e GenericOpenAPIError) Error() string

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

func (GenericOpenAPIError) Model

func (e GenericOpenAPIError) Model() interface{}

Model returns the unpacked model of the error

type IndividualASSessionWithRequiredQoSSubscriptionAPIService

type IndividualASSessionWithRequiredQoSSubscriptionAPIService service

IndividualASSessionWithRequiredQoSSubscriptionAPIService IndividualASSessionWithRequiredQoSSubscriptionAPI service

func (*IndividualASSessionWithRequiredQoSSubscriptionAPIService) DeleteIndASSessionWithQoSSubscription

DeleteIndASSessionWithQoSSubscription Deletes an already existing subscription.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param scsAsId Identifier of the SCS/AS
@param subscriptionId Identifier of the subscription resource
@return ApiDeleteIndASSessionWithQoSSubscriptionRequest

func (*IndividualASSessionWithRequiredQoSSubscriptionAPIService) DeleteIndASSessionWithQoSSubscriptionExecute

Execute executes the request

@return UserPlaneNotificationData

func (*IndividualASSessionWithRequiredQoSSubscriptionAPIService) FetchIndASSessionWithQoSSubscription

FetchIndASSessionWithQoSSubscription Read an active subscriptions for the SCS/AS and the subscription Id.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param scsAsId Identifier of the SCS/AS
@param subscriptionId Identifier of the subscription resource
@return ApiFetchIndASSessionWithQoSSubscriptionRequest

func (*IndividualASSessionWithRequiredQoSSubscriptionAPIService) FetchIndASSessionWithQoSSubscriptionExecute

Execute executes the request

@return AsSessionWithQoSSubscription

func (*IndividualASSessionWithRequiredQoSSubscriptionAPIService) ModifyIndASSessionWithQoSSubscription

ModifyIndASSessionWithQoSSubscription Updates/replaces an existing subscription resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param scsAsId Identifier of the SCS/AS
@param subscriptionId Identifier of the subscription resource
@return ApiModifyIndASSessionWithQoSSubscriptionRequest

func (*IndividualASSessionWithRequiredQoSSubscriptionAPIService) ModifyIndASSessionWithQoSSubscriptionExecute

Execute executes the request

@return AsSessionWithQoSSubscription

func (*IndividualASSessionWithRequiredQoSSubscriptionAPIService) UpdateIndASSessionWithQoSSubscription

UpdateIndASSessionWithQoSSubscription Updates/replaces an existing subscription resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param scsAsId Identifier of the SCS/AS
@param subscriptionId Identifier of the subscription resource
@return ApiUpdateIndASSessionWithQoSSubscriptionRequest

func (*IndividualASSessionWithRequiredQoSSubscriptionAPIService) UpdateIndASSessionWithQoSSubscriptionExecute

Execute executes the request

@return AsSessionWithQoSSubscription

type InvalidParam

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

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

func NewInvalidParam

func NewInvalidParam(param string) *InvalidParam

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

func NewInvalidParamWithDefaults

func NewInvalidParamWithDefaults() *InvalidParam

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

func (*InvalidParam) GetParam

func (o *InvalidParam) GetParam() string

GetParam returns the Param field value

func (*InvalidParam) GetParamOk

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

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

func (*InvalidParam) GetReason

func (o *InvalidParam) GetReason() string

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

func (*InvalidParam) GetReasonOk

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

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

func (*InvalidParam) HasReason

func (o *InvalidParam) HasReason() bool

HasReason returns a boolean if a field has been set.

func (InvalidParam) MarshalJSON

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

func (*InvalidParam) SetParam

func (o *InvalidParam) SetParam(v string)

SetParam sets field value

func (*InvalidParam) SetReason

func (o *InvalidParam) SetReason(v string)

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

func (InvalidParam) ToMap

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

func (*InvalidParam) UnmarshalJSON

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

type IpAddr

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

IpAddr Contains an IP adresse.

func NewIpAddr

func NewIpAddr() *IpAddr

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

func NewIpAddrWithDefaults

func NewIpAddrWithDefaults() *IpAddr

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

func (*IpAddr) GetIpv4Addr

func (o *IpAddr) GetIpv4Addr() string

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

func (*IpAddr) GetIpv4AddrOk

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

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

func (*IpAddr) GetIpv6Addr

func (o *IpAddr) GetIpv6Addr() Ipv6Addr

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

func (*IpAddr) GetIpv6AddrOk

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

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

func (*IpAddr) GetIpv6Prefix

func (o *IpAddr) GetIpv6Prefix() Ipv6Prefix

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

func (*IpAddr) GetIpv6PrefixOk

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

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

func (*IpAddr) HasIpv4Addr

func (o *IpAddr) HasIpv4Addr() bool

HasIpv4Addr returns a boolean if a field has been set.

func (*IpAddr) HasIpv6Addr

func (o *IpAddr) HasIpv6Addr() bool

HasIpv6Addr returns a boolean if a field has been set.

func (*IpAddr) HasIpv6Prefix

func (o *IpAddr) HasIpv6Prefix() bool

HasIpv6Prefix returns a boolean if a field has been set.

func (IpAddr) MarshalJSON

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

func (*IpAddr) SetIpv4Addr

func (o *IpAddr) SetIpv4Addr(v string)

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

func (*IpAddr) SetIpv6Addr

func (o *IpAddr) SetIpv6Addr(v Ipv6Addr)

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

func (*IpAddr) SetIpv6Prefix

func (o *IpAddr) SetIpv6Prefix(v Ipv6Prefix)

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

func (IpAddr) ToMap

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

type Ipv6Addr

type Ipv6Addr struct {
}

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

func NewIpv6Addr

func NewIpv6Addr() *Ipv6Addr

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

func NewIpv6AddrWithDefaults

func NewIpv6AddrWithDefaults() *Ipv6Addr

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

func (Ipv6Addr) MarshalJSON

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

func (Ipv6Addr) ToMap

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

type Ipv6Prefix

type Ipv6Prefix struct {
}

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

func NewIpv6Prefix

func NewIpv6Prefix() *Ipv6Prefix

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

func NewIpv6PrefixWithDefaults

func NewIpv6PrefixWithDefaults() *Ipv6Prefix

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

func (Ipv6Prefix) MarshalJSON

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

func (Ipv6Prefix) ToMap

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

type MappedNullable

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

type NullableAccumulatedUsage

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

func NewNullableAccumulatedUsage

func NewNullableAccumulatedUsage(val *AccumulatedUsage) *NullableAccumulatedUsage

func (NullableAccumulatedUsage) Get

func (NullableAccumulatedUsage) IsSet

func (v NullableAccumulatedUsage) IsSet() bool

func (NullableAccumulatedUsage) MarshalJSON

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

func (*NullableAccumulatedUsage) Set

func (*NullableAccumulatedUsage) UnmarshalJSON

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

func (*NullableAccumulatedUsage) Unset

func (v *NullableAccumulatedUsage) Unset()

type NullableAlternativeServiceRequirementsData

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

func (NullableAlternativeServiceRequirementsData) Get

func (NullableAlternativeServiceRequirementsData) IsSet

func (NullableAlternativeServiceRequirementsData) MarshalJSON

func (*NullableAlternativeServiceRequirementsData) Set

func (*NullableAlternativeServiceRequirementsData) UnmarshalJSON

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

func (*NullableAlternativeServiceRequirementsData) Unset

type NullableAsSessionWithQoSSubscription

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

func (NullableAsSessionWithQoSSubscription) Get

func (NullableAsSessionWithQoSSubscription) IsSet

func (NullableAsSessionWithQoSSubscription) MarshalJSON

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

func (*NullableAsSessionWithQoSSubscription) Set

func (*NullableAsSessionWithQoSSubscription) UnmarshalJSON

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

func (*NullableAsSessionWithQoSSubscription) Unset

type NullableAsSessionWithQoSSubscriptionPatch

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

func (NullableAsSessionWithQoSSubscriptionPatch) Get

func (NullableAsSessionWithQoSSubscriptionPatch) IsSet

func (NullableAsSessionWithQoSSubscriptionPatch) MarshalJSON

func (*NullableAsSessionWithQoSSubscriptionPatch) Set

func (*NullableAsSessionWithQoSSubscriptionPatch) UnmarshalJSON

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

func (*NullableAsSessionWithQoSSubscriptionPatch) Unset

type NullableBool

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

func NewNullableBool

func NewNullableBool(val *bool) *NullableBool

func (NullableBool) Get

func (v NullableBool) Get() *bool

func (NullableBool) IsSet

func (v NullableBool) IsSet() bool

func (NullableBool) MarshalJSON

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

func (*NullableBool) Set

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

func (*NullableBool) UnmarshalJSON

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

func (*NullableBool) Unset

func (v *NullableBool) Unset()

type NullableEthFlowDescription

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

func NewNullableEthFlowDescription

func NewNullableEthFlowDescription(val *EthFlowDescription) *NullableEthFlowDescription

func (NullableEthFlowDescription) Get

func (NullableEthFlowDescription) IsSet

func (v NullableEthFlowDescription) IsSet() bool

func (NullableEthFlowDescription) MarshalJSON

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

func (*NullableEthFlowDescription) Set

func (*NullableEthFlowDescription) UnmarshalJSON

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

func (*NullableEthFlowDescription) Unset

func (v *NullableEthFlowDescription) Unset()

type NullableEthFlowInfo

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

func NewNullableEthFlowInfo

func NewNullableEthFlowInfo(val *EthFlowInfo) *NullableEthFlowInfo

func (NullableEthFlowInfo) Get

func (NullableEthFlowInfo) IsSet

func (v NullableEthFlowInfo) IsSet() bool

func (NullableEthFlowInfo) MarshalJSON

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

func (*NullableEthFlowInfo) Set

func (v *NullableEthFlowInfo) Set(val *EthFlowInfo)

func (*NullableEthFlowInfo) UnmarshalJSON

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

func (*NullableEthFlowInfo) Unset

func (v *NullableEthFlowInfo) Unset()

type NullableFloat32

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

func NewNullableFloat32

func NewNullableFloat32(val *float32) *NullableFloat32

func (NullableFloat32) Get

func (v NullableFloat32) Get() *float32

func (NullableFloat32) IsSet

func (v NullableFloat32) IsSet() bool

func (NullableFloat32) MarshalJSON

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

func (*NullableFloat32) Set

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

func (*NullableFloat32) UnmarshalJSON

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

func (*NullableFloat32) Unset

func (v *NullableFloat32) Unset()

type NullableFloat64

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

func NewNullableFloat64

func NewNullableFloat64(val *float64) *NullableFloat64

func (NullableFloat64) Get

func (v NullableFloat64) Get() *float64

func (NullableFloat64) IsSet

func (v NullableFloat64) IsSet() bool

func (NullableFloat64) MarshalJSON

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

func (*NullableFloat64) Set

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

func (*NullableFloat64) UnmarshalJSON

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

func (*NullableFloat64) Unset

func (v *NullableFloat64) Unset()

type NullableFlowDirection

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

func NewNullableFlowDirection

func NewNullableFlowDirection(val *FlowDirection) *NullableFlowDirection

func (NullableFlowDirection) Get

func (NullableFlowDirection) IsSet

func (v NullableFlowDirection) IsSet() bool

func (NullableFlowDirection) MarshalJSON

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

func (*NullableFlowDirection) Set

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

func (*NullableFlowDirection) UnmarshalJSON

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

func (*NullableFlowDirection) Unset

func (v *NullableFlowDirection) Unset()

type NullableFlowInfo

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

func NewNullableFlowInfo

func NewNullableFlowInfo(val *FlowInfo) *NullableFlowInfo

func (NullableFlowInfo) Get

func (v NullableFlowInfo) Get() *FlowInfo

func (NullableFlowInfo) IsSet

func (v NullableFlowInfo) IsSet() bool

func (NullableFlowInfo) MarshalJSON

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

func (*NullableFlowInfo) Set

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

func (*NullableFlowInfo) UnmarshalJSON

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

func (*NullableFlowInfo) Unset

func (v *NullableFlowInfo) Unset()

type NullableInt

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

func NewNullableInt

func NewNullableInt(val *int) *NullableInt

func (NullableInt) Get

func (v NullableInt) Get() *int

func (NullableInt) IsSet

func (v NullableInt) IsSet() bool

func (NullableInt) MarshalJSON

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

func (*NullableInt) Set

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

func (*NullableInt) UnmarshalJSON

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

func (*NullableInt) Unset

func (v *NullableInt) Unset()

type NullableInt32

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

func NewNullableInt32

func NewNullableInt32(val *int32) *NullableInt32

func (NullableInt32) Get

func (v NullableInt32) Get() *int32

func (NullableInt32) IsSet

func (v NullableInt32) IsSet() bool

func (NullableInt32) MarshalJSON

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

func (*NullableInt32) Set

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

func (*NullableInt32) UnmarshalJSON

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

func (*NullableInt32) Unset

func (v *NullableInt32) Unset()

type NullableInt64

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

func NewNullableInt64

func NewNullableInt64(val *int64) *NullableInt64

func (NullableInt64) Get

func (v NullableInt64) Get() *int64

func (NullableInt64) IsSet

func (v NullableInt64) IsSet() bool

func (NullableInt64) MarshalJSON

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

func (*NullableInt64) Set

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

func (*NullableInt64) UnmarshalJSON

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

func (*NullableInt64) Unset

func (v *NullableInt64) Unset()

type NullableInvalidParam

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

func NewNullableInvalidParam

func NewNullableInvalidParam(val *InvalidParam) *NullableInvalidParam

func (NullableInvalidParam) Get

func (NullableInvalidParam) IsSet

func (v NullableInvalidParam) IsSet() bool

func (NullableInvalidParam) MarshalJSON

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

func (*NullableInvalidParam) Set

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

func (*NullableInvalidParam) UnmarshalJSON

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

func (*NullableInvalidParam) Unset

func (v *NullableInvalidParam) Unset()

type NullableIpAddr

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

func NewNullableIpAddr

func NewNullableIpAddr(val *IpAddr) *NullableIpAddr

func (NullableIpAddr) Get

func (v NullableIpAddr) Get() *IpAddr

func (NullableIpAddr) IsSet

func (v NullableIpAddr) IsSet() bool

func (NullableIpAddr) MarshalJSON

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

func (*NullableIpAddr) Set

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

func (*NullableIpAddr) UnmarshalJSON

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

func (*NullableIpAddr) Unset

func (v *NullableIpAddr) Unset()

type NullableIpv6Addr

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

func NewNullableIpv6Addr

func NewNullableIpv6Addr(val *Ipv6Addr) *NullableIpv6Addr

func (NullableIpv6Addr) Get

func (v NullableIpv6Addr) Get() *Ipv6Addr

func (NullableIpv6Addr) IsSet

func (v NullableIpv6Addr) IsSet() bool

func (NullableIpv6Addr) MarshalJSON

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

func (*NullableIpv6Addr) Set

func (v *NullableIpv6Addr) Set(val *Ipv6Addr)

func (*NullableIpv6Addr) UnmarshalJSON

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

func (*NullableIpv6Addr) Unset

func (v *NullableIpv6Addr) Unset()

type NullableIpv6Prefix

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

func NewNullableIpv6Prefix

func NewNullableIpv6Prefix(val *Ipv6Prefix) *NullableIpv6Prefix

func (NullableIpv6Prefix) Get

func (v NullableIpv6Prefix) Get() *Ipv6Prefix

func (NullableIpv6Prefix) IsSet

func (v NullableIpv6Prefix) IsSet() bool

func (NullableIpv6Prefix) MarshalJSON

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

func (*NullableIpv6Prefix) Set

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

func (*NullableIpv6Prefix) UnmarshalJSON

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

func (*NullableIpv6Prefix) Unset

func (v *NullableIpv6Prefix) Unset()

type NullablePlmnIdNid

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

func NewNullablePlmnIdNid

func NewNullablePlmnIdNid(val *PlmnIdNid) *NullablePlmnIdNid

func (NullablePlmnIdNid) Get

func (v NullablePlmnIdNid) Get() *PlmnIdNid

func (NullablePlmnIdNid) IsSet

func (v NullablePlmnIdNid) IsSet() bool

func (NullablePlmnIdNid) MarshalJSON

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

func (*NullablePlmnIdNid) Set

func (v *NullablePlmnIdNid) Set(val *PlmnIdNid)

func (*NullablePlmnIdNid) UnmarshalJSON

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

func (*NullablePlmnIdNid) Unset

func (v *NullablePlmnIdNid) Unset()

type NullableProblemDetails

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

func NewNullableProblemDetails

func NewNullableProblemDetails(val *ProblemDetails) *NullableProblemDetails

func (NullableProblemDetails) Get

func (NullableProblemDetails) IsSet

func (v NullableProblemDetails) IsSet() bool

func (NullableProblemDetails) MarshalJSON

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

func (*NullableProblemDetails) Set

func (*NullableProblemDetails) UnmarshalJSON

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

func (*NullableProblemDetails) Unset

func (v *NullableProblemDetails) Unset()

type NullableQosMonitoringInformation

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

func (NullableQosMonitoringInformation) Get

func (NullableQosMonitoringInformation) IsSet

func (NullableQosMonitoringInformation) MarshalJSON

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

func (*NullableQosMonitoringInformation) Set

func (*NullableQosMonitoringInformation) UnmarshalJSON

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

func (*NullableQosMonitoringInformation) Unset

type NullableQosMonitoringInformationRm

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

func (NullableQosMonitoringInformationRm) Get

func (NullableQosMonitoringInformationRm) IsSet

func (NullableQosMonitoringInformationRm) MarshalJSON

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

func (*NullableQosMonitoringInformationRm) Set

func (*NullableQosMonitoringInformationRm) UnmarshalJSON

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

func (*NullableQosMonitoringInformationRm) Unset

type NullableQosMonitoringReport

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

func NewNullableQosMonitoringReport

func NewNullableQosMonitoringReport(val *QosMonitoringReport) *NullableQosMonitoringReport

func (NullableQosMonitoringReport) Get

func (NullableQosMonitoringReport) IsSet

func (NullableQosMonitoringReport) MarshalJSON

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

func (*NullableQosMonitoringReport) Set

func (*NullableQosMonitoringReport) UnmarshalJSON

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

func (*NullableQosMonitoringReport) Unset

func (v *NullableQosMonitoringReport) Unset()

type NullableRatType

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

func NewNullableRatType

func NewNullableRatType(val *RatType) *NullableRatType

func (NullableRatType) Get

func (v NullableRatType) Get() *RatType

func (NullableRatType) IsSet

func (v NullableRatType) IsSet() bool

func (NullableRatType) MarshalJSON

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

func (*NullableRatType) Set

func (v *NullableRatType) Set(val *RatType)

func (*NullableRatType) UnmarshalJSON

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

func (*NullableRatType) Unset

func (v *NullableRatType) Unset()

type NullableReportingFrequency

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

func NewNullableReportingFrequency

func NewNullableReportingFrequency(val *ReportingFrequency) *NullableReportingFrequency

func (NullableReportingFrequency) Get

func (NullableReportingFrequency) IsSet

func (v NullableReportingFrequency) IsSet() bool

func (NullableReportingFrequency) MarshalJSON

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

func (*NullableReportingFrequency) Set

func (*NullableReportingFrequency) UnmarshalJSON

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

func (*NullableReportingFrequency) Unset

func (v *NullableReportingFrequency) Unset()

type NullableRequestedQosMonitoringParameter

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

func (NullableRequestedQosMonitoringParameter) Get

func (NullableRequestedQosMonitoringParameter) IsSet

func (NullableRequestedQosMonitoringParameter) MarshalJSON

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

func (*NullableRequestedQosMonitoringParameter) Set

func (*NullableRequestedQosMonitoringParameter) UnmarshalJSON

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

func (*NullableRequestedQosMonitoringParameter) Unset

type NullableSnssai

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

func NewNullableSnssai

func NewNullableSnssai(val *Snssai) *NullableSnssai

func (NullableSnssai) Get

func (v NullableSnssai) Get() *Snssai

func (NullableSnssai) IsSet

func (v NullableSnssai) IsSet() bool

func (NullableSnssai) MarshalJSON

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

func (*NullableSnssai) Set

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

func (*NullableSnssai) UnmarshalJSON

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

func (*NullableSnssai) Unset

func (v *NullableSnssai) Unset()

type NullableSponsorInformation

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

func NewNullableSponsorInformation

func NewNullableSponsorInformation(val *SponsorInformation) *NullableSponsorInformation

func (NullableSponsorInformation) Get

func (NullableSponsorInformation) IsSet

func (v NullableSponsorInformation) IsSet() bool

func (NullableSponsorInformation) MarshalJSON

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

func (*NullableSponsorInformation) Set

func (*NullableSponsorInformation) UnmarshalJSON

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

func (*NullableSponsorInformation) Unset

func (v *NullableSponsorInformation) Unset()

type NullableString

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

func NewNullableString

func NewNullableString(val *string) *NullableString

func (NullableString) Get

func (v NullableString) Get() *string

func (NullableString) IsSet

func (v NullableString) IsSet() bool

func (NullableString) MarshalJSON

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

func (*NullableString) Set

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

func (*NullableString) UnmarshalJSON

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

func (*NullableString) Unset

func (v *NullableString) Unset()

type NullableTime

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

func NewNullableTime

func NewNullableTime(val *time.Time) *NullableTime

func (NullableTime) Get

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

func (NullableTime) IsSet

func (v NullableTime) IsSet() bool

func (NullableTime) MarshalJSON

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

func (*NullableTime) Set

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

func (*NullableTime) UnmarshalJSON

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

func (*NullableTime) Unset

func (v *NullableTime) Unset()

type NullableTscQosRequirement

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

func NewNullableTscQosRequirement

func NewNullableTscQosRequirement(val *TscQosRequirement) *NullableTscQosRequirement

func (NullableTscQosRequirement) Get

func (NullableTscQosRequirement) IsSet

func (v NullableTscQosRequirement) IsSet() bool

func (NullableTscQosRequirement) MarshalJSON

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

func (*NullableTscQosRequirement) Set

func (*NullableTscQosRequirement) UnmarshalJSON

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

func (*NullableTscQosRequirement) Unset

func (v *NullableTscQosRequirement) Unset()

type NullableTscQosRequirementRm

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

func NewNullableTscQosRequirementRm

func NewNullableTscQosRequirementRm(val *TscQosRequirementRm) *NullableTscQosRequirementRm

func (NullableTscQosRequirementRm) Get

func (NullableTscQosRequirementRm) IsSet

func (NullableTscQosRequirementRm) MarshalJSON

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

func (*NullableTscQosRequirementRm) Set

func (*NullableTscQosRequirementRm) UnmarshalJSON

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

func (*NullableTscQosRequirementRm) Unset

func (v *NullableTscQosRequirementRm) Unset()

type NullableTscaiInputContainer

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

func NewNullableTscaiInputContainer

func NewNullableTscaiInputContainer(val *TscaiInputContainer) *NullableTscaiInputContainer

func (NullableTscaiInputContainer) Get

func (NullableTscaiInputContainer) IsSet

func (NullableTscaiInputContainer) MarshalJSON

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

func (*NullableTscaiInputContainer) Set

func (*NullableTscaiInputContainer) UnmarshalJSON

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

func (*NullableTscaiInputContainer) Unset

func (v *NullableTscaiInputContainer) Unset()

type NullableUsageThreshold

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

func NewNullableUsageThreshold

func NewNullableUsageThreshold(val *UsageThreshold) *NullableUsageThreshold

func (NullableUsageThreshold) Get

func (NullableUsageThreshold) IsSet

func (v NullableUsageThreshold) IsSet() bool

func (NullableUsageThreshold) MarshalJSON

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

func (*NullableUsageThreshold) Set

func (*NullableUsageThreshold) UnmarshalJSON

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

func (*NullableUsageThreshold) Unset

func (v *NullableUsageThreshold) Unset()

type NullableUsageThresholdRm

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

func NewNullableUsageThresholdRm

func NewNullableUsageThresholdRm(val *UsageThresholdRm) *NullableUsageThresholdRm

func (NullableUsageThresholdRm) Get

func (NullableUsageThresholdRm) IsSet

func (v NullableUsageThresholdRm) IsSet() bool

func (NullableUsageThresholdRm) MarshalJSON

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

func (*NullableUsageThresholdRm) Set

func (*NullableUsageThresholdRm) UnmarshalJSON

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

func (*NullableUsageThresholdRm) Unset

func (v *NullableUsageThresholdRm) Unset()

type NullableUserPlaneEvent

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

func NewNullableUserPlaneEvent

func NewNullableUserPlaneEvent(val *UserPlaneEvent) *NullableUserPlaneEvent

func (NullableUserPlaneEvent) Get

func (NullableUserPlaneEvent) IsSet

func (v NullableUserPlaneEvent) IsSet() bool

func (NullableUserPlaneEvent) MarshalJSON

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

func (*NullableUserPlaneEvent) Set

func (*NullableUserPlaneEvent) UnmarshalJSON

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

func (*NullableUserPlaneEvent) Unset

func (v *NullableUserPlaneEvent) Unset()

type NullableUserPlaneEventReport

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

func NewNullableUserPlaneEventReport

func NewNullableUserPlaneEventReport(val *UserPlaneEventReport) *NullableUserPlaneEventReport

func (NullableUserPlaneEventReport) Get

func (NullableUserPlaneEventReport) IsSet

func (NullableUserPlaneEventReport) MarshalJSON

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

func (*NullableUserPlaneEventReport) Set

func (*NullableUserPlaneEventReport) UnmarshalJSON

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

func (*NullableUserPlaneEventReport) Unset

func (v *NullableUserPlaneEventReport) Unset()

type NullableUserPlaneNotificationData

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

func (NullableUserPlaneNotificationData) Get

func (NullableUserPlaneNotificationData) IsSet

func (NullableUserPlaneNotificationData) MarshalJSON

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

func (*NullableUserPlaneNotificationData) Set

func (*NullableUserPlaneNotificationData) UnmarshalJSON

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

func (*NullableUserPlaneNotificationData) Unset

type NullableWebsockNotifConfig

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

func NewNullableWebsockNotifConfig

func NewNullableWebsockNotifConfig(val *WebsockNotifConfig) *NullableWebsockNotifConfig

func (NullableWebsockNotifConfig) Get

func (NullableWebsockNotifConfig) IsSet

func (v NullableWebsockNotifConfig) IsSet() bool

func (NullableWebsockNotifConfig) MarshalJSON

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

func (*NullableWebsockNotifConfig) Set

func (*NullableWebsockNotifConfig) UnmarshalJSON

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

func (*NullableWebsockNotifConfig) Unset

func (v *NullableWebsockNotifConfig) Unset()

type PlmnIdNid

type PlmnIdNid struct {
	// Mobile Country Code part of the PLMN, comprising 3 digits, as defined in clause 9.3.3.5 of 3GPP TS 38.413.
	Mcc string `json:"mcc"`
	// Mobile Network Code part of the PLMN, comprising 2 or 3 digits, as defined in clause 9.3.3.5 of 3GPP TS 38.413.
	Mnc string `json:"mnc"`
	// This represents the Network Identifier, which together with a PLMN ID is used to identify an SNPN (see 3GPP TS 23.003 and 3GPP TS 23.501 clause 5.30.2.1).
	Nid *string `json:"nid,omitempty"`
}

PlmnIdNid Contains the serving core network operator PLMN ID and, for an SNPN, the NID that together with the PLMN ID identifies the SNPN.

func NewPlmnIdNid

func NewPlmnIdNid(mcc string, mnc string) *PlmnIdNid

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

func NewPlmnIdNidWithDefaults

func NewPlmnIdNidWithDefaults() *PlmnIdNid

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

func (*PlmnIdNid) GetMcc

func (o *PlmnIdNid) GetMcc() string

GetMcc returns the Mcc field value

func (*PlmnIdNid) GetMccOk

func (o *PlmnIdNid) GetMccOk() (*string, bool)

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

func (*PlmnIdNid) GetMnc

func (o *PlmnIdNid) GetMnc() string

GetMnc returns the Mnc field value

func (*PlmnIdNid) GetMncOk

func (o *PlmnIdNid) GetMncOk() (*string, bool)

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

func (*PlmnIdNid) GetNid

func (o *PlmnIdNid) GetNid() string

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

func (*PlmnIdNid) GetNidOk

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

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

func (*PlmnIdNid) HasNid

func (o *PlmnIdNid) HasNid() bool

HasNid returns a boolean if a field has been set.

func (PlmnIdNid) MarshalJSON

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

func (*PlmnIdNid) SetMcc

func (o *PlmnIdNid) SetMcc(v string)

SetMcc sets field value

func (*PlmnIdNid) SetMnc

func (o *PlmnIdNid) SetMnc(v string)

SetMnc sets field value

func (*PlmnIdNid) SetNid

func (o *PlmnIdNid) SetNid(v string)

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

func (PlmnIdNid) ToMap

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

func (*PlmnIdNid) UnmarshalJSON

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

type ProblemDetails

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

ProblemDetails Represents additional information and details on an error response.

func NewProblemDetails

func NewProblemDetails() *ProblemDetails

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

func NewProblemDetailsWithDefaults

func NewProblemDetailsWithDefaults() *ProblemDetails

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

func (*ProblemDetails) GetCause

func (o *ProblemDetails) GetCause() string

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

func (*ProblemDetails) GetCauseOk

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

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

func (*ProblemDetails) GetDetail

func (o *ProblemDetails) GetDetail() string

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

func (*ProblemDetails) GetDetailOk

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

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

func (*ProblemDetails) GetInstance

func (o *ProblemDetails) GetInstance() string

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

func (*ProblemDetails) GetInstanceOk

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

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

func (*ProblemDetails) GetInvalidParams

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

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

func (*ProblemDetails) GetInvalidParamsOk

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

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

func (*ProblemDetails) GetStatus

func (o *ProblemDetails) GetStatus() int32

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

func (*ProblemDetails) GetStatusOk

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

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

func (*ProblemDetails) GetSupportedFeatures

func (o *ProblemDetails) GetSupportedFeatures() string

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

func (*ProblemDetails) GetSupportedFeaturesOk

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

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

func (*ProblemDetails) GetTitle

func (o *ProblemDetails) GetTitle() string

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

func (*ProblemDetails) GetTitleOk

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

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

func (*ProblemDetails) GetType

func (o *ProblemDetails) GetType() string

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

func (*ProblemDetails) GetTypeOk

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

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

func (*ProblemDetails) HasCause

func (o *ProblemDetails) HasCause() bool

HasCause returns a boolean if a field has been set.

func (*ProblemDetails) HasDetail

func (o *ProblemDetails) HasDetail() bool

HasDetail returns a boolean if a field has been set.

func (*ProblemDetails) HasInstance

func (o *ProblemDetails) HasInstance() bool

HasInstance returns a boolean if a field has been set.

func (*ProblemDetails) HasInvalidParams

func (o *ProblemDetails) HasInvalidParams() bool

HasInvalidParams returns a boolean if a field has been set.

func (*ProblemDetails) HasStatus

func (o *ProblemDetails) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*ProblemDetails) HasSupportedFeatures

func (o *ProblemDetails) HasSupportedFeatures() bool

HasSupportedFeatures returns a boolean if a field has been set.

func (*ProblemDetails) HasTitle

func (o *ProblemDetails) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*ProblemDetails) HasType

func (o *ProblemDetails) HasType() bool

HasType returns a boolean if a field has been set.

func (ProblemDetails) MarshalJSON

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

func (*ProblemDetails) SetCause

func (o *ProblemDetails) SetCause(v string)

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

func (*ProblemDetails) SetDetail

func (o *ProblemDetails) SetDetail(v string)

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

func (*ProblemDetails) SetInstance

func (o *ProblemDetails) SetInstance(v string)

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

func (*ProblemDetails) SetInvalidParams

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

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

func (*ProblemDetails) SetStatus

func (o *ProblemDetails) SetStatus(v int32)

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

func (*ProblemDetails) SetSupportedFeatures

func (o *ProblemDetails) SetSupportedFeatures(v string)

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

func (*ProblemDetails) SetTitle

func (o *ProblemDetails) SetTitle(v string)

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

func (*ProblemDetails) SetType

func (o *ProblemDetails) SetType(v string)

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

func (ProblemDetails) ToMap

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

type QosMonitoringInformation

type QosMonitoringInformation struct {
	ReqQosMonParams []RequestedQosMonitoringParameter `json:"reqQosMonParams"`
	RepFreqs        []ReportingFrequency              `json:"repFreqs"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	RepThreshDl *int32 `json:"repThreshDl,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	RepThreshUl *int32 `json:"repThreshUl,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	RepThreshRp *int32 `json:"repThreshRp,omitempty"`
	// indicating a time in seconds.
	WaitTime *int32 `json:"waitTime,omitempty"`
	// indicating a time in seconds.
	RepPeriod *int32 `json:"repPeriod,omitempty"`
}

QosMonitoringInformation Represents QoS monitoring information.

func NewQosMonitoringInformation

func NewQosMonitoringInformation(reqQosMonParams []RequestedQosMonitoringParameter, repFreqs []ReportingFrequency) *QosMonitoringInformation

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

func NewQosMonitoringInformationWithDefaults

func NewQosMonitoringInformationWithDefaults() *QosMonitoringInformation

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

func (*QosMonitoringInformation) GetRepFreqs

func (o *QosMonitoringInformation) GetRepFreqs() []ReportingFrequency

GetRepFreqs returns the RepFreqs field value

func (*QosMonitoringInformation) GetRepFreqsOk

func (o *QosMonitoringInformation) GetRepFreqsOk() ([]ReportingFrequency, bool)

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

func (*QosMonitoringInformation) GetRepPeriod

func (o *QosMonitoringInformation) GetRepPeriod() int32

GetRepPeriod returns the RepPeriod field value if set, zero value otherwise.

func (*QosMonitoringInformation) GetRepPeriodOk

func (o *QosMonitoringInformation) GetRepPeriodOk() (*int32, bool)

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

func (*QosMonitoringInformation) GetRepThreshDl

func (o *QosMonitoringInformation) GetRepThreshDl() int32

GetRepThreshDl returns the RepThreshDl field value if set, zero value otherwise.

func (*QosMonitoringInformation) GetRepThreshDlOk

func (o *QosMonitoringInformation) GetRepThreshDlOk() (*int32, bool)

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

func (*QosMonitoringInformation) GetRepThreshRp

func (o *QosMonitoringInformation) GetRepThreshRp() int32

GetRepThreshRp returns the RepThreshRp field value if set, zero value otherwise.

func (*QosMonitoringInformation) GetRepThreshRpOk

func (o *QosMonitoringInformation) GetRepThreshRpOk() (*int32, bool)

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

func (*QosMonitoringInformation) GetRepThreshUl

func (o *QosMonitoringInformation) GetRepThreshUl() int32

GetRepThreshUl returns the RepThreshUl field value if set, zero value otherwise.

func (*QosMonitoringInformation) GetRepThreshUlOk

func (o *QosMonitoringInformation) GetRepThreshUlOk() (*int32, bool)

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

func (*QosMonitoringInformation) GetReqQosMonParams

GetReqQosMonParams returns the ReqQosMonParams field value

func (*QosMonitoringInformation) GetReqQosMonParamsOk

func (o *QosMonitoringInformation) GetReqQosMonParamsOk() ([]RequestedQosMonitoringParameter, bool)

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

func (*QosMonitoringInformation) GetWaitTime

func (o *QosMonitoringInformation) GetWaitTime() int32

GetWaitTime returns the WaitTime field value if set, zero value otherwise.

func (*QosMonitoringInformation) GetWaitTimeOk

func (o *QosMonitoringInformation) GetWaitTimeOk() (*int32, bool)

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

func (*QosMonitoringInformation) HasRepPeriod

func (o *QosMonitoringInformation) HasRepPeriod() bool

HasRepPeriod returns a boolean if a field has been set.

func (*QosMonitoringInformation) HasRepThreshDl

func (o *QosMonitoringInformation) HasRepThreshDl() bool

HasRepThreshDl returns a boolean if a field has been set.

func (*QosMonitoringInformation) HasRepThreshRp

func (o *QosMonitoringInformation) HasRepThreshRp() bool

HasRepThreshRp returns a boolean if a field has been set.

func (*QosMonitoringInformation) HasRepThreshUl

func (o *QosMonitoringInformation) HasRepThreshUl() bool

HasRepThreshUl returns a boolean if a field has been set.

func (*QosMonitoringInformation) HasWaitTime

func (o *QosMonitoringInformation) HasWaitTime() bool

HasWaitTime returns a boolean if a field has been set.

func (QosMonitoringInformation) MarshalJSON

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

func (*QosMonitoringInformation) SetRepFreqs

func (o *QosMonitoringInformation) SetRepFreqs(v []ReportingFrequency)

SetRepFreqs sets field value

func (*QosMonitoringInformation) SetRepPeriod

func (o *QosMonitoringInformation) SetRepPeriod(v int32)

SetRepPeriod gets a reference to the given int32 and assigns it to the RepPeriod field.

func (*QosMonitoringInformation) SetRepThreshDl

func (o *QosMonitoringInformation) SetRepThreshDl(v int32)

SetRepThreshDl gets a reference to the given int32 and assigns it to the RepThreshDl field.

func (*QosMonitoringInformation) SetRepThreshRp

func (o *QosMonitoringInformation) SetRepThreshRp(v int32)

SetRepThreshRp gets a reference to the given int32 and assigns it to the RepThreshRp field.

func (*QosMonitoringInformation) SetRepThreshUl

func (o *QosMonitoringInformation) SetRepThreshUl(v int32)

SetRepThreshUl gets a reference to the given int32 and assigns it to the RepThreshUl field.

func (*QosMonitoringInformation) SetReqQosMonParams

func (o *QosMonitoringInformation) SetReqQosMonParams(v []RequestedQosMonitoringParameter)

SetReqQosMonParams sets field value

func (*QosMonitoringInformation) SetWaitTime

func (o *QosMonitoringInformation) SetWaitTime(v int32)

SetWaitTime gets a reference to the given int32 and assigns it to the WaitTime field.

func (QosMonitoringInformation) ToMap

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

func (*QosMonitoringInformation) UnmarshalJSON

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

type QosMonitoringInformationRm

type QosMonitoringInformationRm struct {
	ReqQosMonParams []RequestedQosMonitoringParameter `json:"reqQosMonParams,omitempty"`
	RepFreqs        []ReportingFrequency              `json:"repFreqs,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible with the OpenAPI 'nullable: true' property.
	RepThreshDl NullableInt32 `json:"repThreshDl,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible with the OpenAPI 'nullable: true' property.
	RepThreshUl NullableInt32 `json:"repThreshUl,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible with the OpenAPI 'nullable: true' property.
	RepThreshRp NullableInt32 `json:"repThreshRp,omitempty"`
	// indicating a time in seconds with OpenAPI defined 'nullable: true' property.
	WaitTime NullableInt32 `json:"waitTime,omitempty"`
	// indicating a time in seconds with OpenAPI defined 'nullable: true' property.
	RepPeriod NullableInt32 `json:"repPeriod,omitempty"`
}

QosMonitoringInformationRm Represents the same as the QosMonitoringInformation data type but with the nullable:true property.

func NewQosMonitoringInformationRm

func NewQosMonitoringInformationRm() *QosMonitoringInformationRm

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

func NewQosMonitoringInformationRmWithDefaults

func NewQosMonitoringInformationRmWithDefaults() *QosMonitoringInformationRm

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

func (*QosMonitoringInformationRm) GetRepFreqs

GetRepFreqs returns the RepFreqs field value if set, zero value otherwise.

func (*QosMonitoringInformationRm) GetRepFreqsOk

func (o *QosMonitoringInformationRm) GetRepFreqsOk() ([]ReportingFrequency, bool)

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

func (*QosMonitoringInformationRm) GetRepPeriod

func (o *QosMonitoringInformationRm) GetRepPeriod() int32

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

func (*QosMonitoringInformationRm) GetRepPeriodOk

func (o *QosMonitoringInformationRm) GetRepPeriodOk() (*int32, bool)

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

func (*QosMonitoringInformationRm) GetRepThreshDl

func (o *QosMonitoringInformationRm) GetRepThreshDl() int32

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

func (*QosMonitoringInformationRm) GetRepThreshDlOk

func (o *QosMonitoringInformationRm) GetRepThreshDlOk() (*int32, bool)

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

func (*QosMonitoringInformationRm) GetRepThreshRp

func (o *QosMonitoringInformationRm) GetRepThreshRp() int32

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

func (*QosMonitoringInformationRm) GetRepThreshRpOk

func (o *QosMonitoringInformationRm) GetRepThreshRpOk() (*int32, bool)

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

func (*QosMonitoringInformationRm) GetRepThreshUl

func (o *QosMonitoringInformationRm) GetRepThreshUl() int32

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

func (*QosMonitoringInformationRm) GetRepThreshUlOk

func (o *QosMonitoringInformationRm) GetRepThreshUlOk() (*int32, bool)

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

func (*QosMonitoringInformationRm) GetReqQosMonParams

GetReqQosMonParams returns the ReqQosMonParams field value if set, zero value otherwise.

func (*QosMonitoringInformationRm) GetReqQosMonParamsOk

func (o *QosMonitoringInformationRm) GetReqQosMonParamsOk() ([]RequestedQosMonitoringParameter, bool)

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

func (*QosMonitoringInformationRm) GetWaitTime

func (o *QosMonitoringInformationRm) GetWaitTime() int32

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

func (*QosMonitoringInformationRm) GetWaitTimeOk

func (o *QosMonitoringInformationRm) GetWaitTimeOk() (*int32, bool)

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

func (*QosMonitoringInformationRm) HasRepFreqs

func (o *QosMonitoringInformationRm) HasRepFreqs() bool

HasRepFreqs returns a boolean if a field has been set.

func (*QosMonitoringInformationRm) HasRepPeriod

func (o *QosMonitoringInformationRm) HasRepPeriod() bool

HasRepPeriod returns a boolean if a field has been set.

func (*QosMonitoringInformationRm) HasRepThreshDl

func (o *QosMonitoringInformationRm) HasRepThreshDl() bool

HasRepThreshDl returns a boolean if a field has been set.

func (*QosMonitoringInformationRm) HasRepThreshRp

func (o *QosMonitoringInformationRm) HasRepThreshRp() bool

HasRepThreshRp returns a boolean if a field has been set.

func (*QosMonitoringInformationRm) HasRepThreshUl

func (o *QosMonitoringInformationRm) HasRepThreshUl() bool

HasRepThreshUl returns a boolean if a field has been set.

func (*QosMonitoringInformationRm) HasReqQosMonParams

func (o *QosMonitoringInformationRm) HasReqQosMonParams() bool

HasReqQosMonParams returns a boolean if a field has been set.

func (*QosMonitoringInformationRm) HasWaitTime

func (o *QosMonitoringInformationRm) HasWaitTime() bool

HasWaitTime returns a boolean if a field has been set.

func (QosMonitoringInformationRm) MarshalJSON

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

func (*QosMonitoringInformationRm) SetRepFreqs

func (o *QosMonitoringInformationRm) SetRepFreqs(v []ReportingFrequency)

SetRepFreqs gets a reference to the given []ReportingFrequency and assigns it to the RepFreqs field.

func (*QosMonitoringInformationRm) SetRepPeriod

func (o *QosMonitoringInformationRm) SetRepPeriod(v int32)

SetRepPeriod gets a reference to the given NullableInt32 and assigns it to the RepPeriod field.

func (*QosMonitoringInformationRm) SetRepPeriodNil

func (o *QosMonitoringInformationRm) SetRepPeriodNil()

SetRepPeriodNil sets the value for RepPeriod to be an explicit nil

func (*QosMonitoringInformationRm) SetRepThreshDl

func (o *QosMonitoringInformationRm) SetRepThreshDl(v int32)

SetRepThreshDl gets a reference to the given NullableInt32 and assigns it to the RepThreshDl field.

func (*QosMonitoringInformationRm) SetRepThreshDlNil

func (o *QosMonitoringInformationRm) SetRepThreshDlNil()

SetRepThreshDlNil sets the value for RepThreshDl to be an explicit nil

func (*QosMonitoringInformationRm) SetRepThreshRp

func (o *QosMonitoringInformationRm) SetRepThreshRp(v int32)

SetRepThreshRp gets a reference to the given NullableInt32 and assigns it to the RepThreshRp field.

func (*QosMonitoringInformationRm) SetRepThreshRpNil

func (o *QosMonitoringInformationRm) SetRepThreshRpNil()

SetRepThreshRpNil sets the value for RepThreshRp to be an explicit nil

func (*QosMonitoringInformationRm) SetRepThreshUl

func (o *QosMonitoringInformationRm) SetRepThreshUl(v int32)

SetRepThreshUl gets a reference to the given NullableInt32 and assigns it to the RepThreshUl field.

func (*QosMonitoringInformationRm) SetRepThreshUlNil

func (o *QosMonitoringInformationRm) SetRepThreshUlNil()

SetRepThreshUlNil sets the value for RepThreshUl to be an explicit nil

func (*QosMonitoringInformationRm) SetReqQosMonParams

SetReqQosMonParams gets a reference to the given []RequestedQosMonitoringParameter and assigns it to the ReqQosMonParams field.

func (*QosMonitoringInformationRm) SetWaitTime

func (o *QosMonitoringInformationRm) SetWaitTime(v int32)

SetWaitTime gets a reference to the given NullableInt32 and assigns it to the WaitTime field.

func (*QosMonitoringInformationRm) SetWaitTimeNil

func (o *QosMonitoringInformationRm) SetWaitTimeNil()

SetWaitTimeNil sets the value for WaitTime to be an explicit nil

func (QosMonitoringInformationRm) ToMap

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

func (*QosMonitoringInformationRm) UnsetRepPeriod

func (o *QosMonitoringInformationRm) UnsetRepPeriod()

UnsetRepPeriod ensures that no value is present for RepPeriod, not even an explicit nil

func (*QosMonitoringInformationRm) UnsetRepThreshDl

func (o *QosMonitoringInformationRm) UnsetRepThreshDl()

UnsetRepThreshDl ensures that no value is present for RepThreshDl, not even an explicit nil

func (*QosMonitoringInformationRm) UnsetRepThreshRp

func (o *QosMonitoringInformationRm) UnsetRepThreshRp()

UnsetRepThreshRp ensures that no value is present for RepThreshRp, not even an explicit nil

func (*QosMonitoringInformationRm) UnsetRepThreshUl

func (o *QosMonitoringInformationRm) UnsetRepThreshUl()

UnsetRepThreshUl ensures that no value is present for RepThreshUl, not even an explicit nil

func (*QosMonitoringInformationRm) UnsetWaitTime

func (o *QosMonitoringInformationRm) UnsetWaitTime()

UnsetWaitTime ensures that no value is present for WaitTime, not even an explicit nil

type QosMonitoringReport

type QosMonitoringReport struct {
	UlDelays []int32 `json:"ulDelays,omitempty"`
	DlDelays []int32 `json:"dlDelays,omitempty"`
	RtDelays []int32 `json:"rtDelays,omitempty"`
	// Represents the packet delay measurement failure indicator.
	Pdmf *bool `json:"pdmf,omitempty"`
}

QosMonitoringReport Represents a QoS monitoring report.

func NewQosMonitoringReport

func NewQosMonitoringReport() *QosMonitoringReport

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

func NewQosMonitoringReportWithDefaults

func NewQosMonitoringReportWithDefaults() *QosMonitoringReport

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

func (*QosMonitoringReport) GetDlDelays

func (o *QosMonitoringReport) GetDlDelays() []int32

GetDlDelays returns the DlDelays field value if set, zero value otherwise.

func (*QosMonitoringReport) GetDlDelaysOk

func (o *QosMonitoringReport) GetDlDelaysOk() ([]int32, bool)

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

func (*QosMonitoringReport) GetPdmf

func (o *QosMonitoringReport) GetPdmf() bool

GetPdmf returns the Pdmf field value if set, zero value otherwise.

func (*QosMonitoringReport) GetPdmfOk

func (o *QosMonitoringReport) GetPdmfOk() (*bool, bool)

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

func (*QosMonitoringReport) GetRtDelays

func (o *QosMonitoringReport) GetRtDelays() []int32

GetRtDelays returns the RtDelays field value if set, zero value otherwise.

func (*QosMonitoringReport) GetRtDelaysOk

func (o *QosMonitoringReport) GetRtDelaysOk() ([]int32, bool)

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

func (*QosMonitoringReport) GetUlDelays

func (o *QosMonitoringReport) GetUlDelays() []int32

GetUlDelays returns the UlDelays field value if set, zero value otherwise.

func (*QosMonitoringReport) GetUlDelaysOk

func (o *QosMonitoringReport) GetUlDelaysOk() ([]int32, bool)

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

func (*QosMonitoringReport) HasDlDelays

func (o *QosMonitoringReport) HasDlDelays() bool

HasDlDelays returns a boolean if a field has been set.

func (*QosMonitoringReport) HasPdmf

func (o *QosMonitoringReport) HasPdmf() bool

HasPdmf returns a boolean if a field has been set.

func (*QosMonitoringReport) HasRtDelays

func (o *QosMonitoringReport) HasRtDelays() bool

HasRtDelays returns a boolean if a field has been set.

func (*QosMonitoringReport) HasUlDelays

func (o *QosMonitoringReport) HasUlDelays() bool

HasUlDelays returns a boolean if a field has been set.

func (QosMonitoringReport) MarshalJSON

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

func (*QosMonitoringReport) SetDlDelays

func (o *QosMonitoringReport) SetDlDelays(v []int32)

SetDlDelays gets a reference to the given []int32 and assigns it to the DlDelays field.

func (*QosMonitoringReport) SetPdmf

func (o *QosMonitoringReport) SetPdmf(v bool)

SetPdmf gets a reference to the given bool and assigns it to the Pdmf field.

func (*QosMonitoringReport) SetRtDelays

func (o *QosMonitoringReport) SetRtDelays(v []int32)

SetRtDelays gets a reference to the given []int32 and assigns it to the RtDelays field.

func (*QosMonitoringReport) SetUlDelays

func (o *QosMonitoringReport) SetUlDelays(v []int32)

SetUlDelays gets a reference to the given []int32 and assigns it to the UlDelays field.

func (QosMonitoringReport) ToMap

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

type RatType

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

RatType Indicates the radio access used.

func (*RatType) MarshalJSON

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

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

func (*RatType) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type ReportingFrequency

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

ReportingFrequency Indicates the frequency for the reporting.

func (*ReportingFrequency) MarshalJSON

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

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

func (*ReportingFrequency) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type RequestedQosMonitoringParameter

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

RequestedQosMonitoringParameter Indicates the requested QoS monitoring parameters to be measured.

func (*RequestedQosMonitoringParameter) MarshalJSON

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

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

func (*RequestedQosMonitoringParameter) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type ServerConfiguration

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

ServerConfiguration stores the information about a server

type ServerConfigurations

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL

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

URL formats template on a index using given variables

type ServerVariable

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

ServerVariable stores the information about a server variable

type Snssai

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

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

func NewSnssai

func NewSnssai(sst int32) *Snssai

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

func NewSnssaiWithDefaults

func NewSnssaiWithDefaults() *Snssai

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

func (*Snssai) GetSd

func (o *Snssai) GetSd() string

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

func (*Snssai) GetSdOk

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

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

func (*Snssai) GetSst

func (o *Snssai) GetSst() int32

GetSst returns the Sst field value

func (*Snssai) GetSstOk

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

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

func (*Snssai) HasSd

func (o *Snssai) HasSd() bool

HasSd returns a boolean if a field has been set.

func (Snssai) MarshalJSON

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

func (*Snssai) SetSd

func (o *Snssai) SetSd(v string)

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

func (*Snssai) SetSst

func (o *Snssai) SetSst(v int32)

SetSst sets field value

func (Snssai) ToMap

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

func (*Snssai) UnmarshalJSON

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

type SponsorInformation

type SponsorInformation struct {
	// It indicates Sponsor ID.
	SponsorId string `json:"sponsorId"`
	// It indicates Application Service Provider ID.
	AspId string `json:"aspId"`
}

SponsorInformation Represents a sponsor information.

func NewSponsorInformation

func NewSponsorInformation(sponsorId string, aspId string) *SponsorInformation

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

func NewSponsorInformationWithDefaults

func NewSponsorInformationWithDefaults() *SponsorInformation

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

func (*SponsorInformation) GetAspId

func (o *SponsorInformation) GetAspId() string

GetAspId returns the AspId field value

func (*SponsorInformation) GetAspIdOk

func (o *SponsorInformation) GetAspIdOk() (*string, bool)

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

func (*SponsorInformation) GetSponsorId

func (o *SponsorInformation) GetSponsorId() string

GetSponsorId returns the SponsorId field value

func (*SponsorInformation) GetSponsorIdOk

func (o *SponsorInformation) GetSponsorIdOk() (*string, bool)

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

func (SponsorInformation) MarshalJSON

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

func (*SponsorInformation) SetAspId

func (o *SponsorInformation) SetAspId(v string)

SetAspId sets field value

func (*SponsorInformation) SetSponsorId

func (o *SponsorInformation) SetSponsorId(v string)

SetSponsorId sets field value

func (SponsorInformation) ToMap

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

func (*SponsorInformation) UnmarshalJSON

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

type TscQosRequirement

type TscQosRequirement struct {
	// String representing a bit rate; the prefixes follow the standard symbols from The International System of Units, and represent x1000 multipliers, with the exception that prefix \"K\" is used to represent the standard symbol \"k\".
	ReqGbrDl *string `json:"reqGbrDl,omitempty"`
	// String representing a bit rate; the prefixes follow the standard symbols from The International System of Units, and represent x1000 multipliers, with the exception that prefix \"K\" is used to represent the standard symbol \"k\".
	ReqGbrUl *string `json:"reqGbrUl,omitempty"`
	// String representing a bit rate; the prefixes follow the standard symbols from The International System of Units, and represent x1000 multipliers, with the exception that prefix \"K\" is used to represent the standard symbol \"k\".
	ReqMbrDl *string `json:"reqMbrDl,omitempty"`
	// String representing a bit rate; the prefixes follow the standard symbols from The International System of Units, and represent x1000 multipliers, with the exception that prefix \"K\" is used to represent the standard symbol \"k\".
	ReqMbrUl *string `json:"reqMbrUl,omitempty"`
	// Unsigned integer indicating Maximum Data Burst Volume (see clauses 5.7.3.7 and 5.7.4 of 3GPP TS 23.501), expressed in Bytes.
	MaxTscBurstSize *int32 `json:"maxTscBurstSize,omitempty"`
	// Unsigned integer indicating Packet Delay Budget (see clauses 5.7.3.4 and 5.7.4 of 3GPP TS 23.501), expressed in milliseconds.
	Req5Gsdelay *int32 `json:"req5Gsdelay,omitempty"`
	// Represents the priority level of TSC Flows.
	Priority *int32 `json:"priority,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	TscaiTimeDom *int32                      `json:"tscaiTimeDom,omitempty"`
	TscaiInputDl NullableTscaiInputContainer `json:"tscaiInputDl,omitempty"`
	TscaiInputUl NullableTscaiInputContainer `json:"tscaiInputUl,omitempty"`
}

TscQosRequirement Represents QoS requirements for time sensitive communication.

func NewTscQosRequirement

func NewTscQosRequirement() *TscQosRequirement

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

func NewTscQosRequirementWithDefaults

func NewTscQosRequirementWithDefaults() *TscQosRequirement

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

func (*TscQosRequirement) GetMaxTscBurstSize

func (o *TscQosRequirement) GetMaxTscBurstSize() int32

GetMaxTscBurstSize returns the MaxTscBurstSize field value if set, zero value otherwise.

func (*TscQosRequirement) GetMaxTscBurstSizeOk

func (o *TscQosRequirement) GetMaxTscBurstSizeOk() (*int32, bool)

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

func (*TscQosRequirement) GetPriority

func (o *TscQosRequirement) GetPriority() int32

GetPriority returns the Priority field value if set, zero value otherwise.

func (*TscQosRequirement) GetPriorityOk

func (o *TscQosRequirement) GetPriorityOk() (*int32, bool)

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

func (*TscQosRequirement) GetReq5Gsdelay

func (o *TscQosRequirement) GetReq5Gsdelay() int32

GetReq5Gsdelay returns the Req5Gsdelay field value if set, zero value otherwise.

func (*TscQosRequirement) GetReq5GsdelayOk

func (o *TscQosRequirement) GetReq5GsdelayOk() (*int32, bool)

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

func (*TscQosRequirement) GetReqGbrDl

func (o *TscQosRequirement) GetReqGbrDl() string

GetReqGbrDl returns the ReqGbrDl field value if set, zero value otherwise.

func (*TscQosRequirement) GetReqGbrDlOk

func (o *TscQosRequirement) GetReqGbrDlOk() (*string, bool)

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

func (*TscQosRequirement) GetReqGbrUl

func (o *TscQosRequirement) GetReqGbrUl() string

GetReqGbrUl returns the ReqGbrUl field value if set, zero value otherwise.

func (*TscQosRequirement) GetReqGbrUlOk

func (o *TscQosRequirement) GetReqGbrUlOk() (*string, bool)

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

func (*TscQosRequirement) GetReqMbrDl

func (o *TscQosRequirement) GetReqMbrDl() string

GetReqMbrDl returns the ReqMbrDl field value if set, zero value otherwise.

func (*TscQosRequirement) GetReqMbrDlOk

func (o *TscQosRequirement) GetReqMbrDlOk() (*string, bool)

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

func (*TscQosRequirement) GetReqMbrUl

func (o *TscQosRequirement) GetReqMbrUl() string

GetReqMbrUl returns the ReqMbrUl field value if set, zero value otherwise.

func (*TscQosRequirement) GetReqMbrUlOk

func (o *TscQosRequirement) GetReqMbrUlOk() (*string, bool)

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

func (*TscQosRequirement) GetTscaiInputDl

func (o *TscQosRequirement) GetTscaiInputDl() TscaiInputContainer

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

func (*TscQosRequirement) GetTscaiInputDlOk

func (o *TscQosRequirement) GetTscaiInputDlOk() (*TscaiInputContainer, bool)

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

func (*TscQosRequirement) GetTscaiInputUl

func (o *TscQosRequirement) GetTscaiInputUl() TscaiInputContainer

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

func (*TscQosRequirement) GetTscaiInputUlOk

func (o *TscQosRequirement) GetTscaiInputUlOk() (*TscaiInputContainer, bool)

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

func (*TscQosRequirement) GetTscaiTimeDom

func (o *TscQosRequirement) GetTscaiTimeDom() int32

GetTscaiTimeDom returns the TscaiTimeDom field value if set, zero value otherwise.

func (*TscQosRequirement) GetTscaiTimeDomOk

func (o *TscQosRequirement) GetTscaiTimeDomOk() (*int32, bool)

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

func (*TscQosRequirement) HasMaxTscBurstSize

func (o *TscQosRequirement) HasMaxTscBurstSize() bool

HasMaxTscBurstSize returns a boolean if a field has been set.

func (*TscQosRequirement) HasPriority

func (o *TscQosRequirement) HasPriority() bool

HasPriority returns a boolean if a field has been set.

func (*TscQosRequirement) HasReq5Gsdelay

func (o *TscQosRequirement) HasReq5Gsdelay() bool

HasReq5Gsdelay returns a boolean if a field has been set.

func (*TscQosRequirement) HasReqGbrDl

func (o *TscQosRequirement) HasReqGbrDl() bool

HasReqGbrDl returns a boolean if a field has been set.

func (*TscQosRequirement) HasReqGbrUl

func (o *TscQosRequirement) HasReqGbrUl() bool

HasReqGbrUl returns a boolean if a field has been set.

func (*TscQosRequirement) HasReqMbrDl

func (o *TscQosRequirement) HasReqMbrDl() bool

HasReqMbrDl returns a boolean if a field has been set.

func (*TscQosRequirement) HasReqMbrUl

func (o *TscQosRequirement) HasReqMbrUl() bool

HasReqMbrUl returns a boolean if a field has been set.

func (*TscQosRequirement) HasTscaiInputDl

func (o *TscQosRequirement) HasTscaiInputDl() bool

HasTscaiInputDl returns a boolean if a field has been set.

func (*TscQosRequirement) HasTscaiInputUl

func (o *TscQosRequirement) HasTscaiInputUl() bool

HasTscaiInputUl returns a boolean if a field has been set.

func (*TscQosRequirement) HasTscaiTimeDom

func (o *TscQosRequirement) HasTscaiTimeDom() bool

HasTscaiTimeDom returns a boolean if a field has been set.

func (TscQosRequirement) MarshalJSON

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

func (*TscQosRequirement) SetMaxTscBurstSize

func (o *TscQosRequirement) SetMaxTscBurstSize(v int32)

SetMaxTscBurstSize gets a reference to the given int32 and assigns it to the MaxTscBurstSize field.

func (*TscQosRequirement) SetPriority

func (o *TscQosRequirement) SetPriority(v int32)

SetPriority gets a reference to the given int32 and assigns it to the Priority field.

func (*TscQosRequirement) SetReq5Gsdelay

func (o *TscQosRequirement) SetReq5Gsdelay(v int32)

SetReq5Gsdelay gets a reference to the given int32 and assigns it to the Req5Gsdelay field.

func (*TscQosRequirement) SetReqGbrDl

func (o *TscQosRequirement) SetReqGbrDl(v string)

SetReqGbrDl gets a reference to the given string and assigns it to the ReqGbrDl field.

func (*TscQosRequirement) SetReqGbrUl

func (o *TscQosRequirement) SetReqGbrUl(v string)

SetReqGbrUl gets a reference to the given string and assigns it to the ReqGbrUl field.

func (*TscQosRequirement) SetReqMbrDl

func (o *TscQosRequirement) SetReqMbrDl(v string)

SetReqMbrDl gets a reference to the given string and assigns it to the ReqMbrDl field.

func (*TscQosRequirement) SetReqMbrUl

func (o *TscQosRequirement) SetReqMbrUl(v string)

SetReqMbrUl gets a reference to the given string and assigns it to the ReqMbrUl field.

func (*TscQosRequirement) SetTscaiInputDl

func (o *TscQosRequirement) SetTscaiInputDl(v TscaiInputContainer)

SetTscaiInputDl gets a reference to the given NullableTscaiInputContainer and assigns it to the TscaiInputDl field.

func (*TscQosRequirement) SetTscaiInputDlNil

func (o *TscQosRequirement) SetTscaiInputDlNil()

SetTscaiInputDlNil sets the value for TscaiInputDl to be an explicit nil

func (*TscQosRequirement) SetTscaiInputUl

func (o *TscQosRequirement) SetTscaiInputUl(v TscaiInputContainer)

SetTscaiInputUl gets a reference to the given NullableTscaiInputContainer and assigns it to the TscaiInputUl field.

func (*TscQosRequirement) SetTscaiInputUlNil

func (o *TscQosRequirement) SetTscaiInputUlNil()

SetTscaiInputUlNil sets the value for TscaiInputUl to be an explicit nil

func (*TscQosRequirement) SetTscaiTimeDom

func (o *TscQosRequirement) SetTscaiTimeDom(v int32)

SetTscaiTimeDom gets a reference to the given int32 and assigns it to the TscaiTimeDom field.

func (TscQosRequirement) ToMap

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

func (*TscQosRequirement) UnsetTscaiInputDl

func (o *TscQosRequirement) UnsetTscaiInputDl()

UnsetTscaiInputDl ensures that no value is present for TscaiInputDl, not even an explicit nil

func (*TscQosRequirement) UnsetTscaiInputUl

func (o *TscQosRequirement) UnsetTscaiInputUl()

UnsetTscaiInputUl ensures that no value is present for TscaiInputUl, not even an explicit nil

type TscQosRequirementRm

type TscQosRequirementRm struct {
	// This data type is defined in the same way as the 'BitRate' data type, but with the OpenAPI 'nullable: true' property.
	ReqGbrDl NullableString `json:"reqGbrDl,omitempty"`
	// This data type is defined in the same way as the 'BitRate' data type, but with the OpenAPI 'nullable: true' property.
	ReqGbrUl NullableString `json:"reqGbrUl,omitempty"`
	// This data type is defined in the same way as the 'BitRate' data type, but with the OpenAPI 'nullable: true' property.
	ReqMbrDl NullableString `json:"reqMbrDl,omitempty"`
	// This data type is defined in the same way as the 'BitRate' data type, but with the OpenAPI 'nullable: true' property.
	ReqMbrUl NullableString `json:"reqMbrUl,omitempty"`
	// This data type is defined in the same way as the 'ExtMaxDataBurstVol' data type, but with the OpenAPI 'nullable: true' property.
	MaxTscBurstSize NullableInt32 `json:"maxTscBurstSize,omitempty"`
	// This data type is defined in the same way as the 'PacketDelBudget' data type, but with the OpenAPI 'nullable: true' property.
	Req5Gsdelay NullableInt32 `json:"req5Gsdelay,omitempty"`
	// This data type is defined in the same way as the TscPriorityLevel data type, but with the OpenAPI nullable property set to true.
	Priority NullableInt32 `json:"priority,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible with the OpenAPI 'nullable: true' property.
	TscaiTimeDom NullableInt32               `json:"tscaiTimeDom,omitempty"`
	TscaiInputDl NullableTscaiInputContainer `json:"tscaiInputDl,omitempty"`
	TscaiInputUl NullableTscaiInputContainer `json:"tscaiInputUl,omitempty"`
}

TscQosRequirementRm Represents the same as the TscQosRequirement data type but with the nullable:true property.

func NewTscQosRequirementRm

func NewTscQosRequirementRm() *TscQosRequirementRm

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

func NewTscQosRequirementRmWithDefaults

func NewTscQosRequirementRmWithDefaults() *TscQosRequirementRm

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

func (*TscQosRequirementRm) GetMaxTscBurstSize

func (o *TscQosRequirementRm) GetMaxTscBurstSize() int32

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

func (*TscQosRequirementRm) GetMaxTscBurstSizeOk

func (o *TscQosRequirementRm) GetMaxTscBurstSizeOk() (*int32, bool)

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

func (*TscQosRequirementRm) GetPriority

func (o *TscQosRequirementRm) GetPriority() int32

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

func (*TscQosRequirementRm) GetPriorityOk

func (o *TscQosRequirementRm) GetPriorityOk() (*int32, bool)

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

func (*TscQosRequirementRm) GetReq5Gsdelay

func (o *TscQosRequirementRm) GetReq5Gsdelay() int32

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

func (*TscQosRequirementRm) GetReq5GsdelayOk

func (o *TscQosRequirementRm) GetReq5GsdelayOk() (*int32, bool)

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

func (*TscQosRequirementRm) GetReqGbrDl

func (o *TscQosRequirementRm) GetReqGbrDl() string

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

func (*TscQosRequirementRm) GetReqGbrDlOk

func (o *TscQosRequirementRm) GetReqGbrDlOk() (*string, bool)

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

func (*TscQosRequirementRm) GetReqGbrUl

func (o *TscQosRequirementRm) GetReqGbrUl() string

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

func (*TscQosRequirementRm) GetReqGbrUlOk

func (o *TscQosRequirementRm) GetReqGbrUlOk() (*string, bool)

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

func (*TscQosRequirementRm) GetReqMbrDl

func (o *TscQosRequirementRm) GetReqMbrDl() string

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

func (*TscQosRequirementRm) GetReqMbrDlOk

func (o *TscQosRequirementRm) GetReqMbrDlOk() (*string, bool)

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

func (*TscQosRequirementRm) GetReqMbrUl

func (o *TscQosRequirementRm) GetReqMbrUl() string

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

func (*TscQosRequirementRm) GetReqMbrUlOk

func (o *TscQosRequirementRm) GetReqMbrUlOk() (*string, bool)

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

func (*TscQosRequirementRm) GetTscaiInputDl

func (o *TscQosRequirementRm) GetTscaiInputDl() TscaiInputContainer

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

func (*TscQosRequirementRm) GetTscaiInputDlOk

func (o *TscQosRequirementRm) GetTscaiInputDlOk() (*TscaiInputContainer, bool)

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

func (*TscQosRequirementRm) GetTscaiInputUl

func (o *TscQosRequirementRm) GetTscaiInputUl() TscaiInputContainer

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

func (*TscQosRequirementRm) GetTscaiInputUlOk

func (o *TscQosRequirementRm) GetTscaiInputUlOk() (*TscaiInputContainer, bool)

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

func (*TscQosRequirementRm) GetTscaiTimeDom

func (o *TscQosRequirementRm) GetTscaiTimeDom() int32

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

func (*TscQosRequirementRm) GetTscaiTimeDomOk

func (o *TscQosRequirementRm) GetTscaiTimeDomOk() (*int32, bool)

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

func (*TscQosRequirementRm) HasMaxTscBurstSize

func (o *TscQosRequirementRm) HasMaxTscBurstSize() bool

HasMaxTscBurstSize returns a boolean if a field has been set.

func (*TscQosRequirementRm) HasPriority

func (o *TscQosRequirementRm) HasPriority() bool

HasPriority returns a boolean if a field has been set.

func (*TscQosRequirementRm) HasReq5Gsdelay

func (o *TscQosRequirementRm) HasReq5Gsdelay() bool

HasReq5Gsdelay returns a boolean if a field has been set.

func (*TscQosRequirementRm) HasReqGbrDl

func (o *TscQosRequirementRm) HasReqGbrDl() bool

HasReqGbrDl returns a boolean if a field has been set.

func (*TscQosRequirementRm) HasReqGbrUl

func (o *TscQosRequirementRm) HasReqGbrUl() bool

HasReqGbrUl returns a boolean if a field has been set.

func (*TscQosRequirementRm) HasReqMbrDl

func (o *TscQosRequirementRm) HasReqMbrDl() bool

HasReqMbrDl returns a boolean if a field has been set.

func (*TscQosRequirementRm) HasReqMbrUl

func (o *TscQosRequirementRm) HasReqMbrUl() bool

HasReqMbrUl returns a boolean if a field has been set.

func (*TscQosRequirementRm) HasTscaiInputDl

func (o *TscQosRequirementRm) HasTscaiInputDl() bool

HasTscaiInputDl returns a boolean if a field has been set.

func (*TscQosRequirementRm) HasTscaiInputUl

func (o *TscQosRequirementRm) HasTscaiInputUl() bool

HasTscaiInputUl returns a boolean if a field has been set.

func (*TscQosRequirementRm) HasTscaiTimeDom

func (o *TscQosRequirementRm) HasTscaiTimeDom() bool

HasTscaiTimeDom returns a boolean if a field has been set.

func (TscQosRequirementRm) MarshalJSON

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

func (*TscQosRequirementRm) SetMaxTscBurstSize

func (o *TscQosRequirementRm) SetMaxTscBurstSize(v int32)

SetMaxTscBurstSize gets a reference to the given NullableInt32 and assigns it to the MaxTscBurstSize field.

func (*TscQosRequirementRm) SetMaxTscBurstSizeNil

func (o *TscQosRequirementRm) SetMaxTscBurstSizeNil()

SetMaxTscBurstSizeNil sets the value for MaxTscBurstSize to be an explicit nil

func (*TscQosRequirementRm) SetPriority

func (o *TscQosRequirementRm) SetPriority(v int32)

SetPriority gets a reference to the given NullableInt32 and assigns it to the Priority field.

func (*TscQosRequirementRm) SetPriorityNil

func (o *TscQosRequirementRm) SetPriorityNil()

SetPriorityNil sets the value for Priority to be an explicit nil

func (*TscQosRequirementRm) SetReq5Gsdelay

func (o *TscQosRequirementRm) SetReq5Gsdelay(v int32)

SetReq5Gsdelay gets a reference to the given NullableInt32 and assigns it to the Req5Gsdelay field.

func (*TscQosRequirementRm) SetReq5GsdelayNil

func (o *TscQosRequirementRm) SetReq5GsdelayNil()

SetReq5GsdelayNil sets the value for Req5Gsdelay to be an explicit nil

func (*TscQosRequirementRm) SetReqGbrDl

func (o *TscQosRequirementRm) SetReqGbrDl(v string)

SetReqGbrDl gets a reference to the given NullableString and assigns it to the ReqGbrDl field.

func (*TscQosRequirementRm) SetReqGbrDlNil

func (o *TscQosRequirementRm) SetReqGbrDlNil()

SetReqGbrDlNil sets the value for ReqGbrDl to be an explicit nil

func (*TscQosRequirementRm) SetReqGbrUl

func (o *TscQosRequirementRm) SetReqGbrUl(v string)

SetReqGbrUl gets a reference to the given NullableString and assigns it to the ReqGbrUl field.

func (*TscQosRequirementRm) SetReqGbrUlNil

func (o *TscQosRequirementRm) SetReqGbrUlNil()

SetReqGbrUlNil sets the value for ReqGbrUl to be an explicit nil

func (*TscQosRequirementRm) SetReqMbrDl

func (o *TscQosRequirementRm) SetReqMbrDl(v string)

SetReqMbrDl gets a reference to the given NullableString and assigns it to the ReqMbrDl field.

func (*TscQosRequirementRm) SetReqMbrDlNil

func (o *TscQosRequirementRm) SetReqMbrDlNil()

SetReqMbrDlNil sets the value for ReqMbrDl to be an explicit nil

func (*TscQosRequirementRm) SetReqMbrUl

func (o *TscQosRequirementRm) SetReqMbrUl(v string)

SetReqMbrUl gets a reference to the given NullableString and assigns it to the ReqMbrUl field.

func (*TscQosRequirementRm) SetReqMbrUlNil

func (o *TscQosRequirementRm) SetReqMbrUlNil()

SetReqMbrUlNil sets the value for ReqMbrUl to be an explicit nil

func (*TscQosRequirementRm) SetTscaiInputDl

func (o *TscQosRequirementRm) SetTscaiInputDl(v TscaiInputContainer)

SetTscaiInputDl gets a reference to the given NullableTscaiInputContainer and assigns it to the TscaiInputDl field.

func (*TscQosRequirementRm) SetTscaiInputDlNil

func (o *TscQosRequirementRm) SetTscaiInputDlNil()

SetTscaiInputDlNil sets the value for TscaiInputDl to be an explicit nil

func (*TscQosRequirementRm) SetTscaiInputUl

func (o *TscQosRequirementRm) SetTscaiInputUl(v TscaiInputContainer)

SetTscaiInputUl gets a reference to the given NullableTscaiInputContainer and assigns it to the TscaiInputUl field.

func (*TscQosRequirementRm) SetTscaiInputUlNil

func (o *TscQosRequirementRm) SetTscaiInputUlNil()

SetTscaiInputUlNil sets the value for TscaiInputUl to be an explicit nil

func (*TscQosRequirementRm) SetTscaiTimeDom

func (o *TscQosRequirementRm) SetTscaiTimeDom(v int32)

SetTscaiTimeDom gets a reference to the given NullableInt32 and assigns it to the TscaiTimeDom field.

func (*TscQosRequirementRm) SetTscaiTimeDomNil

func (o *TscQosRequirementRm) SetTscaiTimeDomNil()

SetTscaiTimeDomNil sets the value for TscaiTimeDom to be an explicit nil

func (TscQosRequirementRm) ToMap

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

func (*TscQosRequirementRm) UnsetMaxTscBurstSize

func (o *TscQosRequirementRm) UnsetMaxTscBurstSize()

UnsetMaxTscBurstSize ensures that no value is present for MaxTscBurstSize, not even an explicit nil

func (*TscQosRequirementRm) UnsetPriority

func (o *TscQosRequirementRm) UnsetPriority()

UnsetPriority ensures that no value is present for Priority, not even an explicit nil

func (*TscQosRequirementRm) UnsetReq5Gsdelay

func (o *TscQosRequirementRm) UnsetReq5Gsdelay()

UnsetReq5Gsdelay ensures that no value is present for Req5Gsdelay, not even an explicit nil

func (*TscQosRequirementRm) UnsetReqGbrDl

func (o *TscQosRequirementRm) UnsetReqGbrDl()

UnsetReqGbrDl ensures that no value is present for ReqGbrDl, not even an explicit nil

func (*TscQosRequirementRm) UnsetReqGbrUl

func (o *TscQosRequirementRm) UnsetReqGbrUl()

UnsetReqGbrUl ensures that no value is present for ReqGbrUl, not even an explicit nil

func (*TscQosRequirementRm) UnsetReqMbrDl

func (o *TscQosRequirementRm) UnsetReqMbrDl()

UnsetReqMbrDl ensures that no value is present for ReqMbrDl, not even an explicit nil

func (*TscQosRequirementRm) UnsetReqMbrUl

func (o *TscQosRequirementRm) UnsetReqMbrUl()

UnsetReqMbrUl ensures that no value is present for ReqMbrUl, not even an explicit nil

func (*TscQosRequirementRm) UnsetTscaiInputDl

func (o *TscQosRequirementRm) UnsetTscaiInputDl()

UnsetTscaiInputDl ensures that no value is present for TscaiInputDl, not even an explicit nil

func (*TscQosRequirementRm) UnsetTscaiInputUl

func (o *TscQosRequirementRm) UnsetTscaiInputUl()

UnsetTscaiInputUl ensures that no value is present for TscaiInputUl, not even an explicit nil

func (*TscQosRequirementRm) UnsetTscaiTimeDom

func (o *TscQosRequirementRm) UnsetTscaiTimeDom()

UnsetTscaiTimeDom ensures that no value is present for TscaiTimeDom, not even an explicit nil

type TscaiInputContainer

type TscaiInputContainer struct {
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	Periodicity *int32 `json:"periodicity,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	BurstArrivalTime *time.Time `json:"burstArrivalTime,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	SurTimeInNumMsg *int32 `json:"surTimeInNumMsg,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	SurTimeInTime *int32 `json:"surTimeInTime,omitempty"`
}

TscaiInputContainer Indicates TSC Traffic pattern.

func NewTscaiInputContainer

func NewTscaiInputContainer() *TscaiInputContainer

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

func NewTscaiInputContainerWithDefaults

func NewTscaiInputContainerWithDefaults() *TscaiInputContainer

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

func (*TscaiInputContainer) GetBurstArrivalTime

func (o *TscaiInputContainer) GetBurstArrivalTime() time.Time

GetBurstArrivalTime returns the BurstArrivalTime field value if set, zero value otherwise.

func (*TscaiInputContainer) GetBurstArrivalTimeOk

func (o *TscaiInputContainer) GetBurstArrivalTimeOk() (*time.Time, bool)

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

func (*TscaiInputContainer) GetPeriodicity

func (o *TscaiInputContainer) GetPeriodicity() int32

GetPeriodicity returns the Periodicity field value if set, zero value otherwise.

func (*TscaiInputContainer) GetPeriodicityOk

func (o *TscaiInputContainer) GetPeriodicityOk() (*int32, bool)

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

func (*TscaiInputContainer) GetSurTimeInNumMsg

func (o *TscaiInputContainer) GetSurTimeInNumMsg() int32

GetSurTimeInNumMsg returns the SurTimeInNumMsg field value if set, zero value otherwise.

func (*TscaiInputContainer) GetSurTimeInNumMsgOk

func (o *TscaiInputContainer) GetSurTimeInNumMsgOk() (*int32, bool)

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

func (*TscaiInputContainer) GetSurTimeInTime

func (o *TscaiInputContainer) GetSurTimeInTime() int32

GetSurTimeInTime returns the SurTimeInTime field value if set, zero value otherwise.

func (*TscaiInputContainer) GetSurTimeInTimeOk

func (o *TscaiInputContainer) GetSurTimeInTimeOk() (*int32, bool)

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

func (*TscaiInputContainer) HasBurstArrivalTime

func (o *TscaiInputContainer) HasBurstArrivalTime() bool

HasBurstArrivalTime returns a boolean if a field has been set.

func (*TscaiInputContainer) HasPeriodicity

func (o *TscaiInputContainer) HasPeriodicity() bool

HasPeriodicity returns a boolean if a field has been set.

func (*TscaiInputContainer) HasSurTimeInNumMsg

func (o *TscaiInputContainer) HasSurTimeInNumMsg() bool

HasSurTimeInNumMsg returns a boolean if a field has been set.

func (*TscaiInputContainer) HasSurTimeInTime

func (o *TscaiInputContainer) HasSurTimeInTime() bool

HasSurTimeInTime returns a boolean if a field has been set.

func (TscaiInputContainer) MarshalJSON

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

func (*TscaiInputContainer) SetBurstArrivalTime

func (o *TscaiInputContainer) SetBurstArrivalTime(v time.Time)

SetBurstArrivalTime gets a reference to the given time.Time and assigns it to the BurstArrivalTime field.

func (*TscaiInputContainer) SetPeriodicity

func (o *TscaiInputContainer) SetPeriodicity(v int32)

SetPeriodicity gets a reference to the given int32 and assigns it to the Periodicity field.

func (*TscaiInputContainer) SetSurTimeInNumMsg

func (o *TscaiInputContainer) SetSurTimeInNumMsg(v int32)

SetSurTimeInNumMsg gets a reference to the given int32 and assigns it to the SurTimeInNumMsg field.

func (*TscaiInputContainer) SetSurTimeInTime

func (o *TscaiInputContainer) SetSurTimeInTime(v int32)

SetSurTimeInTime gets a reference to the given int32 and assigns it to the SurTimeInTime field.

func (TscaiInputContainer) ToMap

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

type UsageThreshold

type UsageThreshold struct {
	// Unsigned integer identifying a period of time in units of seconds.
	Duration *int32 `json:"duration,omitempty"`
	// Unsigned integer identifying a volume in units of bytes.
	TotalVolume *int64 `json:"totalVolume,omitempty"`
	// Unsigned integer identifying a volume in units of bytes.
	DownlinkVolume *int64 `json:"downlinkVolume,omitempty"`
	// Unsigned integer identifying a volume in units of bytes.
	UplinkVolume *int64 `json:"uplinkVolume,omitempty"`
}

UsageThreshold Represents a usage threshold.

func NewUsageThreshold

func NewUsageThreshold() *UsageThreshold

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

func NewUsageThresholdWithDefaults

func NewUsageThresholdWithDefaults() *UsageThreshold

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

func (*UsageThreshold) GetDownlinkVolume

func (o *UsageThreshold) GetDownlinkVolume() int64

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

func (*UsageThreshold) GetDownlinkVolumeOk

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

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

func (*UsageThreshold) GetDuration

func (o *UsageThreshold) GetDuration() int32

GetDuration returns the Duration field value if set, zero value otherwise.

func (*UsageThreshold) GetDurationOk

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

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

func (*UsageThreshold) GetTotalVolume

func (o *UsageThreshold) GetTotalVolume() int64

GetTotalVolume returns the TotalVolume field value if set, zero value otherwise.

func (*UsageThreshold) GetTotalVolumeOk

func (o *UsageThreshold) GetTotalVolumeOk() (*int64, bool)

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

func (*UsageThreshold) GetUplinkVolume

func (o *UsageThreshold) GetUplinkVolume() int64

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

func (*UsageThreshold) GetUplinkVolumeOk

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

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

func (*UsageThreshold) HasDownlinkVolume

func (o *UsageThreshold) HasDownlinkVolume() bool

HasDownlinkVolume returns a boolean if a field has been set.

func (*UsageThreshold) HasDuration

func (o *UsageThreshold) HasDuration() bool

HasDuration returns a boolean if a field has been set.

func (*UsageThreshold) HasTotalVolume

func (o *UsageThreshold) HasTotalVolume() bool

HasTotalVolume returns a boolean if a field has been set.

func (*UsageThreshold) HasUplinkVolume

func (o *UsageThreshold) HasUplinkVolume() bool

HasUplinkVolume returns a boolean if a field has been set.

func (UsageThreshold) MarshalJSON

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

func (*UsageThreshold) SetDownlinkVolume

func (o *UsageThreshold) SetDownlinkVolume(v int64)

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

func (*UsageThreshold) SetDuration

func (o *UsageThreshold) SetDuration(v int32)

SetDuration gets a reference to the given int32 and assigns it to the Duration field.

func (*UsageThreshold) SetTotalVolume

func (o *UsageThreshold) SetTotalVolume(v int64)

SetTotalVolume gets a reference to the given int64 and assigns it to the TotalVolume field.

func (*UsageThreshold) SetUplinkVolume

func (o *UsageThreshold) SetUplinkVolume(v int64)

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

func (UsageThreshold) ToMap

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

type UsageThresholdRm

type UsageThresholdRm struct {
	// Unsigned integer identifying a period of time in units of seconds with \"nullable=true\" property.
	Duration NullableInt32 `json:"duration,omitempty"`
	// Unsigned integer identifying a volume in units of bytes with \"nullable=true\" property.
	TotalVolume NullableInt64 `json:"totalVolume,omitempty"`
	// Unsigned integer identifying a volume in units of bytes with \"nullable=true\" property.
	DownlinkVolume NullableInt64 `json:"downlinkVolume,omitempty"`
	// Unsigned integer identifying a volume in units of bytes with \"nullable=true\" property.
	UplinkVolume NullableInt64 `json:"uplinkVolume,omitempty"`
}

UsageThresholdRm Represents the same as the UsageThreshold data type but with the nullable:true property.

func NewUsageThresholdRm

func NewUsageThresholdRm() *UsageThresholdRm

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

func NewUsageThresholdRmWithDefaults

func NewUsageThresholdRmWithDefaults() *UsageThresholdRm

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

func (*UsageThresholdRm) GetDownlinkVolume

func (o *UsageThresholdRm) GetDownlinkVolume() int64

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

func (*UsageThresholdRm) GetDownlinkVolumeOk

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

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

func (*UsageThresholdRm) GetDuration

func (o *UsageThresholdRm) GetDuration() int32

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

func (*UsageThresholdRm) GetDurationOk

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

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

func (*UsageThresholdRm) GetTotalVolume

func (o *UsageThresholdRm) GetTotalVolume() int64

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

func (*UsageThresholdRm) GetTotalVolumeOk

func (o *UsageThresholdRm) GetTotalVolumeOk() (*int64, bool)

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

func (*UsageThresholdRm) GetUplinkVolume

func (o *UsageThresholdRm) GetUplinkVolume() int64

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

func (*UsageThresholdRm) GetUplinkVolumeOk

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

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

func (*UsageThresholdRm) HasDownlinkVolume

func (o *UsageThresholdRm) HasDownlinkVolume() bool

HasDownlinkVolume returns a boolean if a field has been set.

func (*UsageThresholdRm) HasDuration

func (o *UsageThresholdRm) HasDuration() bool

HasDuration returns a boolean if a field has been set.

func (*UsageThresholdRm) HasTotalVolume

func (o *UsageThresholdRm) HasTotalVolume() bool

HasTotalVolume returns a boolean if a field has been set.

func (*UsageThresholdRm) HasUplinkVolume

func (o *UsageThresholdRm) HasUplinkVolume() bool

HasUplinkVolume returns a boolean if a field has been set.

func (UsageThresholdRm) MarshalJSON

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

func (*UsageThresholdRm) SetDownlinkVolume

func (o *UsageThresholdRm) SetDownlinkVolume(v int64)

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

func (*UsageThresholdRm) SetDownlinkVolumeNil

func (o *UsageThresholdRm) SetDownlinkVolumeNil()

SetDownlinkVolumeNil sets the value for DownlinkVolume to be an explicit nil

func (*UsageThresholdRm) SetDuration

func (o *UsageThresholdRm) SetDuration(v int32)

SetDuration gets a reference to the given NullableInt32 and assigns it to the Duration field.

func (*UsageThresholdRm) SetDurationNil

func (o *UsageThresholdRm) SetDurationNil()

SetDurationNil sets the value for Duration to be an explicit nil

func (*UsageThresholdRm) SetTotalVolume

func (o *UsageThresholdRm) SetTotalVolume(v int64)

SetTotalVolume gets a reference to the given NullableInt64 and assigns it to the TotalVolume field.

func (*UsageThresholdRm) SetTotalVolumeNil

func (o *UsageThresholdRm) SetTotalVolumeNil()

SetTotalVolumeNil sets the value for TotalVolume to be an explicit nil

func (*UsageThresholdRm) SetUplinkVolume

func (o *UsageThresholdRm) SetUplinkVolume(v int64)

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

func (*UsageThresholdRm) SetUplinkVolumeNil

func (o *UsageThresholdRm) SetUplinkVolumeNil()

SetUplinkVolumeNil sets the value for UplinkVolume to be an explicit nil

func (UsageThresholdRm) ToMap

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

func (*UsageThresholdRm) UnsetDownlinkVolume

func (o *UsageThresholdRm) UnsetDownlinkVolume()

UnsetDownlinkVolume ensures that no value is present for DownlinkVolume, not even an explicit nil

func (*UsageThresholdRm) UnsetDuration

func (o *UsageThresholdRm) UnsetDuration()

UnsetDuration ensures that no value is present for Duration, not even an explicit nil

func (*UsageThresholdRm) UnsetTotalVolume

func (o *UsageThresholdRm) UnsetTotalVolume()

UnsetTotalVolume ensures that no value is present for TotalVolume, not even an explicit nil

func (*UsageThresholdRm) UnsetUplinkVolume

func (o *UsageThresholdRm) UnsetUplinkVolume()

UnsetUplinkVolume ensures that no value is present for UplinkVolume, not even an explicit nil

type UserPlaneEvent

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

UserPlaneEvent Possible values are - SESSION_TERMINATION: Indicates that Rx session is terminated. - LOSS_OF_BEARER : Indicates a loss of a bearer. - RECOVERY_OF_BEARER: Indicates a recovery of a bearer. - RELEASE_OF_BEARER: Indicates a release of a bearer. - USAGE_REPORT: Indicates the usage report event. - FAILED_RESOURCES_ALLOCATION: Indicates the resource allocation is failed. - QOS_GUARANTEED: The QoS targets of one or more SDFs are guaranteed again. - QOS_NOT_GUARANTEED: The QoS targets of one or more SDFs are not being guaranteed. - QOS_MONITORING: Indicates a QoS monitoring event. - SUCCESSFUL_RESOURCES_ALLOCATION: Indicates the resource allocation is successful. - ACCESS_TYPE_CHANGE: Indicates an Access type change. - PLMN_CHG: Indicates a PLMN change.

func (*UserPlaneEvent) MarshalJSON

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

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

func (*UserPlaneEvent) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type UserPlaneEventReport

type UserPlaneEventReport struct {
	Event            UserPlaneEvent    `json:"event"`
	AccumulatedUsage *AccumulatedUsage `json:"accumulatedUsage,omitempty"`
	// Identifies the affected flows that were sent during event subscription. It might be omitted when the reported event applies to all the flows sent during the subscription.
	FlowIds []int32 `json:"flowIds,omitempty"`
	// The currently applied QoS reference. Applicable for event QOS_NOT_GUARANTEED or SUCCESSFUL_RESOURCES_ALLOCATION.
	AppliedQosRef *string    `json:"appliedQosRef,omitempty"`
	PlmnId        *PlmnIdNid `json:"plmnId,omitempty"`
	// Contains the QoS Monitoring Reporting information
	QosMonReports []QosMonitoringReport `json:"qosMonReports,omitempty"`
	RatType       *RatType              `json:"ratType,omitempty"`
}

UserPlaneEventReport Represents an event report for user plane.

func NewUserPlaneEventReport

func NewUserPlaneEventReport(event UserPlaneEvent) *UserPlaneEventReport

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

func NewUserPlaneEventReportWithDefaults

func NewUserPlaneEventReportWithDefaults() *UserPlaneEventReport

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

func (*UserPlaneEventReport) GetAccumulatedUsage

func (o *UserPlaneEventReport) GetAccumulatedUsage() AccumulatedUsage

GetAccumulatedUsage returns the AccumulatedUsage field value if set, zero value otherwise.

func (*UserPlaneEventReport) GetAccumulatedUsageOk

func (o *UserPlaneEventReport) GetAccumulatedUsageOk() (*AccumulatedUsage, bool)

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

func (*UserPlaneEventReport) GetAppliedQosRef

func (o *UserPlaneEventReport) GetAppliedQosRef() string

GetAppliedQosRef returns the AppliedQosRef field value if set, zero value otherwise.

func (*UserPlaneEventReport) GetAppliedQosRefOk

func (o *UserPlaneEventReport) GetAppliedQosRefOk() (*string, bool)

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

func (*UserPlaneEventReport) GetEvent

func (o *UserPlaneEventReport) GetEvent() UserPlaneEvent

GetEvent returns the Event field value

func (*UserPlaneEventReport) GetEventOk

func (o *UserPlaneEventReport) GetEventOk() (*UserPlaneEvent, bool)

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

func (*UserPlaneEventReport) GetFlowIds

func (o *UserPlaneEventReport) GetFlowIds() []int32

GetFlowIds returns the FlowIds field value if set, zero value otherwise.

func (*UserPlaneEventReport) GetFlowIdsOk

func (o *UserPlaneEventReport) GetFlowIdsOk() ([]int32, bool)

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

func (*UserPlaneEventReport) GetPlmnId

func (o *UserPlaneEventReport) GetPlmnId() PlmnIdNid

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

func (*UserPlaneEventReport) GetPlmnIdOk

func (o *UserPlaneEventReport) GetPlmnIdOk() (*PlmnIdNid, bool)

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

func (*UserPlaneEventReport) GetQosMonReports

func (o *UserPlaneEventReport) GetQosMonReports() []QosMonitoringReport

GetQosMonReports returns the QosMonReports field value if set, zero value otherwise.

func (*UserPlaneEventReport) GetQosMonReportsOk

func (o *UserPlaneEventReport) GetQosMonReportsOk() ([]QosMonitoringReport, bool)

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

func (*UserPlaneEventReport) GetRatType

func (o *UserPlaneEventReport) GetRatType() RatType

GetRatType returns the RatType field value if set, zero value otherwise.

func (*UserPlaneEventReport) GetRatTypeOk

func (o *UserPlaneEventReport) GetRatTypeOk() (*RatType, bool)

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

func (*UserPlaneEventReport) HasAccumulatedUsage

func (o *UserPlaneEventReport) HasAccumulatedUsage() bool

HasAccumulatedUsage returns a boolean if a field has been set.

func (*UserPlaneEventReport) HasAppliedQosRef

func (o *UserPlaneEventReport) HasAppliedQosRef() bool

HasAppliedQosRef returns a boolean if a field has been set.

func (*UserPlaneEventReport) HasFlowIds

func (o *UserPlaneEventReport) HasFlowIds() bool

HasFlowIds returns a boolean if a field has been set.

func (*UserPlaneEventReport) HasPlmnId

func (o *UserPlaneEventReport) HasPlmnId() bool

HasPlmnId returns a boolean if a field has been set.

func (*UserPlaneEventReport) HasQosMonReports

func (o *UserPlaneEventReport) HasQosMonReports() bool

HasQosMonReports returns a boolean if a field has been set.

func (*UserPlaneEventReport) HasRatType

func (o *UserPlaneEventReport) HasRatType() bool

HasRatType returns a boolean if a field has been set.

func (UserPlaneEventReport) MarshalJSON

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

func (*UserPlaneEventReport) SetAccumulatedUsage

func (o *UserPlaneEventReport) SetAccumulatedUsage(v AccumulatedUsage)

SetAccumulatedUsage gets a reference to the given AccumulatedUsage and assigns it to the AccumulatedUsage field.

func (*UserPlaneEventReport) SetAppliedQosRef

func (o *UserPlaneEventReport) SetAppliedQosRef(v string)

SetAppliedQosRef gets a reference to the given string and assigns it to the AppliedQosRef field.

func (*UserPlaneEventReport) SetEvent

func (o *UserPlaneEventReport) SetEvent(v UserPlaneEvent)

SetEvent sets field value

func (*UserPlaneEventReport) SetFlowIds

func (o *UserPlaneEventReport) SetFlowIds(v []int32)

SetFlowIds gets a reference to the given []int32 and assigns it to the FlowIds field.

func (*UserPlaneEventReport) SetPlmnId

func (o *UserPlaneEventReport) SetPlmnId(v PlmnIdNid)

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

func (*UserPlaneEventReport) SetQosMonReports

func (o *UserPlaneEventReport) SetQosMonReports(v []QosMonitoringReport)

SetQosMonReports gets a reference to the given []QosMonitoringReport and assigns it to the QosMonReports field.

func (*UserPlaneEventReport) SetRatType

func (o *UserPlaneEventReport) SetRatType(v RatType)

SetRatType gets a reference to the given RatType and assigns it to the RatType field.

func (UserPlaneEventReport) ToMap

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

func (*UserPlaneEventReport) UnmarshalJSON

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

type UserPlaneNotificationData

type UserPlaneNotificationData struct {
	// string formatted according to IETF RFC 3986 identifying a referenced resource.
	Transaction string `json:"transaction"`
	// Contains the reported event and applicable information
	EventReports []UserPlaneEventReport `json:"eventReports"`
}

UserPlaneNotificationData Represents the parameters to be conveyed in a user plane event(s) notification.

func NewUserPlaneNotificationData

func NewUserPlaneNotificationData(transaction string, eventReports []UserPlaneEventReport) *UserPlaneNotificationData

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

func NewUserPlaneNotificationDataWithDefaults

func NewUserPlaneNotificationDataWithDefaults() *UserPlaneNotificationData

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

func (*UserPlaneNotificationData) GetEventReports

func (o *UserPlaneNotificationData) GetEventReports() []UserPlaneEventReport

GetEventReports returns the EventReports field value

func (*UserPlaneNotificationData) GetEventReportsOk

func (o *UserPlaneNotificationData) GetEventReportsOk() ([]UserPlaneEventReport, bool)

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

func (*UserPlaneNotificationData) GetTransaction

func (o *UserPlaneNotificationData) GetTransaction() string

GetTransaction returns the Transaction field value

func (*UserPlaneNotificationData) GetTransactionOk

func (o *UserPlaneNotificationData) GetTransactionOk() (*string, bool)

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

func (UserPlaneNotificationData) MarshalJSON

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

func (*UserPlaneNotificationData) SetEventReports

func (o *UserPlaneNotificationData) SetEventReports(v []UserPlaneEventReport)

SetEventReports sets field value

func (*UserPlaneNotificationData) SetTransaction

func (o *UserPlaneNotificationData) SetTransaction(v string)

SetTransaction sets field value

func (UserPlaneNotificationData) ToMap

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

func (*UserPlaneNotificationData) UnmarshalJSON

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

type WebsockNotifConfig

type WebsockNotifConfig struct {
	// string formatted according to IETF RFC 3986 identifying a referenced resource.
	WebsocketUri *string `json:"websocketUri,omitempty"`
	// Set by the SCS/AS to indicate that the Websocket delivery is requested.
	RequestWebsocketUri *bool `json:"requestWebsocketUri,omitempty"`
}

WebsockNotifConfig Represents the configuration information for the delivery of notifications over Websockets.

func NewWebsockNotifConfig

func NewWebsockNotifConfig() *WebsockNotifConfig

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

func NewWebsockNotifConfigWithDefaults

func NewWebsockNotifConfigWithDefaults() *WebsockNotifConfig

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

func (*WebsockNotifConfig) GetRequestWebsocketUri

func (o *WebsockNotifConfig) GetRequestWebsocketUri() bool

GetRequestWebsocketUri returns the RequestWebsocketUri field value if set, zero value otherwise.

func (*WebsockNotifConfig) GetRequestWebsocketUriOk

func (o *WebsockNotifConfig) GetRequestWebsocketUriOk() (*bool, bool)

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

func (*WebsockNotifConfig) GetWebsocketUri

func (o *WebsockNotifConfig) GetWebsocketUri() string

GetWebsocketUri returns the WebsocketUri field value if set, zero value otherwise.

func (*WebsockNotifConfig) GetWebsocketUriOk

func (o *WebsockNotifConfig) GetWebsocketUriOk() (*string, bool)

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

func (*WebsockNotifConfig) HasRequestWebsocketUri

func (o *WebsockNotifConfig) HasRequestWebsocketUri() bool

HasRequestWebsocketUri returns a boolean if a field has been set.

func (*WebsockNotifConfig) HasWebsocketUri

func (o *WebsockNotifConfig) HasWebsocketUri() bool

HasWebsocketUri returns a boolean if a field has been set.

func (WebsockNotifConfig) MarshalJSON

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

func (*WebsockNotifConfig) SetRequestWebsocketUri

func (o *WebsockNotifConfig) SetRequestWebsocketUri(v bool)

SetRequestWebsocketUri gets a reference to the given bool and assigns it to the RequestWebsocketUri field.

func (*WebsockNotifConfig) SetWebsocketUri

func (o *WebsockNotifConfig) SetWebsocketUri(v string)

SetWebsocketUri gets a reference to the given string and assigns it to the WebsocketUri field.

func (WebsockNotifConfig) ToMap

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

Jump to

Keyboard shortcuts

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