assessionwithqos

package
v0.0.0-...-13db35b Latest Latest
Warning

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

Go to latest
Published: Feb 22, 2023 License: Apache-2.0 Imports: 25 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	// ContextOAuth2 takes an oauth2.TokenSource as authentication for the request.
	ContextOAuth2 = contextKey("token")

	// ContextBasicAuth takes BasicAuth as authentication for the request.
	ContextBasicAuth = contextKey("basic")

	// ContextAccessToken takes a string oauth2 access token as authentication for the request.
	ContextAccessToken = contextKey("accesstoken")

	// ContextAPIKeys takes a string apikey as authentication for the request
	ContextAPIKeys = contextKey("apiKeys")

	// ContextHttpSignatureAuth takes HttpSignatureAuth as authentication for the request.
	ContextHttpSignatureAuth = contextKey("httpsignature")

	// 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 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 {
	AsSessionWithQoSAPISCSASLevelGETOperationApi AsSessionWithQoSAPISCSASLevelGETOperationApi

	AsSessionWithQoSAPISubscriptionLevelDELETEOperationApi AsSessionWithQoSAPISubscriptionLevelDELETEOperationApi

	AsSessionWithQoSAPISubscriptionLevelGETOperationApi AsSessionWithQoSAPISubscriptionLevelGETOperationApi

	AsSessionWithQoSAPISubscriptionLevelPATCHOperationApi AsSessionWithQoSAPISubscriptionLevelPATCHOperationApi

	AsSessionWithQoSAPISubscriptionLevelPOSTOperationApi AsSessionWithQoSAPISubscriptionLevelPOSTOperationApi

	AsSessionWithQoSAPISubscriptionLevelPUTOperationApi AsSessionWithQoSAPISubscriptionLevelPUTOperationApi
	// contains filtered or unexported fields
}

APIClient manages communication with the 3gpp-as-session-with-qos API v1.1.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 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"`
	AdditionalProperties map[string]interface{}
}

AccumulatedUsage struct for AccumulatedUsage

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

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

type ApiScsAsIdSubscriptionsGetRequest

type ApiScsAsIdSubscriptionsGetRequest struct {
	ApiService AsSessionWithQoSAPISCSASLevelGETOperationApi
	// contains filtered or unexported fields
}

func (ApiScsAsIdSubscriptionsGetRequest) Execute

type ApiScsAsIdSubscriptionsPostRequest

type ApiScsAsIdSubscriptionsPostRequest struct {
	ApiService AsSessionWithQoSAPISubscriptionLevelPOSTOperationApi
	// contains filtered or unexported fields
}

func (ApiScsAsIdSubscriptionsPostRequest) AsSessionWithQoSSubscription

func (r ApiScsAsIdSubscriptionsPostRequest) AsSessionWithQoSSubscription(asSessionWithQoSSubscription AsSessionWithQoSSubscription) ApiScsAsIdSubscriptionsPostRequest

Request to create a new subscription resource

func (ApiScsAsIdSubscriptionsPostRequest) Execute

type ApiScsAsIdSubscriptionsSubscriptionIdDeleteRequest

type ApiScsAsIdSubscriptionsSubscriptionIdDeleteRequest struct {
	ApiService AsSessionWithQoSAPISubscriptionLevelDELETEOperationApi
	// contains filtered or unexported fields
}

func (ApiScsAsIdSubscriptionsSubscriptionIdDeleteRequest) Execute

type ApiScsAsIdSubscriptionsSubscriptionIdGetRequest

type ApiScsAsIdSubscriptionsSubscriptionIdGetRequest struct {
	ApiService AsSessionWithQoSAPISubscriptionLevelGETOperationApi
	// contains filtered or unexported fields
}

func (ApiScsAsIdSubscriptionsSubscriptionIdGetRequest) Execute

type ApiScsAsIdSubscriptionsSubscriptionIdPatchRequest

type ApiScsAsIdSubscriptionsSubscriptionIdPatchRequest struct {
	ApiService AsSessionWithQoSAPISubscriptionLevelPATCHOperationApi
	// contains filtered or unexported fields
}

func (ApiScsAsIdSubscriptionsSubscriptionIdPatchRequest) AsSessionWithQoSSubscriptionPatch

func (ApiScsAsIdSubscriptionsSubscriptionIdPatchRequest) Execute

type ApiScsAsIdSubscriptionsSubscriptionIdPutRequest

type ApiScsAsIdSubscriptionsSubscriptionIdPutRequest struct {
	ApiService AsSessionWithQoSAPISubscriptionLevelPUTOperationApi
	// contains filtered or unexported fields
}

func (ApiScsAsIdSubscriptionsSubscriptionIdPutRequest) AsSessionWithQoSSubscription

Parameters to update/replace the existing subscription

func (ApiScsAsIdSubscriptionsSubscriptionIdPutRequest) Execute

type AsSessionWithQoSAPISCSASLevelGETOperationApi

type AsSessionWithQoSAPISCSASLevelGETOperationApi interface {

	/*
		ScsAsIdSubscriptionsGet read all of the 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 ApiScsAsIdSubscriptionsGetRequest
	*/
	ScsAsIdSubscriptionsGet(ctx _context.Context, scsAsId string) ApiScsAsIdSubscriptionsGetRequest

	// ScsAsIdSubscriptionsGetExecute executes the request
	//  @return []AsSessionWithQoSSubscription
	ScsAsIdSubscriptionsGetExecute(r ApiScsAsIdSubscriptionsGetRequest) ([]AsSessionWithQoSSubscription, *_nethttp.Response, error)
}

type AsSessionWithQoSAPISCSASLevelGETOperationApiService

type AsSessionWithQoSAPISCSASLevelGETOperationApiService service

AsSessionWithQoSAPISCSASLevelGETOperationApiService AsSessionWithQoSAPISCSASLevelGETOperationApi service

func (*AsSessionWithQoSAPISCSASLevelGETOperationApiService) ScsAsIdSubscriptionsGet

ScsAsIdSubscriptionsGet read all of the 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 ApiScsAsIdSubscriptionsGetRequest

func (*AsSessionWithQoSAPISCSASLevelGETOperationApiService) ScsAsIdSubscriptionsGetExecute

Execute executes the request

@return []AsSessionWithQoSSubscription

type AsSessionWithQoSAPISubscriptionLevelDELETEOperationApi

type AsSessionWithQoSAPISubscriptionLevelDELETEOperationApi interface {

	/*
		ScsAsIdSubscriptionsSubscriptionIdDelete 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 ApiScsAsIdSubscriptionsSubscriptionIdDeleteRequest
	*/
	ScsAsIdSubscriptionsSubscriptionIdDelete(ctx _context.Context, scsAsId string, subscriptionId string) ApiScsAsIdSubscriptionsSubscriptionIdDeleteRequest

	// ScsAsIdSubscriptionsSubscriptionIdDeleteExecute executes the request
	//  @return UserPlaneNotificationData
	ScsAsIdSubscriptionsSubscriptionIdDeleteExecute(r ApiScsAsIdSubscriptionsSubscriptionIdDeleteRequest) (UserPlaneNotificationData, *_nethttp.Response, error)
}

type AsSessionWithQoSAPISubscriptionLevelDELETEOperationApiService

type AsSessionWithQoSAPISubscriptionLevelDELETEOperationApiService service

AsSessionWithQoSAPISubscriptionLevelDELETEOperationApiService AsSessionWithQoSAPISubscriptionLevelDELETEOperationApi service

func (*AsSessionWithQoSAPISubscriptionLevelDELETEOperationApiService) ScsAsIdSubscriptionsSubscriptionIdDelete

ScsAsIdSubscriptionsSubscriptionIdDelete 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 ApiScsAsIdSubscriptionsSubscriptionIdDeleteRequest

func (*AsSessionWithQoSAPISubscriptionLevelDELETEOperationApiService) ScsAsIdSubscriptionsSubscriptionIdDeleteExecute

Execute executes the request

@return UserPlaneNotificationData

type AsSessionWithQoSAPISubscriptionLevelGETOperationApi

type AsSessionWithQoSAPISubscriptionLevelGETOperationApi interface {

	/*
		ScsAsIdSubscriptionsSubscriptionIdGet 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 ApiScsAsIdSubscriptionsSubscriptionIdGetRequest
	*/
	ScsAsIdSubscriptionsSubscriptionIdGet(ctx _context.Context, scsAsId string, subscriptionId string) ApiScsAsIdSubscriptionsSubscriptionIdGetRequest

	// ScsAsIdSubscriptionsSubscriptionIdGetExecute executes the request
	//  @return AsSessionWithQoSSubscription
	ScsAsIdSubscriptionsSubscriptionIdGetExecute(r ApiScsAsIdSubscriptionsSubscriptionIdGetRequest) (AsSessionWithQoSSubscription, *_nethttp.Response, error)
}

type AsSessionWithQoSAPISubscriptionLevelGETOperationApiService

type AsSessionWithQoSAPISubscriptionLevelGETOperationApiService service

AsSessionWithQoSAPISubscriptionLevelGETOperationApiService AsSessionWithQoSAPISubscriptionLevelGETOperationApi service

func (*AsSessionWithQoSAPISubscriptionLevelGETOperationApiService) ScsAsIdSubscriptionsSubscriptionIdGet

ScsAsIdSubscriptionsSubscriptionIdGet 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 ApiScsAsIdSubscriptionsSubscriptionIdGetRequest

func (*AsSessionWithQoSAPISubscriptionLevelGETOperationApiService) ScsAsIdSubscriptionsSubscriptionIdGetExecute

Execute executes the request

@return AsSessionWithQoSSubscription

type AsSessionWithQoSAPISubscriptionLevelPATCHOperationApi

type AsSessionWithQoSAPISubscriptionLevelPATCHOperationApi interface {

	/*
		ScsAsIdSubscriptionsSubscriptionIdPatch 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 ApiScsAsIdSubscriptionsSubscriptionIdPatchRequest
	*/
	ScsAsIdSubscriptionsSubscriptionIdPatch(ctx _context.Context, scsAsId string, subscriptionId string) ApiScsAsIdSubscriptionsSubscriptionIdPatchRequest

	// ScsAsIdSubscriptionsSubscriptionIdPatchExecute executes the request
	//  @return AsSessionWithQoSSubscription
	ScsAsIdSubscriptionsSubscriptionIdPatchExecute(r ApiScsAsIdSubscriptionsSubscriptionIdPatchRequest) (AsSessionWithQoSSubscription, *_nethttp.Response, error)
}

type AsSessionWithQoSAPISubscriptionLevelPATCHOperationApiService

type AsSessionWithQoSAPISubscriptionLevelPATCHOperationApiService service

AsSessionWithQoSAPISubscriptionLevelPATCHOperationApiService AsSessionWithQoSAPISubscriptionLevelPATCHOperationApi service

func (*AsSessionWithQoSAPISubscriptionLevelPATCHOperationApiService) ScsAsIdSubscriptionsSubscriptionIdPatch

ScsAsIdSubscriptionsSubscriptionIdPatch 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 ApiScsAsIdSubscriptionsSubscriptionIdPatchRequest

func (*AsSessionWithQoSAPISubscriptionLevelPATCHOperationApiService) ScsAsIdSubscriptionsSubscriptionIdPatchExecute

Execute executes the request

@return AsSessionWithQoSSubscription

type AsSessionWithQoSAPISubscriptionLevelPOSTOperationApi

type AsSessionWithQoSAPISubscriptionLevelPOSTOperationApi interface {

	/*
		ScsAsIdSubscriptionsPost 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 ApiScsAsIdSubscriptionsPostRequest
	*/
	ScsAsIdSubscriptionsPost(ctx _context.Context, scsAsId string) ApiScsAsIdSubscriptionsPostRequest

	// ScsAsIdSubscriptionsPostExecute executes the request
	//  @return AsSessionWithQoSSubscription
	ScsAsIdSubscriptionsPostExecute(r ApiScsAsIdSubscriptionsPostRequest) (AsSessionWithQoSSubscription, *_nethttp.Response, error)
}

type AsSessionWithQoSAPISubscriptionLevelPOSTOperationApiService

type AsSessionWithQoSAPISubscriptionLevelPOSTOperationApiService service

AsSessionWithQoSAPISubscriptionLevelPOSTOperationApiService AsSessionWithQoSAPISubscriptionLevelPOSTOperationApi service

func (*AsSessionWithQoSAPISubscriptionLevelPOSTOperationApiService) ScsAsIdSubscriptionsPost

ScsAsIdSubscriptionsPost 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 ApiScsAsIdSubscriptionsPostRequest

func (*AsSessionWithQoSAPISubscriptionLevelPOSTOperationApiService) ScsAsIdSubscriptionsPostExecute

Execute executes the request

@return AsSessionWithQoSSubscription

type AsSessionWithQoSAPISubscriptionLevelPUTOperationApi

type AsSessionWithQoSAPISubscriptionLevelPUTOperationApi interface {

	/*
		ScsAsIdSubscriptionsSubscriptionIdPut 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 ApiScsAsIdSubscriptionsSubscriptionIdPutRequest
	*/
	ScsAsIdSubscriptionsSubscriptionIdPut(ctx _context.Context, scsAsId string, subscriptionId string) ApiScsAsIdSubscriptionsSubscriptionIdPutRequest

	// ScsAsIdSubscriptionsSubscriptionIdPutExecute executes the request
	//  @return AsSessionWithQoSSubscription
	ScsAsIdSubscriptionsSubscriptionIdPutExecute(r ApiScsAsIdSubscriptionsSubscriptionIdPutRequest) (AsSessionWithQoSSubscription, *_nethttp.Response, error)
}

type AsSessionWithQoSAPISubscriptionLevelPUTOperationApiService

type AsSessionWithQoSAPISubscriptionLevelPUTOperationApiService service

AsSessionWithQoSAPISubscriptionLevelPUTOperationApiService AsSessionWithQoSAPISubscriptionLevelPUTOperationApi service

func (*AsSessionWithQoSAPISubscriptionLevelPUTOperationApiService) ScsAsIdSubscriptionsSubscriptionIdPut

ScsAsIdSubscriptionsSubscriptionIdPut 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 ApiScsAsIdSubscriptionsSubscriptionIdPutRequest

func (*AsSessionWithQoSAPISubscriptionLevelPUTOperationApiService) ScsAsIdSubscriptionsSubscriptionIdPutExecute

Execute executes the request

@return AsSessionWithQoSSubscription

type AsSessionWithQoSSubscription

type AsSessionWithQoSSubscription struct {
	// string formatted according to IETF RFC 3986 identifying a referenced resource.
	Self              *string `json:"self,omitempty"`
	SupportedFeatures *string `json:"supportedFeatures,omitempty"`
	// string formatted according to IETF RFC 3986 identifying a referenced resource.
	NotificationDestination string `json:"notificationDestination"`
	// Describe the data flow which requires QoS.
	FlowInfo *[]FlowInfo `json:"flowInfo,omitempty"`
	// Identifies Ethernet packet flows.
	EthFlowInfo *[]EthFlowDescription `json:"ethFlowInfo,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"`
	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"`
	MacAddr        *string                   `json:"macAddr,omitempty"`
	UsageThreshold *UsageThreshold           `json:"usageThreshold,omitempty"`
	SponsorInfo    *SponsorInformation       `json:"sponsorInfo,omitempty"`
	QosMonInfo     *QosMonitoringInformation `json:"qosMonInfo,omitempty"`
	// Set to true by the SCS/AS to request the SCEF to send a test notification as defined in subclause 5.2.5.3. Set to false or omitted otherwise.
	RequestTestNotification *bool               `json:"requestTestNotification,omitempty"`
	WebsockNotifConfig      *WebsockNotifConfig `json:"websockNotifConfig,omitempty"`
	AdditionalProperties    map[string]interface{}
}

AsSessionWithQoSSubscription struct for AsSessionWithQoSSubscription

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

func (o *AsSessionWithQoSSubscription) HasDisUeNotif() bool

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

func (o *AsSessionWithQoSSubscription) SetDisUeNotif(v bool)

SetDisUeNotif gets a reference to the given bool and assigns it to the DisUeNotif 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) 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) 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) 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) UnmarshalJSON

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

type AsSessionWithQoSSubscriptionPatch

type AsSessionWithQoSSubscriptionPatch struct {
	// Describe the data flow which requires QoS.
	FlowInfo *[]FlowInfo `json:"flowInfo,omitempty"`
	// Identifies Ethernet packet flows.
	EthFlowInfo *[]EthFlowDescription `json:"ethFlowInfo,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"`
	DisUeNotif           *bool                       `json:"disUeNotif,omitempty"`
	UsageThreshold       NullableUsageThresholdRm    `json:"usageThreshold,omitempty"`
	QosMonInfo           *QosMonitoringInformationRm `json:"qosMonInfo,omitempty"`
	AdditionalProperties map[string]interface{}
}

AsSessionWithQoSSubscriptionPatch struct for AsSessionWithQoSSubscriptionPatch

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

func (o *AsSessionWithQoSSubscriptionPatch) HasDisUeNotif() bool

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

func (o *AsSessionWithQoSSubscriptionPatch) HasFlowInfo() bool

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

func (o *AsSessionWithQoSSubscriptionPatch) SetDisUeNotif(v bool)

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

func (*AsSessionWithQoSSubscriptionPatch) SetEthFlowInfo

SetEthFlowInfo gets a reference to the given []EthFlowDescription and assigns it to the EthFlowInfo 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) 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) 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) UnmarshalJSON

func (o *AsSessionWithQoSSubscriptionPatch) UnmarshalJSON(bytes []byte) (err 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 {
	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"`
	SourceMacAddr        *string        `json:"sourceMacAddr,omitempty"`
	VlanTags             *[]string      `json:"vlanTags,omitempty"`
	SrcMacAddrEnd        *string        `json:"srcMacAddrEnd,omitempty"`
	DestMacAddrEnd       *string        `json:"destMacAddrEnd,omitempty"`
	AdditionalProperties map[string]interface{}
}

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

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

type FlowDirection

type FlowDirection struct {
	FlowDirectionAnyOf *FlowDirectionAnyOf
	// 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 FlowDirectionAnyOf

type FlowDirectionAnyOf string

FlowDirectionAnyOf the model 'FlowDirectionAnyOf'

const (
	DOWNLINK      FlowDirectionAnyOf = "DOWNLINK"
	UPLINK        FlowDirectionAnyOf = "UPLINK"
	BIDIRECTIONAL FlowDirectionAnyOf = "BIDIRECTIONAL"
	UNSPECIFIED   FlowDirectionAnyOf = "UNSPECIFIED"
)

List of FlowDirection_anyOf

func NewFlowDirectionAnyOfFromValue

func NewFlowDirectionAnyOfFromValue(v string) (*FlowDirectionAnyOf, error)

NewFlowDirectionAnyOfFromValue returns a pointer to a valid FlowDirectionAnyOf for the value passed as argument, or an error if the value passed is not allowed by the enum

func (FlowDirectionAnyOf) IsValid

func (v FlowDirectionAnyOf) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (FlowDirectionAnyOf) Ptr

Ptr returns reference to FlowDirection_anyOf value

func (*FlowDirectionAnyOf) UnmarshalJSON

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

type FlowInfo

type FlowInfo struct {
	// Indicates the IP flow.
	FlowId int32 `json:"flowId"`
	// Indicates the packet filters of the IP flow. Refer to subclause 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"`
	AdditionalProperties map[string]interface{}
}

FlowInfo struct for FlowInfo

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) 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 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"`
	AdditionalProperties map[string]interface{}
}

InvalidParam struct for InvalidParam

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

func (o *InvalidParam) UnmarshalJSON(bytes []byte) (err 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 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 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 NullableFlowDirectionAnyOf

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

func NewNullableFlowDirectionAnyOf

func NewNullableFlowDirectionAnyOf(val *FlowDirectionAnyOf) *NullableFlowDirectionAnyOf

func (NullableFlowDirectionAnyOf) Get

func (NullableFlowDirectionAnyOf) IsSet

func (v NullableFlowDirectionAnyOf) IsSet() bool

func (NullableFlowDirectionAnyOf) MarshalJSON

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

func (*NullableFlowDirectionAnyOf) Set

func (*NullableFlowDirectionAnyOf) UnmarshalJSON

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

func (*NullableFlowDirectionAnyOf) Unset

func (v *NullableFlowDirectionAnyOf) 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 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 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 NullableReportingFrequencyAnyOf

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

func (NullableReportingFrequencyAnyOf) Get

func (NullableReportingFrequencyAnyOf) IsSet

func (NullableReportingFrequencyAnyOf) MarshalJSON

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

func (*NullableReportingFrequencyAnyOf) Set

func (*NullableReportingFrequencyAnyOf) UnmarshalJSON

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

func (*NullableReportingFrequencyAnyOf) 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 NullableRequestedQosMonitoringParameterAnyOf

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

func (NullableRequestedQosMonitoringParameterAnyOf) Get

func (NullableRequestedQosMonitoringParameterAnyOf) IsSet

func (NullableRequestedQosMonitoringParameterAnyOf) MarshalJSON

func (*NullableRequestedQosMonitoringParameterAnyOf) Set

func (*NullableRequestedQosMonitoringParameterAnyOf) UnmarshalJSON

func (*NullableRequestedQosMonitoringParameterAnyOf) 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 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
}

// Unmarshal JSON data into any of the pointers in the struct

func (dst *UserPlaneEvent) UnmarshalJSON(data []byte) error {
	var err error
	// try to unmarshal JSON data into UserPlaneEventAnyOf
	err = json.Unmarshal(data, &dst.UserPlaneEventAnyOf);
	if err == nil {
		jsonUserPlaneEventAnyOf, _ := json.Marshal(dst.UserPlaneEventAnyOf)
		if string(jsonUserPlaneEventAnyOf) == "{}" { // empty struct
			dst.UserPlaneEventAnyOf = nil
		} else {
			return nil // data stored in dst.UserPlaneEventAnyOf, return on the first match
		}
	} else {
		dst.UserPlaneEventAnyOf = nil
	}

	// try to unmarshal JSON data into string
	err = json.Unmarshal(data, &dst.string);
	if err == nil {
		jsonstring, _ := json.Marshal(dst.string)
		if string(jsonstring) == "{}" { // empty struct
			dst.string = nil
		} else {
			return nil // data stored in dst.string, return on the first match
		}
	} else {
		dst.string = nil
	}

	return fmt.Errorf("Data failed to match schemas in anyOf(UserPlaneEvent)")
}

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

func (src *UserPlaneEvent) MarshalJSON() ([]byte, error) {
	if src.UserPlaneEventAnyOf != nil {
		return json.Marshal(&src.UserPlaneEventAnyOf)
	}

	if src.string != nil {
		return json.Marshal(&src.string)
	}

	return nil, nil // no data in anyOf schemas
}

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 NullableUserPlaneEventAnyOf

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

func NewNullableUserPlaneEventAnyOf

func NewNullableUserPlaneEventAnyOf(val *UserPlaneEventAnyOf) *NullableUserPlaneEventAnyOf

func (NullableUserPlaneEventAnyOf) Get

func (NullableUserPlaneEventAnyOf) IsSet

func (NullableUserPlaneEventAnyOf) MarshalJSON

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

func (*NullableUserPlaneEventAnyOf) Set

func (*NullableUserPlaneEventAnyOf) UnmarshalJSON

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

func (*NullableUserPlaneEventAnyOf) Unset

func (v *NullableUserPlaneEventAnyOf) 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 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"`
	AdditionalProperties map[string]interface{}
}

ProblemDetails struct for ProblemDetails

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

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

type QosMonitoringInformation

type QosMonitoringInformation struct {
	ReqQosMonParams      []RequestedQosMonitoringParameter `json:"reqQosMonParams"`
	RepFreqs             []ReportingFrequency              `json:"repFreqs"`
	RepThreshDl          *int32                            `json:"repThreshDl,omitempty"`
	RepThreshUl          *int32                            `json:"repThreshUl,omitempty"`
	RepThreshRp          *int32                            `json:"repThreshRp,omitempty"`
	WaitTime             *int32                            `json:"waitTime,omitempty"`
	RepPeriod            *int32                            `json:"repPeriod,omitempty"`
	AdditionalProperties map[string]interface{}
}

QosMonitoringInformation struct for QosMonitoringInformation

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

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

type QosMonitoringInformationRm

type QosMonitoringInformationRm struct {
	ReqQosMonParams      *[]RequestedQosMonitoringParameter `json:"reqQosMonParams,omitempty"`
	RepFreqs             *[]ReportingFrequency              `json:"repFreqs,omitempty"`
	RepThreshDl          NullableInt32                      `json:"repThreshDl,omitempty"`
	RepThreshUl          NullableInt32                      `json:"repThreshUl,omitempty"`
	RepThreshRp          NullableInt32                      `json:"repThreshRp,omitempty"`
	WaitTime             NullableInt32                      `json:"waitTime,omitempty"`
	RepPeriod            NullableInt32                      `json:"repPeriod,omitempty"`
	AdditionalProperties map[string]interface{}
}

QosMonitoringInformationRm struct for QosMonitoringInformationRm

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

func (o *QosMonitoringInformationRm) UnmarshalJSON(bytes []byte) (err 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"`
	AdditionalProperties map[string]interface{}
}

QosMonitoringReport struct for QosMonitoringReport

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

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

type ReportingFrequency

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

ReportingFrequency struct for ReportingFrequency

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 ReportingFrequencyAnyOf

type ReportingFrequencyAnyOf string

ReportingFrequencyAnyOf the model 'ReportingFrequencyAnyOf'

const (
	EVENT_TRIGGERED ReportingFrequencyAnyOf = "EVENT_TRIGGERED"
	PERIODIC        ReportingFrequencyAnyOf = "PERIODIC"
	SESSION_RELEASE ReportingFrequencyAnyOf = "SESSION_RELEASE"
)

List of ReportingFrequency_anyOf

func NewReportingFrequencyAnyOfFromValue

func NewReportingFrequencyAnyOfFromValue(v string) (*ReportingFrequencyAnyOf, error)

NewReportingFrequencyAnyOfFromValue returns a pointer to a valid ReportingFrequencyAnyOf for the value passed as argument, or an error if the value passed is not allowed by the enum

func (ReportingFrequencyAnyOf) IsValid

func (v ReportingFrequencyAnyOf) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (ReportingFrequencyAnyOf) Ptr

Ptr returns reference to ReportingFrequency_anyOf value

func (*ReportingFrequencyAnyOf) UnmarshalJSON

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

type RequestedQosMonitoringParameter

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

RequestedQosMonitoringParameter struct for RequestedQosMonitoringParameter

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 RequestedQosMonitoringParameterAnyOf

type RequestedQosMonitoringParameterAnyOf string

RequestedQosMonitoringParameterAnyOf the model 'RequestedQosMonitoringParameterAnyOf'

const (
	// FIXME: Modified DOWNLINK/UPLINK constant names with _R suffix as it clashes with FlowDirection_anyOf
	DOWNLINK_R RequestedQosMonitoringParameterAnyOf = "DOWNLINK"
	UPLINK_R   RequestedQosMonitoringParameterAnyOf = "UPLINK"
	ROUND_TRIP RequestedQosMonitoringParameterAnyOf = "ROUND_TRIP"
)

List of RequestedQosMonitoringParameter_anyOf

func NewRequestedQosMonitoringParameterAnyOfFromValue

func NewRequestedQosMonitoringParameterAnyOfFromValue(v string) (*RequestedQosMonitoringParameterAnyOf, error)

NewRequestedQosMonitoringParameterAnyOfFromValue returns a pointer to a valid RequestedQosMonitoringParameterAnyOf for the value passed as argument, or an error if the value passed is not allowed by the enum

func (RequestedQosMonitoringParameterAnyOf) IsValid

IsValid return true if the value is valid for the enum, false otherwise

func (RequestedQosMonitoringParameterAnyOf) Ptr

Ptr returns reference to RequestedQosMonitoringParameter_anyOf value

func (*RequestedQosMonitoringParameterAnyOf) UnmarshalJSON

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

type ServerConfiguration

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

ServerConfiguration stores the information about a server

type ServerConfigurations

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL

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

URL formats template on a index using given variables

type ServerVariable

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

ServerVariable stores the information about a server variable

type SponsorInformation

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

SponsorInformation struct for SponsorInformation

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

func (o *SponsorInformation) UnmarshalJSON(bytes []byte) (err 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"`
	AdditionalProperties map[string]interface{}
}

UsageThreshold struct for UsageThreshold

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

func (o *UsageThreshold) UnmarshalJSON(bytes []byte) (err 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"`
	AdditionalProperties map[string]interface{}
}

UsageThresholdRm struct for UsageThresholdRm

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

func (o *UsageThresholdRm) UnmarshalJSON(bytes []byte) (err 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 {
	UserPlaneEventAnyOf *UserPlaneEventAnyOf `json:"userPlaneEventAnyOf"`
	// 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.

type UserPlaneEventAnyOf

type UserPlaneEventAnyOf string

UserPlaneEventAnyOf the model 'UserPlaneEventAnyOf'

const (
	SESSION_TERMINATION             UserPlaneEventAnyOf = "SESSION_TERMINATION"
	LOSS_OF_BEARER                  UserPlaneEventAnyOf = "LOSS_OF_BEARER"
	RECOVERY_OF_BEARER              UserPlaneEventAnyOf = "RECOVERY_OF_BEARER"
	RELEASE_OF_BEARER               UserPlaneEventAnyOf = "RELEASE_OF_BEARER"
	USAGE_REPORT                    UserPlaneEventAnyOf = "USAGE_REPORT"
	FAILED_RESOURCES_ALLOCATION     UserPlaneEventAnyOf = "FAILED_RESOURCES_ALLOCATION"
	QOS_GUARANTEED                  UserPlaneEventAnyOf = "QOS_GUARANTEED"
	QOS_NOT_GUARANTEED              UserPlaneEventAnyOf = "QOS_NOT_GUARANTEED"
	QOS_MONITORING                  UserPlaneEventAnyOf = "QOS_MONITORING"
	SUCCESSFUL_RESOURCES_ALLOCATION UserPlaneEventAnyOf = "SUCCESSFUL_RESOURCES_ALLOCATION"
)

List of UserPlaneEvent_anyOf

func NewUserPlaneEventAnyOfFromValue

func NewUserPlaneEventAnyOfFromValue(v string) (*UserPlaneEventAnyOf, error)

NewUserPlaneEventAnyOfFromValue returns a pointer to a valid UserPlaneEventAnyOf for the value passed as argument, or an error if the value passed is not allowed by the enum

func (UserPlaneEventAnyOf) IsValid

func (v UserPlaneEventAnyOf) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (UserPlaneEventAnyOf) Ptr

Ptr returns reference to UserPlaneEvent_anyOf value

func (*UserPlaneEventAnyOf) UnmarshalJSON

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

type UserPlaneEventReport

type UserPlaneEventReport struct {
	Event            UserPlaneEvent    `json:"event"`
	AccumulatedUsage *AccumulatedUsage `json:"accumulatedUsage,omitempty"`
	// Identifies the IP flows that were sent during event 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"`
	// Contains the QoS Monitoring Reporting information
	QosMonReports        *[]QosMonitoringReport `json:"qosMonReports,omitempty"`
	AdditionalProperties map[string]interface{}
}

UserPlaneEventReport struct for UserPlaneEventReport

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

func (o *UserPlaneEventReport) HasQosMonReports() bool

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

func (o *UserPlaneEventReport) SetQosMonReports(v []QosMonitoringReport)

SetQosMonReports gets a reference to the given []QosMonitoringReport and assigns it to the QosMonReports field.

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"`
	AdditionalProperties map[string]interface{}
}

UserPlaneNotificationData struct for UserPlaneNotificationData

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) 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"`
	AdditionalProperties map[string]interface{}
}

WebsockNotifConfig struct for WebsockNotifConfig

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

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

Jump to

Keyboard shortcuts

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