OpenAPI_Ntsctsf_QoSandTSCAssistance

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

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

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

README

Go API client for OpenAPI_Ntsctsf_QoSandTSCAssistance

TSCTSF QoS and TSC Assistance Service.
© 2022, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC).
All rights reserved.

Overview

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

  • API version: 1.0.2
  • Package version: 1.0.0
  • Build package: org.openapitools.codegen.languages.GoClientCodegen

Installation

Install the following dependencies:

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

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

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

To use a proxy, set the environment variable HTTP_PROXY:

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

Configuration of Server URL

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

Select Server Configuration

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

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

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

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

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

URLs Configuration per Operation

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

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

Documentation for API Endpoints

All URIs are relative to https://example.com/ntsctsf-qos-tscai/v1

Class Method HTTP request Description
EventsSubscriptionDocumentAPI DeleteEventsSubsc Delete /tsc-app-sessions/{appSessionId}/events-subscription Deletes the Events Subscription subresource.
EventsSubscriptionDocumentAPI PutEventsSubsc Put /tsc-app-sessions/{appSessionId}/events-subscription Creates or modifies an Events Subscription subresource
IndividualTSCApplicationSessionContextDocumentAPI DeleteTSCAppSession Post /tsc-app-sessions/{appSessionId}/delete Deletes an existing Individual TSC Application Session Context
IndividualTSCApplicationSessionContextDocumentAPI GetTSCAppSession Get /tsc-app-sessions/{appSessionId} Reads an existing Individual TSC Application Session Context
IndividualTSCApplicationSessionContextDocumentAPI ModAppSession Patch /tsc-app-sessions/{appSessionId} Modifies an existing Individual TSC Application Session Context
TSCApplicationSessionsCollectionAPI PostTSCAppSessions Post /tsc-app-sessions Creates a new Individual TSC Application Session Context resource

Documentation For Models

Documentation For Authorization

Authentication schemes defined for the API:

oAuth2ClientCredentials
  • Type: OAuth
  • Flow: application
  • Authorization URL:
  • Scopes:
  • ntsctsf-qos-tscai: Access to the Ntsctsf_QoSandTSCAssistance API

Example

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

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

import "golang.org/x/oauth2"

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

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

Documentation for Utility Methods

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

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

Author

Documentation

Index

Constants

This section is empty.

Variables

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

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

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

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

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

Functions

func CacheExpires

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

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

func IsNil

func IsNil(i interface{}) bool

IsNil checks if an input is nil

func PtrBool

func PtrBool(v bool) *bool

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

func PtrFloat32

func PtrFloat32(v float32) *float32

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

func PtrFloat64

func PtrFloat64(v float64) *float64

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

func PtrInt

func PtrInt(v int) *int

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

func PtrInt32

func PtrInt32(v int32) *int32

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

func PtrInt64

func PtrInt64(v int64) *int64

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

func PtrString

func PtrString(v string) *string

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

func PtrTime

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

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

Types

type APIClient

type APIClient struct {
	EventsSubscriptionDocumentAPI *EventsSubscriptionDocumentAPIService

	IndividualTSCApplicationSessionContextDocumentAPI *IndividualTSCApplicationSessionContextDocumentAPIService

	TSCApplicationSessionsCollectionAPI *TSCApplicationSessionsCollectionAPIService
	// contains filtered or unexported fields
}

APIClient manages communication with the Ntsctsf_QoSandTSCAssistance Service API API v1.0.2 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 AccessTokenErr

type AccessTokenErr struct {
	Error            string  `json:"error"`
	ErrorDescription *string `json:"error_description,omitempty"`
	ErrorUri         *string `json:"error_uri,omitempty"`
}

AccessTokenErr Error returned in the access token response message

func NewAccessTokenErr

func NewAccessTokenErr(error_ string) *AccessTokenErr

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

func NewAccessTokenErrWithDefaults

func NewAccessTokenErrWithDefaults() *AccessTokenErr

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

func (*AccessTokenErr) GetError

func (o *AccessTokenErr) GetError() string

GetError returns the Error field value

func (*AccessTokenErr) GetErrorDescription

func (o *AccessTokenErr) GetErrorDescription() string

GetErrorDescription returns the ErrorDescription field value if set, zero value otherwise.

func (*AccessTokenErr) GetErrorDescriptionOk

func (o *AccessTokenErr) GetErrorDescriptionOk() (*string, bool)

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

func (*AccessTokenErr) GetErrorOk

func (o *AccessTokenErr) GetErrorOk() (*string, bool)

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

func (*AccessTokenErr) GetErrorUri

func (o *AccessTokenErr) GetErrorUri() string

GetErrorUri returns the ErrorUri field value if set, zero value otherwise.

func (*AccessTokenErr) GetErrorUriOk

func (o *AccessTokenErr) GetErrorUriOk() (*string, bool)

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

func (*AccessTokenErr) HasErrorDescription

func (o *AccessTokenErr) HasErrorDescription() bool

HasErrorDescription returns a boolean if a field has been set.

func (*AccessTokenErr) HasErrorUri

func (o *AccessTokenErr) HasErrorUri() bool

HasErrorUri returns a boolean if a field has been set.

func (AccessTokenErr) MarshalJSON

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

func (*AccessTokenErr) SetError

func (o *AccessTokenErr) SetError(v string)

SetError sets field value

func (*AccessTokenErr) SetErrorDescription

func (o *AccessTokenErr) SetErrorDescription(v string)

SetErrorDescription gets a reference to the given string and assigns it to the ErrorDescription field.

func (*AccessTokenErr) SetErrorUri

func (o *AccessTokenErr) SetErrorUri(v string)

SetErrorUri gets a reference to the given string and assigns it to the ErrorUri field.

func (AccessTokenErr) ToMap

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

func (*AccessTokenErr) UnmarshalJSON

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

type AccessTokenReq

type AccessTokenReq struct {
	GrantType string `json:"grant_type"`
	// String uniquely identifying a NF instance. The format of the NF Instance ID shall be a  Universally Unique Identifier (UUID) version 4, as described in IETF RFC 4122.
	NfInstanceId string  `json:"nfInstanceId"`
	NfType       *NFType `json:"nfType,omitempty"`
	TargetNfType *NFType `json:"targetNfType,omitempty"`
	Scope        string  `json:"scope"`
	// String uniquely identifying a NF instance. The format of the NF Instance ID shall be a  Universally Unique Identifier (UUID) version 4, as described in IETF RFC 4122.
	TargetNfInstanceId  *string  `json:"targetNfInstanceId,omitempty"`
	RequesterPlmn       *PlmnId  `json:"requesterPlmn,omitempty"`
	RequesterPlmnList   []PlmnId `json:"requesterPlmnList,omitempty"`
	RequesterSnssaiList []Snssai `json:"requesterSnssaiList,omitempty"`
	// Fully Qualified Domain Name
	RequesterFqdn     *string     `json:"requesterFqdn,omitempty"`
	RequesterSnpnList []PlmnIdNid `json:"requesterSnpnList,omitempty"`
	TargetPlmn        *PlmnId     `json:"targetPlmn,omitempty"`
	TargetSnpn        *PlmnIdNid  `json:"targetSnpn,omitempty"`
	TargetSnssaiList  []Snssai    `json:"targetSnssaiList,omitempty"`
	TargetNsiList     []string    `json:"targetNsiList,omitempty"`
	// NF Set Identifier (see clause 28.12 of 3GPP TS 23.003), formatted as the following string \"set<Set ID>.<nftype>set.5gc.mnc<MNC>.mcc<MCC>\", or  \"set<SetID>.<NFType>set.5gc.nid<NID>.mnc<MNC>.mcc<MCC>\" with  <MCC> encoded as defined in clause 5.4.2 (\"Mcc\" data type definition)  <MNC> encoding the Mobile Network Code part of the PLMN, comprising 3 digits.    If there are only 2 significant digits in the MNC, one \"0\" digit shall be inserted    at the left side to fill the 3 digits coding of MNC.  Pattern: '^[0-9]{3}$' <NFType> encoded as a value defined in Table 6.1.6.3.3-1 of 3GPP TS 29.510 but    with lower case characters <Set ID> encoded as a string of characters consisting of    alphabetic characters (A-Z and a-z), digits (0-9) and/or the hyphen (-) and that    shall end with either an alphabetic character or a digit.
	TargetNfSetId *string `json:"targetNfSetId,omitempty"`
	// NF Service Set Identifier (see clause 28.12 of 3GPP TS 23.003) formatted as the following  string \"set<Set ID>.sn<Service Name>.nfi<NF Instance ID>.5gc.mnc<MNC>.mcc<MCC>\", or  \"set<SetID>.sn<ServiceName>.nfi<NFInstanceID>.5gc.nid<NID>.mnc<MNC>.mcc<MCC>\" with  <MCC> encoded as defined in clause 5.4.2 (\"Mcc\" data type definition)   <MNC> encoding the Mobile Network Code part of the PLMN, comprising 3 digits.    If there are only 2 significant digits in the MNC, one \"0\" digit shall be inserted    at the left side to fill the 3 digits coding of MNC.  Pattern: '^[0-9]{3}$' <NID> encoded as defined in clause 5.4.2 (\"Nid\" data type definition)  <NFInstanceId> encoded as defined in clause 5.3.2  <ServiceName> encoded as defined in 3GPP TS 29.510  <Set ID> encoded as a string of characters consisting of alphabetic    characters (A-Z and a-z), digits (0-9) and/or the hyphen (-) and that shall end    with either an alphabetic character or a digit.
	TargetNfServiceSetId *string `json:"targetNfServiceSetId,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	HnrfAccessTokenUri *string `json:"hnrfAccessTokenUri,omitempty"`
	// String uniquely identifying a NF instance. The format of the NF Instance ID shall be a  Universally Unique Identifier (UUID) version 4, as described in IETF RFC 4122.
	SourceNfInstanceId *string `json:"sourceNfInstanceId,omitempty"`
}

AccessTokenReq Contains information related to the access token request

func NewAccessTokenReq

func NewAccessTokenReq(grantType string, nfInstanceId string, scope string) *AccessTokenReq

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

func NewAccessTokenReqWithDefaults

func NewAccessTokenReqWithDefaults() *AccessTokenReq

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

func (*AccessTokenReq) GetGrantType

func (o *AccessTokenReq) GetGrantType() string

GetGrantType returns the GrantType field value

func (*AccessTokenReq) GetGrantTypeOk

func (o *AccessTokenReq) GetGrantTypeOk() (*string, bool)

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

func (*AccessTokenReq) GetHnrfAccessTokenUri

func (o *AccessTokenReq) GetHnrfAccessTokenUri() string

GetHnrfAccessTokenUri returns the HnrfAccessTokenUri field value if set, zero value otherwise.

func (*AccessTokenReq) GetHnrfAccessTokenUriOk

func (o *AccessTokenReq) GetHnrfAccessTokenUriOk() (*string, bool)

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

func (*AccessTokenReq) GetNfInstanceId

func (o *AccessTokenReq) GetNfInstanceId() string

GetNfInstanceId returns the NfInstanceId field value

func (*AccessTokenReq) GetNfInstanceIdOk

func (o *AccessTokenReq) GetNfInstanceIdOk() (*string, bool)

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

func (*AccessTokenReq) GetNfType

func (o *AccessTokenReq) GetNfType() NFType

GetNfType returns the NfType field value if set, zero value otherwise.

func (*AccessTokenReq) GetNfTypeOk

func (o *AccessTokenReq) GetNfTypeOk() (*NFType, bool)

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

func (*AccessTokenReq) GetRequesterFqdn

func (o *AccessTokenReq) GetRequesterFqdn() string

GetRequesterFqdn returns the RequesterFqdn field value if set, zero value otherwise.

func (*AccessTokenReq) GetRequesterFqdnOk

func (o *AccessTokenReq) GetRequesterFqdnOk() (*string, bool)

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

func (*AccessTokenReq) GetRequesterPlmn

func (o *AccessTokenReq) GetRequesterPlmn() PlmnId

GetRequesterPlmn returns the RequesterPlmn field value if set, zero value otherwise.

func (*AccessTokenReq) GetRequesterPlmnList

func (o *AccessTokenReq) GetRequesterPlmnList() []PlmnId

GetRequesterPlmnList returns the RequesterPlmnList field value if set, zero value otherwise.

func (*AccessTokenReq) GetRequesterPlmnListOk

func (o *AccessTokenReq) GetRequesterPlmnListOk() ([]PlmnId, bool)

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

func (*AccessTokenReq) GetRequesterPlmnOk

func (o *AccessTokenReq) GetRequesterPlmnOk() (*PlmnId, bool)

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

func (*AccessTokenReq) GetRequesterSnpnList

func (o *AccessTokenReq) GetRequesterSnpnList() []PlmnIdNid

GetRequesterSnpnList returns the RequesterSnpnList field value if set, zero value otherwise.

func (*AccessTokenReq) GetRequesterSnpnListOk

func (o *AccessTokenReq) GetRequesterSnpnListOk() ([]PlmnIdNid, bool)

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

func (*AccessTokenReq) GetRequesterSnssaiList

func (o *AccessTokenReq) GetRequesterSnssaiList() []Snssai

GetRequesterSnssaiList returns the RequesterSnssaiList field value if set, zero value otherwise.

func (*AccessTokenReq) GetRequesterSnssaiListOk

func (o *AccessTokenReq) GetRequesterSnssaiListOk() ([]Snssai, bool)

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

func (*AccessTokenReq) GetScope

func (o *AccessTokenReq) GetScope() string

GetScope returns the Scope field value

func (*AccessTokenReq) GetScopeOk

func (o *AccessTokenReq) GetScopeOk() (*string, bool)

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

func (*AccessTokenReq) GetSourceNfInstanceId

func (o *AccessTokenReq) GetSourceNfInstanceId() string

GetSourceNfInstanceId returns the SourceNfInstanceId field value if set, zero value otherwise.

func (*AccessTokenReq) GetSourceNfInstanceIdOk

func (o *AccessTokenReq) GetSourceNfInstanceIdOk() (*string, bool)

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

func (*AccessTokenReq) GetTargetNfInstanceId

func (o *AccessTokenReq) GetTargetNfInstanceId() string

GetTargetNfInstanceId returns the TargetNfInstanceId field value if set, zero value otherwise.

func (*AccessTokenReq) GetTargetNfInstanceIdOk

func (o *AccessTokenReq) GetTargetNfInstanceIdOk() (*string, bool)

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

func (*AccessTokenReq) GetTargetNfServiceSetId

func (o *AccessTokenReq) GetTargetNfServiceSetId() string

GetTargetNfServiceSetId returns the TargetNfServiceSetId field value if set, zero value otherwise.

func (*AccessTokenReq) GetTargetNfServiceSetIdOk

func (o *AccessTokenReq) GetTargetNfServiceSetIdOk() (*string, bool)

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

func (*AccessTokenReq) GetTargetNfSetId

func (o *AccessTokenReq) GetTargetNfSetId() string

GetTargetNfSetId returns the TargetNfSetId field value if set, zero value otherwise.

func (*AccessTokenReq) GetTargetNfSetIdOk

func (o *AccessTokenReq) GetTargetNfSetIdOk() (*string, bool)

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

func (*AccessTokenReq) GetTargetNfType

func (o *AccessTokenReq) GetTargetNfType() NFType

GetTargetNfType returns the TargetNfType field value if set, zero value otherwise.

func (*AccessTokenReq) GetTargetNfTypeOk

func (o *AccessTokenReq) GetTargetNfTypeOk() (*NFType, bool)

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

func (*AccessTokenReq) GetTargetNsiList

func (o *AccessTokenReq) GetTargetNsiList() []string

GetTargetNsiList returns the TargetNsiList field value if set, zero value otherwise.

func (*AccessTokenReq) GetTargetNsiListOk

func (o *AccessTokenReq) GetTargetNsiListOk() ([]string, bool)

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

func (*AccessTokenReq) GetTargetPlmn

func (o *AccessTokenReq) GetTargetPlmn() PlmnId

GetTargetPlmn returns the TargetPlmn field value if set, zero value otherwise.

func (*AccessTokenReq) GetTargetPlmnOk

func (o *AccessTokenReq) GetTargetPlmnOk() (*PlmnId, bool)

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

func (*AccessTokenReq) GetTargetSnpn

func (o *AccessTokenReq) GetTargetSnpn() PlmnIdNid

GetTargetSnpn returns the TargetSnpn field value if set, zero value otherwise.

func (*AccessTokenReq) GetTargetSnpnOk

func (o *AccessTokenReq) GetTargetSnpnOk() (*PlmnIdNid, bool)

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

func (*AccessTokenReq) GetTargetSnssaiList

func (o *AccessTokenReq) GetTargetSnssaiList() []Snssai

GetTargetSnssaiList returns the TargetSnssaiList field value if set, zero value otherwise.

func (*AccessTokenReq) GetTargetSnssaiListOk

func (o *AccessTokenReq) GetTargetSnssaiListOk() ([]Snssai, bool)

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

func (*AccessTokenReq) HasHnrfAccessTokenUri

func (o *AccessTokenReq) HasHnrfAccessTokenUri() bool

HasHnrfAccessTokenUri returns a boolean if a field has been set.

func (*AccessTokenReq) HasNfType

func (o *AccessTokenReq) HasNfType() bool

HasNfType returns a boolean if a field has been set.

func (*AccessTokenReq) HasRequesterFqdn

func (o *AccessTokenReq) HasRequesterFqdn() bool

HasRequesterFqdn returns a boolean if a field has been set.

func (*AccessTokenReq) HasRequesterPlmn

func (o *AccessTokenReq) HasRequesterPlmn() bool

HasRequesterPlmn returns a boolean if a field has been set.

func (*AccessTokenReq) HasRequesterPlmnList

func (o *AccessTokenReq) HasRequesterPlmnList() bool

HasRequesterPlmnList returns a boolean if a field has been set.

func (*AccessTokenReq) HasRequesterSnpnList

func (o *AccessTokenReq) HasRequesterSnpnList() bool

HasRequesterSnpnList returns a boolean if a field has been set.

func (*AccessTokenReq) HasRequesterSnssaiList

func (o *AccessTokenReq) HasRequesterSnssaiList() bool

HasRequesterSnssaiList returns a boolean if a field has been set.

func (*AccessTokenReq) HasSourceNfInstanceId

func (o *AccessTokenReq) HasSourceNfInstanceId() bool

HasSourceNfInstanceId returns a boolean if a field has been set.

func (*AccessTokenReq) HasTargetNfInstanceId

func (o *AccessTokenReq) HasTargetNfInstanceId() bool

HasTargetNfInstanceId returns a boolean if a field has been set.

func (*AccessTokenReq) HasTargetNfServiceSetId

func (o *AccessTokenReq) HasTargetNfServiceSetId() bool

HasTargetNfServiceSetId returns a boolean if a field has been set.

func (*AccessTokenReq) HasTargetNfSetId

func (o *AccessTokenReq) HasTargetNfSetId() bool

HasTargetNfSetId returns a boolean if a field has been set.

func (*AccessTokenReq) HasTargetNfType

func (o *AccessTokenReq) HasTargetNfType() bool

HasTargetNfType returns a boolean if a field has been set.

func (*AccessTokenReq) HasTargetNsiList

func (o *AccessTokenReq) HasTargetNsiList() bool

HasTargetNsiList returns a boolean if a field has been set.

func (*AccessTokenReq) HasTargetPlmn

func (o *AccessTokenReq) HasTargetPlmn() bool

HasTargetPlmn returns a boolean if a field has been set.

func (*AccessTokenReq) HasTargetSnpn

func (o *AccessTokenReq) HasTargetSnpn() bool

HasTargetSnpn returns a boolean if a field has been set.

func (*AccessTokenReq) HasTargetSnssaiList

func (o *AccessTokenReq) HasTargetSnssaiList() bool

HasTargetSnssaiList returns a boolean if a field has been set.

func (AccessTokenReq) MarshalJSON

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

func (*AccessTokenReq) SetGrantType

func (o *AccessTokenReq) SetGrantType(v string)

SetGrantType sets field value

func (*AccessTokenReq) SetHnrfAccessTokenUri

func (o *AccessTokenReq) SetHnrfAccessTokenUri(v string)

SetHnrfAccessTokenUri gets a reference to the given string and assigns it to the HnrfAccessTokenUri field.

func (*AccessTokenReq) SetNfInstanceId

func (o *AccessTokenReq) SetNfInstanceId(v string)

SetNfInstanceId sets field value

func (*AccessTokenReq) SetNfType

func (o *AccessTokenReq) SetNfType(v NFType)

SetNfType gets a reference to the given NFType and assigns it to the NfType field.

func (*AccessTokenReq) SetRequesterFqdn

func (o *AccessTokenReq) SetRequesterFqdn(v string)

SetRequesterFqdn gets a reference to the given string and assigns it to the RequesterFqdn field.

func (*AccessTokenReq) SetRequesterPlmn

func (o *AccessTokenReq) SetRequesterPlmn(v PlmnId)

SetRequesterPlmn gets a reference to the given PlmnId and assigns it to the RequesterPlmn field.

func (*AccessTokenReq) SetRequesterPlmnList

func (o *AccessTokenReq) SetRequesterPlmnList(v []PlmnId)

SetRequesterPlmnList gets a reference to the given []PlmnId and assigns it to the RequesterPlmnList field.

func (*AccessTokenReq) SetRequesterSnpnList

func (o *AccessTokenReq) SetRequesterSnpnList(v []PlmnIdNid)

SetRequesterSnpnList gets a reference to the given []PlmnIdNid and assigns it to the RequesterSnpnList field.

func (*AccessTokenReq) SetRequesterSnssaiList

func (o *AccessTokenReq) SetRequesterSnssaiList(v []Snssai)

SetRequesterSnssaiList gets a reference to the given []Snssai and assigns it to the RequesterSnssaiList field.

func (*AccessTokenReq) SetScope

func (o *AccessTokenReq) SetScope(v string)

SetScope sets field value

func (*AccessTokenReq) SetSourceNfInstanceId

func (o *AccessTokenReq) SetSourceNfInstanceId(v string)

SetSourceNfInstanceId gets a reference to the given string and assigns it to the SourceNfInstanceId field.

func (*AccessTokenReq) SetTargetNfInstanceId

func (o *AccessTokenReq) SetTargetNfInstanceId(v string)

SetTargetNfInstanceId gets a reference to the given string and assigns it to the TargetNfInstanceId field.

func (*AccessTokenReq) SetTargetNfServiceSetId

func (o *AccessTokenReq) SetTargetNfServiceSetId(v string)

SetTargetNfServiceSetId gets a reference to the given string and assigns it to the TargetNfServiceSetId field.

func (*AccessTokenReq) SetTargetNfSetId

func (o *AccessTokenReq) SetTargetNfSetId(v string)

SetTargetNfSetId gets a reference to the given string and assigns it to the TargetNfSetId field.

func (*AccessTokenReq) SetTargetNfType

func (o *AccessTokenReq) SetTargetNfType(v NFType)

SetTargetNfType gets a reference to the given NFType and assigns it to the TargetNfType field.

func (*AccessTokenReq) SetTargetNsiList

func (o *AccessTokenReq) SetTargetNsiList(v []string)

SetTargetNsiList gets a reference to the given []string and assigns it to the TargetNsiList field.

func (*AccessTokenReq) SetTargetPlmn

func (o *AccessTokenReq) SetTargetPlmn(v PlmnId)

SetTargetPlmn gets a reference to the given PlmnId and assigns it to the TargetPlmn field.

func (*AccessTokenReq) SetTargetSnpn

func (o *AccessTokenReq) SetTargetSnpn(v PlmnIdNid)

SetTargetSnpn gets a reference to the given PlmnIdNid and assigns it to the TargetSnpn field.

func (*AccessTokenReq) SetTargetSnssaiList

func (o *AccessTokenReq) SetTargetSnssaiList(v []Snssai)

SetTargetSnssaiList gets a reference to the given []Snssai and assigns it to the TargetSnssaiList field.

func (AccessTokenReq) ToMap

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

func (*AccessTokenReq) UnmarshalJSON

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

type AccumulatedUsage

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

AccumulatedUsage Represents an accumulated usage.

func NewAccumulatedUsage

func NewAccumulatedUsage() *AccumulatedUsage

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

func NewAccumulatedUsageWithDefaults

func NewAccumulatedUsageWithDefaults() *AccumulatedUsage

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

func (*AccumulatedUsage) GetDownlinkVolume

func (o *AccumulatedUsage) GetDownlinkVolume() int64

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

func (*AccumulatedUsage) GetDownlinkVolumeOk

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

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

func (*AccumulatedUsage) GetDuration

func (o *AccumulatedUsage) GetDuration() int32

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

func (*AccumulatedUsage) GetDurationOk

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

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

func (*AccumulatedUsage) GetTotalVolume

func (o *AccumulatedUsage) GetTotalVolume() int64

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

func (*AccumulatedUsage) GetTotalVolumeOk

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

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

func (*AccumulatedUsage) GetUplinkVolume

func (o *AccumulatedUsage) GetUplinkVolume() int64

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

func (*AccumulatedUsage) GetUplinkVolumeOk

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

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

func (*AccumulatedUsage) HasDownlinkVolume

func (o *AccumulatedUsage) HasDownlinkVolume() bool

HasDownlinkVolume returns a boolean if a field has been set.

func (*AccumulatedUsage) HasDuration

func (o *AccumulatedUsage) HasDuration() bool

HasDuration returns a boolean if a field has been set.

func (*AccumulatedUsage) HasTotalVolume

func (o *AccumulatedUsage) HasTotalVolume() bool

HasTotalVolume returns a boolean if a field has been set.

func (*AccumulatedUsage) HasUplinkVolume

func (o *AccumulatedUsage) HasUplinkVolume() bool

HasUplinkVolume returns a boolean if a field has been set.

func (AccumulatedUsage) MarshalJSON

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

func (*AccumulatedUsage) SetDownlinkVolume

func (o *AccumulatedUsage) SetDownlinkVolume(v int64)

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

func (*AccumulatedUsage) SetDuration

func (o *AccumulatedUsage) SetDuration(v int32)

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

func (*AccumulatedUsage) SetTotalVolume

func (o *AccumulatedUsage) SetTotalVolume(v int64)

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

func (*AccumulatedUsage) SetUplinkVolume

func (o *AccumulatedUsage) SetUplinkVolume(v int64)

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

func (AccumulatedUsage) ToMap

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

type AlternativeServiceRequirementsData

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

AlternativeServiceRequirementsData Contains an alternative QoS related parameter set.

func NewAlternativeServiceRequirementsData

func NewAlternativeServiceRequirementsData(altQosParamSetRef string) *AlternativeServiceRequirementsData

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

func NewAlternativeServiceRequirementsDataWithDefaults

func NewAlternativeServiceRequirementsDataWithDefaults() *AlternativeServiceRequirementsData

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

func (*AlternativeServiceRequirementsData) GetAltQosParamSetRef

func (o *AlternativeServiceRequirementsData) GetAltQosParamSetRef() string

GetAltQosParamSetRef returns the AltQosParamSetRef field value

func (*AlternativeServiceRequirementsData) GetAltQosParamSetRefOk

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

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

func (*AlternativeServiceRequirementsData) GetGbrDl

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

func (*AlternativeServiceRequirementsData) GetGbrDlOk

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

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

func (*AlternativeServiceRequirementsData) GetGbrUl

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

func (*AlternativeServiceRequirementsData) GetGbrUlOk

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

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

func (*AlternativeServiceRequirementsData) GetPdb

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

func (*AlternativeServiceRequirementsData) GetPdbOk

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

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

func (*AlternativeServiceRequirementsData) HasGbrDl

HasGbrDl returns a boolean if a field has been set.

func (*AlternativeServiceRequirementsData) HasGbrUl

HasGbrUl returns a boolean if a field has been set.

func (*AlternativeServiceRequirementsData) HasPdb

HasPdb returns a boolean if a field has been set.

func (AlternativeServiceRequirementsData) MarshalJSON

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

func (*AlternativeServiceRequirementsData) SetAltQosParamSetRef

func (o *AlternativeServiceRequirementsData) SetAltQosParamSetRef(v string)

SetAltQosParamSetRef sets field value

func (*AlternativeServiceRequirementsData) SetGbrDl

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

func (*AlternativeServiceRequirementsData) SetGbrUl

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

func (*AlternativeServiceRequirementsData) SetPdb

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

func (AlternativeServiceRequirementsData) ToMap

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

func (*AlternativeServiceRequirementsData) UnmarshalJSON

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

type ApiDeleteEventsSubscRequest

type ApiDeleteEventsSubscRequest struct {
	ApiService *EventsSubscriptionDocumentAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteEventsSubscRequest) Execute

type ApiDeleteTSCAppSessionRequest

type ApiDeleteTSCAppSessionRequest struct {
	ApiService *IndividualTSCApplicationSessionContextDocumentAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteTSCAppSessionRequest) EventsSubscReqData

func (r ApiDeleteTSCAppSessionRequest) EventsSubscReqData(eventsSubscReqData EventsSubscReqData) ApiDeleteTSCAppSessionRequest

Deletion of the Individual TSC Application Session Context resource, request notification.

func (ApiDeleteTSCAppSessionRequest) Execute

type ApiGetTSCAppSessionRequest

type ApiGetTSCAppSessionRequest struct {
	ApiService *IndividualTSCApplicationSessionContextDocumentAPIService
	// contains filtered or unexported fields
}

func (ApiGetTSCAppSessionRequest) Execute

type ApiModAppSessionRequest

type ApiModAppSessionRequest struct {
	ApiService *IndividualTSCApplicationSessionContextDocumentAPIService
	// contains filtered or unexported fields
}

func (ApiModAppSessionRequest) Execute

func (ApiModAppSessionRequest) TscAppSessionContextUpdateData

func (r ApiModAppSessionRequest) TscAppSessionContextUpdateData(tscAppSessionContextUpdateData TscAppSessionContextUpdateData) ApiModAppSessionRequest

Modification of the resource.

type ApiPostTSCAppSessionsRequest

type ApiPostTSCAppSessionsRequest struct {
	ApiService *TSCApplicationSessionsCollectionAPIService
	// contains filtered or unexported fields
}

func (ApiPostTSCAppSessionsRequest) Execute

func (ApiPostTSCAppSessionsRequest) TscAppSessionContextData

func (r ApiPostTSCAppSessionsRequest) TscAppSessionContextData(tscAppSessionContextData TscAppSessionContextData) ApiPostTSCAppSessionsRequest

Contains the information for the creation the resource.

type ApiPutEventsSubscRequest

type ApiPutEventsSubscRequest struct {
	ApiService *EventsSubscriptionDocumentAPIService
	// contains filtered or unexported fields
}

func (ApiPutEventsSubscRequest) EventsSubscReqData

func (r ApiPutEventsSubscRequest) EventsSubscReqData(eventsSubscReqData EventsSubscReqData) ApiPutEventsSubscRequest

Creation or modification of an Events Subscription resource.

func (ApiPutEventsSubscRequest) Execute

type BasicAuth

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

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

type Configuration

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

Configuration stores the configuration of the API client

func NewConfiguration

func NewConfiguration() *Configuration

NewConfiguration returns a new Configuration object

func (*Configuration) AddDefaultHeader

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

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

func (*Configuration) ServerURL

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

ServerURL returns URL based on server settings

func (*Configuration) ServerURLWithContext

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

ServerURLWithContext returns a new server URL given an endpoint

type EthFlowDescription

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

EthFlowDescription Identifies an Ethernet flow.

func NewEthFlowDescription

func NewEthFlowDescription(ethType string) *EthFlowDescription

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

func NewEthFlowDescriptionWithDefaults

func NewEthFlowDescriptionWithDefaults() *EthFlowDescription

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

func (*EthFlowDescription) GetDestMacAddr

func (o *EthFlowDescription) GetDestMacAddr() string

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

func (*EthFlowDescription) GetDestMacAddrEnd

func (o *EthFlowDescription) GetDestMacAddrEnd() string

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

func (*EthFlowDescription) GetDestMacAddrEndOk

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

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

func (*EthFlowDescription) GetDestMacAddrOk

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

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

func (*EthFlowDescription) GetEthType

func (o *EthFlowDescription) GetEthType() string

GetEthType returns the EthType field value

func (*EthFlowDescription) GetEthTypeOk

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

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

func (*EthFlowDescription) GetFDesc

func (o *EthFlowDescription) GetFDesc() string

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

func (*EthFlowDescription) GetFDescOk

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

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

func (*EthFlowDescription) GetFDir

func (o *EthFlowDescription) GetFDir() FlowDirection

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

func (*EthFlowDescription) GetFDirOk

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

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

func (*EthFlowDescription) GetSourceMacAddr

func (o *EthFlowDescription) GetSourceMacAddr() string

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

func (*EthFlowDescription) GetSourceMacAddrOk

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

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

func (*EthFlowDescription) GetSrcMacAddrEnd

func (o *EthFlowDescription) GetSrcMacAddrEnd() string

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

func (*EthFlowDescription) GetSrcMacAddrEndOk

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

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

func (*EthFlowDescription) GetVlanTags

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

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

func (*EthFlowDescription) GetVlanTagsOk

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

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

func (*EthFlowDescription) HasDestMacAddr

func (o *EthFlowDescription) HasDestMacAddr() bool

HasDestMacAddr returns a boolean if a field has been set.

func (*EthFlowDescription) HasDestMacAddrEnd

func (o *EthFlowDescription) HasDestMacAddrEnd() bool

HasDestMacAddrEnd returns a boolean if a field has been set.

func (*EthFlowDescription) HasFDesc

func (o *EthFlowDescription) HasFDesc() bool

HasFDesc returns a boolean if a field has been set.

func (*EthFlowDescription) HasFDir

func (o *EthFlowDescription) HasFDir() bool

HasFDir returns a boolean if a field has been set.

func (*EthFlowDescription) HasSourceMacAddr

func (o *EthFlowDescription) HasSourceMacAddr() bool

HasSourceMacAddr returns a boolean if a field has been set.

func (*EthFlowDescription) HasSrcMacAddrEnd

func (o *EthFlowDescription) HasSrcMacAddrEnd() bool

HasSrcMacAddrEnd returns a boolean if a field has been set.

func (*EthFlowDescription) HasVlanTags

func (o *EthFlowDescription) HasVlanTags() bool

HasVlanTags returns a boolean if a field has been set.

func (EthFlowDescription) MarshalJSON

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

func (*EthFlowDescription) SetDestMacAddr

func (o *EthFlowDescription) SetDestMacAddr(v string)

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

func (*EthFlowDescription) SetDestMacAddrEnd

func (o *EthFlowDescription) SetDestMacAddrEnd(v string)

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

func (*EthFlowDescription) SetEthType

func (o *EthFlowDescription) SetEthType(v string)

SetEthType sets field value

func (*EthFlowDescription) SetFDesc

func (o *EthFlowDescription) SetFDesc(v string)

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

func (*EthFlowDescription) SetFDir

func (o *EthFlowDescription) SetFDir(v FlowDirection)

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

func (*EthFlowDescription) SetSourceMacAddr

func (o *EthFlowDescription) SetSourceMacAddr(v string)

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

func (*EthFlowDescription) SetSrcMacAddrEnd

func (o *EthFlowDescription) SetSrcMacAddrEnd(v string)

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

func (*EthFlowDescription) SetVlanTags

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

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

func (EthFlowDescription) ToMap

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

func (*EthFlowDescription) UnmarshalJSON

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

type EthFlowInfo

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

EthFlowInfo Represents Ethernet flow information.

func NewEthFlowInfo

func NewEthFlowInfo(flowId int32) *EthFlowInfo

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

func NewEthFlowInfoWithDefaults

func NewEthFlowInfoWithDefaults() *EthFlowInfo

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

func (*EthFlowInfo) GetEthFlowDescriptions

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

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

func (*EthFlowInfo) GetEthFlowDescriptionsOk

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

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

func (*EthFlowInfo) GetFlowId

func (o *EthFlowInfo) GetFlowId() int32

GetFlowId returns the FlowId field value

func (*EthFlowInfo) GetFlowIdOk

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

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

func (*EthFlowInfo) HasEthFlowDescriptions

func (o *EthFlowInfo) HasEthFlowDescriptions() bool

HasEthFlowDescriptions returns a boolean if a field has been set.

func (EthFlowInfo) MarshalJSON

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

func (*EthFlowInfo) SetEthFlowDescriptions

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

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

func (*EthFlowInfo) SetFlowId

func (o *EthFlowInfo) SetFlowId(v int32)

SetFlowId sets field value

func (EthFlowInfo) ToMap

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

func (*EthFlowInfo) UnmarshalJSON

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

type EventNotification

type EventNotification struct {
	Event TscEvent `json:"event"`
	// Identifies the IP flows that were sent during event subscription.
	FlowIds       []int32               `json:"flowIds,omitempty"`
	QosMonReports []QosMonitoringReport `json:"qosMonReports,omitempty"`
	UsgRep        *AccumulatedUsage     `json:"usgRep,omitempty"`
	// The currently applied alternative QoS requirement referring to an alternative QoS reference or a requested alternative QoS parameter set. Applicable for event QOS_NOT_GUARANTEED or SUCCESSFUL_RESOURCES_ALLOCATION.
	AppliedQosRef *string `json:"appliedQosRef,omitempty"`
}

EventNotification Describes a notification of an matched event.

func NewEventNotification

func NewEventNotification(event TscEvent) *EventNotification

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

func NewEventNotificationWithDefaults

func NewEventNotificationWithDefaults() *EventNotification

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

func (*EventNotification) GetAppliedQosRef

func (o *EventNotification) GetAppliedQosRef() string

GetAppliedQosRef returns the AppliedQosRef field value if set, zero value otherwise.

func (*EventNotification) GetAppliedQosRefOk

func (o *EventNotification) 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 (*EventNotification) GetEvent

func (o *EventNotification) GetEvent() TscEvent

GetEvent returns the Event field value

func (*EventNotification) GetEventOk

func (o *EventNotification) GetEventOk() (*TscEvent, bool)

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

func (*EventNotification) GetFlowIds

func (o *EventNotification) GetFlowIds() []int32

GetFlowIds returns the FlowIds field value if set, zero value otherwise.

func (*EventNotification) GetFlowIdsOk

func (o *EventNotification) 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 (*EventNotification) GetQosMonReports

func (o *EventNotification) GetQosMonReports() []QosMonitoringReport

GetQosMonReports returns the QosMonReports field value if set, zero value otherwise.

func (*EventNotification) GetQosMonReportsOk

func (o *EventNotification) 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 (*EventNotification) GetUsgRep

func (o *EventNotification) GetUsgRep() AccumulatedUsage

GetUsgRep returns the UsgRep field value if set, zero value otherwise.

func (*EventNotification) GetUsgRepOk

func (o *EventNotification) GetUsgRepOk() (*AccumulatedUsage, bool)

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

func (*EventNotification) HasAppliedQosRef

func (o *EventNotification) HasAppliedQosRef() bool

HasAppliedQosRef returns a boolean if a field has been set.

func (*EventNotification) HasFlowIds

func (o *EventNotification) HasFlowIds() bool

HasFlowIds returns a boolean if a field has been set.

func (*EventNotification) HasQosMonReports

func (o *EventNotification) HasQosMonReports() bool

HasQosMonReports returns a boolean if a field has been set.

func (*EventNotification) HasUsgRep

func (o *EventNotification) HasUsgRep() bool

HasUsgRep returns a boolean if a field has been set.

func (EventNotification) MarshalJSON

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

func (*EventNotification) SetAppliedQosRef

func (o *EventNotification) SetAppliedQosRef(v string)

SetAppliedQosRef gets a reference to the given string and assigns it to the AppliedQosRef field.

func (*EventNotification) SetEvent

func (o *EventNotification) SetEvent(v TscEvent)

SetEvent sets field value

func (*EventNotification) SetFlowIds

func (o *EventNotification) SetFlowIds(v []int32)

SetFlowIds gets a reference to the given []int32 and assigns it to the FlowIds field.

func (*EventNotification) SetQosMonReports

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

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

func (*EventNotification) SetUsgRep

func (o *EventNotification) SetUsgRep(v AccumulatedUsage)

SetUsgRep gets a reference to the given AccumulatedUsage and assigns it to the UsgRep field.

func (EventNotification) ToMap

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

func (*EventNotification) UnmarshalJSON

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

type EventsNotification

type EventsNotification struct {
	NotifCorreId string              `json:"notifCorreId"`
	Events       []EventNotification `json:"events"`
}

EventsNotification Describes the notification of matched events.

func NewEventsNotification

func NewEventsNotification(notifCorreId string, events []EventNotification) *EventsNotification

NewEventsNotification instantiates a new EventsNotification object This constructor will assign default values to properties that have it defined, 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 NewEventsNotificationWithDefaults

func NewEventsNotificationWithDefaults() *EventsNotification

NewEventsNotificationWithDefaults instantiates a new EventsNotification object This 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 (*EventsNotification) GetEvents

func (o *EventsNotification) GetEvents() []EventNotification

GetEvents returns the Events field value

func (*EventsNotification) GetEventsOk

func (o *EventsNotification) GetEventsOk() ([]EventNotification, bool)

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

func (*EventsNotification) GetNotifCorreId

func (o *EventsNotification) GetNotifCorreId() string

GetNotifCorreId returns the NotifCorreId field value

func (*EventsNotification) GetNotifCorreIdOk

func (o *EventsNotification) GetNotifCorreIdOk() (*string, bool)

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

func (EventsNotification) MarshalJSON

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

func (*EventsNotification) SetEvents

func (o *EventsNotification) SetEvents(v []EventNotification)

SetEvents sets field value

func (*EventsNotification) SetNotifCorreId

func (o *EventsNotification) SetNotifCorreId(v string)

SetNotifCorreId sets field value

func (EventsNotification) ToMap

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

func (*EventsNotification) UnmarshalJSON

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

type EventsSubscReqData

type EventsSubscReqData struct {
	Events []TscEvent `json:"events"`
	// String providing an URI formatted according to RFC 3986.
	NotifUri     string                    `json:"notifUri"`
	QosMon       *QosMonitoringInformation `json:"qosMon,omitempty"`
	UsgThres     *UsageThreshold           `json:"usgThres,omitempty"`
	NotifCorreId string                    `json:"notifCorreId"`
}

EventsSubscReqData Identifies the events the application subscribes to.

func NewEventsSubscReqData

func NewEventsSubscReqData(events []TscEvent, notifUri string, notifCorreId string) *EventsSubscReqData

NewEventsSubscReqData instantiates a new EventsSubscReqData object This constructor will assign default values to properties that have it defined, 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 NewEventsSubscReqDataWithDefaults

func NewEventsSubscReqDataWithDefaults() *EventsSubscReqData

NewEventsSubscReqDataWithDefaults instantiates a new EventsSubscReqData object This 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 (*EventsSubscReqData) GetEvents

func (o *EventsSubscReqData) GetEvents() []TscEvent

GetEvents returns the Events field value

func (*EventsSubscReqData) GetEventsOk

func (o *EventsSubscReqData) GetEventsOk() ([]TscEvent, bool)

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

func (*EventsSubscReqData) GetNotifCorreId

func (o *EventsSubscReqData) GetNotifCorreId() string

GetNotifCorreId returns the NotifCorreId field value

func (*EventsSubscReqData) GetNotifCorreIdOk

func (o *EventsSubscReqData) GetNotifCorreIdOk() (*string, bool)

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

func (*EventsSubscReqData) GetNotifUri

func (o *EventsSubscReqData) GetNotifUri() string

GetNotifUri returns the NotifUri field value

func (*EventsSubscReqData) GetNotifUriOk

func (o *EventsSubscReqData) GetNotifUriOk() (*string, bool)

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

func (*EventsSubscReqData) GetQosMon

GetQosMon returns the QosMon field value if set, zero value otherwise.

func (*EventsSubscReqData) GetQosMonOk

func (o *EventsSubscReqData) GetQosMonOk() (*QosMonitoringInformation, bool)

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

func (*EventsSubscReqData) GetUsgThres

func (o *EventsSubscReqData) GetUsgThres() UsageThreshold

GetUsgThres returns the UsgThres field value if set, zero value otherwise.

func (*EventsSubscReqData) GetUsgThresOk

func (o *EventsSubscReqData) GetUsgThresOk() (*UsageThreshold, bool)

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

func (*EventsSubscReqData) HasQosMon

func (o *EventsSubscReqData) HasQosMon() bool

HasQosMon returns a boolean if a field has been set.

func (*EventsSubscReqData) HasUsgThres

func (o *EventsSubscReqData) HasUsgThres() bool

HasUsgThres returns a boolean if a field has been set.

func (EventsSubscReqData) MarshalJSON

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

func (*EventsSubscReqData) SetEvents

func (o *EventsSubscReqData) SetEvents(v []TscEvent)

SetEvents sets field value

func (*EventsSubscReqData) SetNotifCorreId

func (o *EventsSubscReqData) SetNotifCorreId(v string)

SetNotifCorreId sets field value

func (*EventsSubscReqData) SetNotifUri

func (o *EventsSubscReqData) SetNotifUri(v string)

SetNotifUri sets field value

func (*EventsSubscReqData) SetQosMon

SetQosMon gets a reference to the given QosMonitoringInformation and assigns it to the QosMon field.

func (*EventsSubscReqData) SetUsgThres

func (o *EventsSubscReqData) SetUsgThres(v UsageThreshold)

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

func (EventsSubscReqData) ToMap

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

func (*EventsSubscReqData) UnmarshalJSON

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

type EventsSubscReqDataRm

type EventsSubscReqDataRm struct {
	Events []TscEvent `json:"events"`
	// String providing an URI formatted according to RFC 3986.
	NotifUri     *string                     `json:"notifUri,omitempty"`
	QosMon       *QosMonitoringInformationRm `json:"qosMon,omitempty"`
	UsgThres     NullableUsageThresholdRm    `json:"usgThres,omitempty"`
	NotifCorreId *string                     `json:"notifCorreId,omitempty"`
}

EventsSubscReqDataRm This data type is defined in the same way as the EventsSubscReqData data type, but with the OpenAPI nullable property set to true.

func NewEventsSubscReqDataRm

func NewEventsSubscReqDataRm(events []TscEvent) *EventsSubscReqDataRm

NewEventsSubscReqDataRm instantiates a new EventsSubscReqDataRm object This constructor will assign default values to properties that have it defined, 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 NewEventsSubscReqDataRmWithDefaults

func NewEventsSubscReqDataRmWithDefaults() *EventsSubscReqDataRm

NewEventsSubscReqDataRmWithDefaults instantiates a new EventsSubscReqDataRm object This 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 (*EventsSubscReqDataRm) GetEvents

func (o *EventsSubscReqDataRm) GetEvents() []TscEvent

GetEvents returns the Events field value

func (*EventsSubscReqDataRm) GetEventsOk

func (o *EventsSubscReqDataRm) GetEventsOk() ([]TscEvent, bool)

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

func (*EventsSubscReqDataRm) GetNotifCorreId

func (o *EventsSubscReqDataRm) GetNotifCorreId() string

GetNotifCorreId returns the NotifCorreId field value if set, zero value otherwise.

func (*EventsSubscReqDataRm) GetNotifCorreIdOk

func (o *EventsSubscReqDataRm) GetNotifCorreIdOk() (*string, bool)

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

func (*EventsSubscReqDataRm) GetNotifUri

func (o *EventsSubscReqDataRm) GetNotifUri() string

GetNotifUri returns the NotifUri field value if set, zero value otherwise.

func (*EventsSubscReqDataRm) GetNotifUriOk

func (o *EventsSubscReqDataRm) GetNotifUriOk() (*string, bool)

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

func (*EventsSubscReqDataRm) GetQosMon

GetQosMon returns the QosMon field value if set, zero value otherwise.

func (*EventsSubscReqDataRm) GetQosMonOk

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

func (*EventsSubscReqDataRm) GetUsgThres

func (o *EventsSubscReqDataRm) GetUsgThres() UsageThresholdRm

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

func (*EventsSubscReqDataRm) GetUsgThresOk

func (o *EventsSubscReqDataRm) GetUsgThresOk() (*UsageThresholdRm, bool)

GetUsgThresOk returns a tuple with the UsgThres 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 (*EventsSubscReqDataRm) HasNotifCorreId

func (o *EventsSubscReqDataRm) HasNotifCorreId() bool

HasNotifCorreId returns a boolean if a field has been set.

func (*EventsSubscReqDataRm) HasNotifUri

func (o *EventsSubscReqDataRm) HasNotifUri() bool

HasNotifUri returns a boolean if a field has been set.

func (*EventsSubscReqDataRm) HasQosMon

func (o *EventsSubscReqDataRm) HasQosMon() bool

HasQosMon returns a boolean if a field has been set.

func (*EventsSubscReqDataRm) HasUsgThres

func (o *EventsSubscReqDataRm) HasUsgThres() bool

HasUsgThres returns a boolean if a field has been set.

func (EventsSubscReqDataRm) MarshalJSON

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

func (*EventsSubscReqDataRm) SetEvents

func (o *EventsSubscReqDataRm) SetEvents(v []TscEvent)

SetEvents sets field value

func (*EventsSubscReqDataRm) SetNotifCorreId

func (o *EventsSubscReqDataRm) SetNotifCorreId(v string)

SetNotifCorreId gets a reference to the given string and assigns it to the NotifCorreId field.

func (*EventsSubscReqDataRm) SetNotifUri

func (o *EventsSubscReqDataRm) SetNotifUri(v string)

SetNotifUri gets a reference to the given string and assigns it to the NotifUri field.

func (*EventsSubscReqDataRm) SetQosMon

SetQosMon gets a reference to the given QosMonitoringInformationRm and assigns it to the QosMon field.

func (*EventsSubscReqDataRm) SetUsgThres

func (o *EventsSubscReqDataRm) SetUsgThres(v UsageThresholdRm)

SetUsgThres gets a reference to the given NullableUsageThresholdRm and assigns it to the UsgThres field.

func (*EventsSubscReqDataRm) SetUsgThresNil

func (o *EventsSubscReqDataRm) SetUsgThresNil()

SetUsgThresNil sets the value for UsgThres to be an explicit nil

func (EventsSubscReqDataRm) ToMap

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

func (*EventsSubscReqDataRm) UnmarshalJSON

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

func (*EventsSubscReqDataRm) UnsetUsgThres

func (o *EventsSubscReqDataRm) UnsetUsgThres()

UnsetUsgThres ensures that no value is present for UsgThres, not even an explicit nil

type EventsSubscriptionDocumentAPIService

type EventsSubscriptionDocumentAPIService service

EventsSubscriptionDocumentAPIService EventsSubscriptionDocumentAPI service

func (*EventsSubscriptionDocumentAPIService) DeleteEventsSubsc

DeleteEventsSubsc Deletes the Events Subscription subresource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param appSessionId String identifying the Individual TSC Application Session Context resource
@return ApiDeleteEventsSubscRequest

func (*EventsSubscriptionDocumentAPIService) DeleteEventsSubscExecute

Execute executes the request

func (*EventsSubscriptionDocumentAPIService) PutEventsSubsc

PutEventsSubsc Creates or modifies an Events Subscription subresource

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param appSessionId String identifying the Events Subscription resource
@return ApiPutEventsSubscRequest

func (*EventsSubscriptionDocumentAPIService) PutEventsSubscExecute

Execute executes the request

@return EventsSubscReqData

type FlowDirection

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

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

func (*FlowDirection) MarshalJSON

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

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

func (*FlowDirection) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type FlowInfo

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

FlowInfo Represents IP flow information.

func NewFlowInfo

func NewFlowInfo(flowId int32) *FlowInfo

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

func NewFlowInfoWithDefaults

func NewFlowInfoWithDefaults() *FlowInfo

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

func (*FlowInfo) GetFlowDescriptions

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

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

func (*FlowInfo) GetFlowDescriptionsOk

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

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

func (*FlowInfo) GetFlowId

func (o *FlowInfo) GetFlowId() int32

GetFlowId returns the FlowId field value

func (*FlowInfo) GetFlowIdOk

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

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

func (*FlowInfo) HasFlowDescriptions

func (o *FlowInfo) HasFlowDescriptions() bool

HasFlowDescriptions returns a boolean if a field has been set.

func (FlowInfo) MarshalJSON

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

func (*FlowInfo) SetFlowDescriptions

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

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

func (*FlowInfo) SetFlowId

func (o *FlowInfo) SetFlowId(v int32)

SetFlowId sets field value

func (FlowInfo) ToMap

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

func (*FlowInfo) UnmarshalJSON

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

type GenericOpenAPIError

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

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

func (GenericOpenAPIError) Body

func (e GenericOpenAPIError) Body() []byte

Body returns the raw bytes of the response

func (GenericOpenAPIError) Error

func (e GenericOpenAPIError) Error() string

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

func (GenericOpenAPIError) Model

func (e GenericOpenAPIError) Model() interface{}

Model returns the unpacked model of the error

type IndividualTSCApplicationSessionContextDocumentAPIService

type IndividualTSCApplicationSessionContextDocumentAPIService service

IndividualTSCApplicationSessionContextDocumentAPIService IndividualTSCApplicationSessionContextDocumentAPI service

func (*IndividualTSCApplicationSessionContextDocumentAPIService) DeleteTSCAppSession

DeleteTSCAppSession Deletes an existing Individual TSC Application Session Context

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param appSessionId String identifying the Individual TSC Application Session Context resource.
@return ApiDeleteTSCAppSessionRequest

func (*IndividualTSCApplicationSessionContextDocumentAPIService) DeleteTSCAppSessionExecute

Execute executes the request

@return EventsNotification

func (*IndividualTSCApplicationSessionContextDocumentAPIService) GetTSCAppSession

GetTSCAppSession Reads an existing Individual TSC Application Session Context

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param appSessionId String identifying the resource.
@return ApiGetTSCAppSessionRequest

func (*IndividualTSCApplicationSessionContextDocumentAPIService) GetTSCAppSessionExecute

Execute executes the request

@return TscAppSessionContextData

func (*IndividualTSCApplicationSessionContextDocumentAPIService) ModAppSession

ModAppSession Modifies an existing Individual TSC Application Session Context

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param appSessionId String identifying the resource.
@return ApiModAppSessionRequest

func (*IndividualTSCApplicationSessionContextDocumentAPIService) ModAppSessionExecute

Execute executes the request

@return TscAppSessionContextData

type InvalidParam

type InvalidParam struct {
	// If the invalid parameter is an attribute in a JSON body, this IE shall contain the  attribute's name and shall be encoded as a JSON Pointer. If the invalid parameter is  an HTTP header, this IE shall be formatted as the concatenation of the string \"header \"  plus the name of such header. If the invalid parameter is a query parameter, this IE  shall be formatted as the concatenation of the string \"query \" plus the name of such  query parameter. If the invalid parameter is a variable part in the path of a resource  URI, this IE shall contain the name of the variable, including the symbols \"{\" and \"}\"  used in OpenAPI specification as the notation to represent variable path segments.
	Param string `json:"param"`
	// A human-readable reason, e.g. \"must be a positive integer\". In cases involving failed  operations in a PATCH request, the reason string should identify the operation that  failed using the operation's array index to assist in correlation of the invalid  parameter with the failed operation, e.g.\" Replacement value invalid for attribute  (failed operation index= 4)\"
	Reason *string `json:"reason,omitempty"`
}

InvalidParam It contains an invalid parameter and a related description.

func NewInvalidParam

func NewInvalidParam(param string) *InvalidParam

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

func NewInvalidParamWithDefaults

func NewInvalidParamWithDefaults() *InvalidParam

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

func (*InvalidParam) GetParam

func (o *InvalidParam) GetParam() string

GetParam returns the Param field value

func (*InvalidParam) GetParamOk

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

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

func (*InvalidParam) GetReason

func (o *InvalidParam) GetReason() string

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

func (*InvalidParam) GetReasonOk

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

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

func (*InvalidParam) HasReason

func (o *InvalidParam) HasReason() bool

HasReason returns a boolean if a field has been set.

func (InvalidParam) MarshalJSON

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

func (*InvalidParam) SetParam

func (o *InvalidParam) SetParam(v string)

SetParam sets field value

func (*InvalidParam) SetReason

func (o *InvalidParam) SetReason(v string)

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

func (InvalidParam) ToMap

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

func (*InvalidParam) UnmarshalJSON

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

type IpAddr

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

IpAddr Contains an IP adresse.

func NewIpAddr

func NewIpAddr() *IpAddr

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

func NewIpAddrWithDefaults

func NewIpAddrWithDefaults() *IpAddr

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

func (*IpAddr) GetIpv4Addr

func (o *IpAddr) GetIpv4Addr() string

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

func (*IpAddr) GetIpv4AddrOk

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

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

func (*IpAddr) GetIpv6Addr

func (o *IpAddr) GetIpv6Addr() Ipv6Addr

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

func (*IpAddr) GetIpv6AddrOk

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

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

func (*IpAddr) GetIpv6Prefix

func (o *IpAddr) GetIpv6Prefix() Ipv6Prefix

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

func (*IpAddr) GetIpv6PrefixOk

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

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

func (*IpAddr) HasIpv4Addr

func (o *IpAddr) HasIpv4Addr() bool

HasIpv4Addr returns a boolean if a field has been set.

func (*IpAddr) HasIpv6Addr

func (o *IpAddr) HasIpv6Addr() bool

HasIpv6Addr returns a boolean if a field has been set.

func (*IpAddr) HasIpv6Prefix

func (o *IpAddr) HasIpv6Prefix() bool

HasIpv6Prefix returns a boolean if a field has been set.

func (IpAddr) MarshalJSON

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

func (*IpAddr) SetIpv4Addr

func (o *IpAddr) SetIpv4Addr(v string)

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

func (*IpAddr) SetIpv6Addr

func (o *IpAddr) SetIpv6Addr(v Ipv6Addr)

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

func (*IpAddr) SetIpv6Prefix

func (o *IpAddr) SetIpv6Prefix(v Ipv6Prefix)

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

func (IpAddr) ToMap

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

type Ipv6Addr

type Ipv6Addr struct {
}

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

func NewIpv6Addr

func NewIpv6Addr() *Ipv6Addr

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

func NewIpv6AddrWithDefaults

func NewIpv6AddrWithDefaults() *Ipv6Addr

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

func (Ipv6Addr) MarshalJSON

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

func (Ipv6Addr) ToMap

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

type Ipv6Prefix

type Ipv6Prefix struct {
}

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

func NewIpv6Prefix

func NewIpv6Prefix() *Ipv6Prefix

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

func NewIpv6PrefixWithDefaults

func NewIpv6PrefixWithDefaults() *Ipv6Prefix

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

func (Ipv6Prefix) MarshalJSON

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

func (Ipv6Prefix) ToMap

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

type MappedNullable

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

type NFType

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

NFType NF types known to NRF

func (*NFType) MarshalJSON

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

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

func (*NFType) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type NullableAccessTokenErr

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

func NewNullableAccessTokenErr

func NewNullableAccessTokenErr(val *AccessTokenErr) *NullableAccessTokenErr

func (NullableAccessTokenErr) Get

func (NullableAccessTokenErr) IsSet

func (v NullableAccessTokenErr) IsSet() bool

func (NullableAccessTokenErr) MarshalJSON

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

func (*NullableAccessTokenErr) Set

func (*NullableAccessTokenErr) UnmarshalJSON

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

func (*NullableAccessTokenErr) Unset

func (v *NullableAccessTokenErr) Unset()

type NullableAccessTokenReq

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

func NewNullableAccessTokenReq

func NewNullableAccessTokenReq(val *AccessTokenReq) *NullableAccessTokenReq

func (NullableAccessTokenReq) Get

func (NullableAccessTokenReq) IsSet

func (v NullableAccessTokenReq) IsSet() bool

func (NullableAccessTokenReq) MarshalJSON

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

func (*NullableAccessTokenReq) Set

func (*NullableAccessTokenReq) UnmarshalJSON

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

func (*NullableAccessTokenReq) Unset

func (v *NullableAccessTokenReq) Unset()

type NullableAccumulatedUsage

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

func NewNullableAccumulatedUsage

func NewNullableAccumulatedUsage(val *AccumulatedUsage) *NullableAccumulatedUsage

func (NullableAccumulatedUsage) Get

func (NullableAccumulatedUsage) IsSet

func (v NullableAccumulatedUsage) IsSet() bool

func (NullableAccumulatedUsage) MarshalJSON

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

func (*NullableAccumulatedUsage) Set

func (*NullableAccumulatedUsage) UnmarshalJSON

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

func (*NullableAccumulatedUsage) Unset

func (v *NullableAccumulatedUsage) Unset()

type NullableAlternativeServiceRequirementsData

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

func (NullableAlternativeServiceRequirementsData) Get

func (NullableAlternativeServiceRequirementsData) IsSet

func (NullableAlternativeServiceRequirementsData) MarshalJSON

func (*NullableAlternativeServiceRequirementsData) Set

func (*NullableAlternativeServiceRequirementsData) UnmarshalJSON

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

func (*NullableAlternativeServiceRequirementsData) Unset

type NullableBool

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

func NewNullableBool

func NewNullableBool(val *bool) *NullableBool

func (NullableBool) Get

func (v NullableBool) Get() *bool

func (NullableBool) IsSet

func (v NullableBool) IsSet() bool

func (NullableBool) MarshalJSON

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

func (*NullableBool) Set

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

func (*NullableBool) UnmarshalJSON

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

func (*NullableBool) Unset

func (v *NullableBool) Unset()

type NullableEthFlowDescription

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

func NewNullableEthFlowDescription

func NewNullableEthFlowDescription(val *EthFlowDescription) *NullableEthFlowDescription

func (NullableEthFlowDescription) Get

func (NullableEthFlowDescription) IsSet

func (v NullableEthFlowDescription) IsSet() bool

func (NullableEthFlowDescription) MarshalJSON

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

func (*NullableEthFlowDescription) Set

func (*NullableEthFlowDescription) UnmarshalJSON

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

func (*NullableEthFlowDescription) Unset

func (v *NullableEthFlowDescription) Unset()

type NullableEthFlowInfo

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

func NewNullableEthFlowInfo

func NewNullableEthFlowInfo(val *EthFlowInfo) *NullableEthFlowInfo

func (NullableEthFlowInfo) Get

func (NullableEthFlowInfo) IsSet

func (v NullableEthFlowInfo) IsSet() bool

func (NullableEthFlowInfo) MarshalJSON

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

func (*NullableEthFlowInfo) Set

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

func (*NullableEthFlowInfo) UnmarshalJSON

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

func (*NullableEthFlowInfo) Unset

func (v *NullableEthFlowInfo) Unset()

type NullableEventNotification

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

func NewNullableEventNotification

func NewNullableEventNotification(val *EventNotification) *NullableEventNotification

func (NullableEventNotification) Get

func (NullableEventNotification) IsSet

func (v NullableEventNotification) IsSet() bool

func (NullableEventNotification) MarshalJSON

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

func (*NullableEventNotification) Set

func (*NullableEventNotification) UnmarshalJSON

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

func (*NullableEventNotification) Unset

func (v *NullableEventNotification) Unset()

type NullableEventsNotification

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

func NewNullableEventsNotification

func NewNullableEventsNotification(val *EventsNotification) *NullableEventsNotification

func (NullableEventsNotification) Get

func (NullableEventsNotification) IsSet

func (v NullableEventsNotification) IsSet() bool

func (NullableEventsNotification) MarshalJSON

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

func (*NullableEventsNotification) Set

func (*NullableEventsNotification) UnmarshalJSON

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

func (*NullableEventsNotification) Unset

func (v *NullableEventsNotification) Unset()

type NullableEventsSubscReqData

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

func NewNullableEventsSubscReqData

func NewNullableEventsSubscReqData(val *EventsSubscReqData) *NullableEventsSubscReqData

func (NullableEventsSubscReqData) Get

func (NullableEventsSubscReqData) IsSet

func (v NullableEventsSubscReqData) IsSet() bool

func (NullableEventsSubscReqData) MarshalJSON

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

func (*NullableEventsSubscReqData) Set

func (*NullableEventsSubscReqData) UnmarshalJSON

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

func (*NullableEventsSubscReqData) Unset

func (v *NullableEventsSubscReqData) Unset()

type NullableEventsSubscReqDataRm

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

func NewNullableEventsSubscReqDataRm

func NewNullableEventsSubscReqDataRm(val *EventsSubscReqDataRm) *NullableEventsSubscReqDataRm

func (NullableEventsSubscReqDataRm) Get

func (NullableEventsSubscReqDataRm) IsSet

func (NullableEventsSubscReqDataRm) MarshalJSON

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

func (*NullableEventsSubscReqDataRm) Set

func (*NullableEventsSubscReqDataRm) UnmarshalJSON

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

func (*NullableEventsSubscReqDataRm) Unset

func (v *NullableEventsSubscReqDataRm) Unset()

type NullableFloat32

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

func NewNullableFloat32

func NewNullableFloat32(val *float32) *NullableFloat32

func (NullableFloat32) Get

func (v NullableFloat32) Get() *float32

func (NullableFloat32) IsSet

func (v NullableFloat32) IsSet() bool

func (NullableFloat32) MarshalJSON

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

func (*NullableFloat32) Set

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

func (*NullableFloat32) UnmarshalJSON

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

func (*NullableFloat32) Unset

func (v *NullableFloat32) Unset()

type NullableFloat64

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

func NewNullableFloat64

func NewNullableFloat64(val *float64) *NullableFloat64

func (NullableFloat64) Get

func (v NullableFloat64) Get() *float64

func (NullableFloat64) IsSet

func (v NullableFloat64) IsSet() bool

func (NullableFloat64) MarshalJSON

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

func (*NullableFloat64) Set

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

func (*NullableFloat64) UnmarshalJSON

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

func (*NullableFloat64) Unset

func (v *NullableFloat64) Unset()

type NullableFlowDirection

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

func NewNullableFlowDirection

func NewNullableFlowDirection(val *FlowDirection) *NullableFlowDirection

func (NullableFlowDirection) Get

func (NullableFlowDirection) IsSet

func (v NullableFlowDirection) IsSet() bool

func (NullableFlowDirection) MarshalJSON

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

func (*NullableFlowDirection) Set

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

func (*NullableFlowDirection) UnmarshalJSON

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

func (*NullableFlowDirection) Unset

func (v *NullableFlowDirection) Unset()

type NullableFlowInfo

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

func NewNullableFlowInfo

func NewNullableFlowInfo(val *FlowInfo) *NullableFlowInfo

func (NullableFlowInfo) Get

func (v NullableFlowInfo) Get() *FlowInfo

func (NullableFlowInfo) IsSet

func (v NullableFlowInfo) IsSet() bool

func (NullableFlowInfo) MarshalJSON

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

func (*NullableFlowInfo) Set

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

func (*NullableFlowInfo) UnmarshalJSON

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

func (*NullableFlowInfo) Unset

func (v *NullableFlowInfo) Unset()

type NullableInt

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

func NewNullableInt

func NewNullableInt(val *int) *NullableInt

func (NullableInt) Get

func (v NullableInt) Get() *int

func (NullableInt) IsSet

func (v NullableInt) IsSet() bool

func (NullableInt) MarshalJSON

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

func (*NullableInt) Set

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

func (*NullableInt) UnmarshalJSON

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

func (*NullableInt) Unset

func (v *NullableInt) Unset()

type NullableInt32

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

func NewNullableInt32

func NewNullableInt32(val *int32) *NullableInt32

func (NullableInt32) Get

func (v NullableInt32) Get() *int32

func (NullableInt32) IsSet

func (v NullableInt32) IsSet() bool

func (NullableInt32) MarshalJSON

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

func (*NullableInt32) Set

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

func (*NullableInt32) UnmarshalJSON

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

func (*NullableInt32) Unset

func (v *NullableInt32) Unset()

type NullableInt64

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

func NewNullableInt64

func NewNullableInt64(val *int64) *NullableInt64

func (NullableInt64) Get

func (v NullableInt64) Get() *int64

func (NullableInt64) IsSet

func (v NullableInt64) IsSet() bool

func (NullableInt64) MarshalJSON

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

func (*NullableInt64) Set

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

func (*NullableInt64) UnmarshalJSON

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

func (*NullableInt64) Unset

func (v *NullableInt64) Unset()

type NullableInvalidParam

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

func NewNullableInvalidParam

func NewNullableInvalidParam(val *InvalidParam) *NullableInvalidParam

func (NullableInvalidParam) Get

func (NullableInvalidParam) IsSet

func (v NullableInvalidParam) IsSet() bool

func (NullableInvalidParam) MarshalJSON

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

func (*NullableInvalidParam) Set

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

func (*NullableInvalidParam) UnmarshalJSON

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

func (*NullableInvalidParam) Unset

func (v *NullableInvalidParam) Unset()

type NullableIpAddr

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

func NewNullableIpAddr

func NewNullableIpAddr(val *IpAddr) *NullableIpAddr

func (NullableIpAddr) Get

func (v NullableIpAddr) Get() *IpAddr

func (NullableIpAddr) IsSet

func (v NullableIpAddr) IsSet() bool

func (NullableIpAddr) MarshalJSON

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

func (*NullableIpAddr) Set

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

func (*NullableIpAddr) UnmarshalJSON

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

func (*NullableIpAddr) Unset

func (v *NullableIpAddr) Unset()

type NullableIpv6Addr

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

func NewNullableIpv6Addr

func NewNullableIpv6Addr(val *Ipv6Addr) *NullableIpv6Addr

func (NullableIpv6Addr) Get

func (v NullableIpv6Addr) Get() *Ipv6Addr

func (NullableIpv6Addr) IsSet

func (v NullableIpv6Addr) IsSet() bool

func (NullableIpv6Addr) MarshalJSON

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

func (*NullableIpv6Addr) Set

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

func (*NullableIpv6Addr) UnmarshalJSON

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

func (*NullableIpv6Addr) Unset

func (v *NullableIpv6Addr) Unset()

type NullableIpv6Prefix

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

func NewNullableIpv6Prefix

func NewNullableIpv6Prefix(val *Ipv6Prefix) *NullableIpv6Prefix

func (NullableIpv6Prefix) Get

func (v NullableIpv6Prefix) Get() *Ipv6Prefix

func (NullableIpv6Prefix) IsSet

func (v NullableIpv6Prefix) IsSet() bool

func (NullableIpv6Prefix) MarshalJSON

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

func (*NullableIpv6Prefix) Set

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

func (*NullableIpv6Prefix) UnmarshalJSON

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

func (*NullableIpv6Prefix) Unset

func (v *NullableIpv6Prefix) Unset()

type NullableNFType

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

func NewNullableNFType

func NewNullableNFType(val *NFType) *NullableNFType

func (NullableNFType) Get

func (v NullableNFType) Get() *NFType

func (NullableNFType) IsSet

func (v NullableNFType) IsSet() bool

func (NullableNFType) MarshalJSON

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

func (*NullableNFType) Set

func (v *NullableNFType) Set(val *NFType)

func (*NullableNFType) UnmarshalJSON

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

func (*NullableNFType) Unset

func (v *NullableNFType) Unset()

type NullablePlmnId

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

func NewNullablePlmnId

func NewNullablePlmnId(val *PlmnId) *NullablePlmnId

func (NullablePlmnId) Get

func (v NullablePlmnId) Get() *PlmnId

func (NullablePlmnId) IsSet

func (v NullablePlmnId) IsSet() bool

func (NullablePlmnId) MarshalJSON

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

func (*NullablePlmnId) Set

func (v *NullablePlmnId) Set(val *PlmnId)

func (*NullablePlmnId) UnmarshalJSON

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

func (*NullablePlmnId) Unset

func (v *NullablePlmnId) Unset()

type NullablePlmnIdNid

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

func NewNullablePlmnIdNid

func NewNullablePlmnIdNid(val *PlmnIdNid) *NullablePlmnIdNid

func (NullablePlmnIdNid) Get

func (v NullablePlmnIdNid) Get() *PlmnIdNid

func (NullablePlmnIdNid) IsSet

func (v NullablePlmnIdNid) IsSet() bool

func (NullablePlmnIdNid) MarshalJSON

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

func (*NullablePlmnIdNid) Set

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

func (*NullablePlmnIdNid) UnmarshalJSON

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

func (*NullablePlmnIdNid) Unset

func (v *NullablePlmnIdNid) Unset()

type NullableProblemDetails

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

func NewNullableProblemDetails

func NewNullableProblemDetails(val *ProblemDetails) *NullableProblemDetails

func (NullableProblemDetails) Get

func (NullableProblemDetails) IsSet

func (v NullableProblemDetails) IsSet() bool

func (NullableProblemDetails) MarshalJSON

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

func (*NullableProblemDetails) Set

func (*NullableProblemDetails) UnmarshalJSON

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

func (*NullableProblemDetails) Unset

func (v *NullableProblemDetails) Unset()

type NullableQosMonitoringInformation

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

func (NullableQosMonitoringInformation) Get

func (NullableQosMonitoringInformation) IsSet

func (NullableQosMonitoringInformation) MarshalJSON

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

func (*NullableQosMonitoringInformation) Set

func (*NullableQosMonitoringInformation) UnmarshalJSON

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

func (*NullableQosMonitoringInformation) Unset

type NullableQosMonitoringInformationRm

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

func (NullableQosMonitoringInformationRm) Get

func (NullableQosMonitoringInformationRm) IsSet

func (NullableQosMonitoringInformationRm) MarshalJSON

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

func (*NullableQosMonitoringInformationRm) Set

func (*NullableQosMonitoringInformationRm) UnmarshalJSON

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

func (*NullableQosMonitoringInformationRm) Unset

type NullableQosMonitoringReport

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

func NewNullableQosMonitoringReport

func NewNullableQosMonitoringReport(val *QosMonitoringReport) *NullableQosMonitoringReport

func (NullableQosMonitoringReport) Get

func (NullableQosMonitoringReport) IsSet

func (NullableQosMonitoringReport) MarshalJSON

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

func (*NullableQosMonitoringReport) Set

func (*NullableQosMonitoringReport) UnmarshalJSON

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

func (*NullableQosMonitoringReport) Unset

func (v *NullableQosMonitoringReport) Unset()

type NullableRedirectResponse

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

func NewNullableRedirectResponse

func NewNullableRedirectResponse(val *RedirectResponse) *NullableRedirectResponse

func (NullableRedirectResponse) Get

func (NullableRedirectResponse) IsSet

func (v NullableRedirectResponse) IsSet() bool

func (NullableRedirectResponse) MarshalJSON

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

func (*NullableRedirectResponse) Set

func (*NullableRedirectResponse) UnmarshalJSON

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

func (*NullableRedirectResponse) Unset

func (v *NullableRedirectResponse) Unset()

type NullableReportingFrequency

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

func NewNullableReportingFrequency

func NewNullableReportingFrequency(val *ReportingFrequency) *NullableReportingFrequency

func (NullableReportingFrequency) Get

func (NullableReportingFrequency) IsSet

func (v NullableReportingFrequency) IsSet() bool

func (NullableReportingFrequency) MarshalJSON

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

func (*NullableReportingFrequency) Set

func (*NullableReportingFrequency) UnmarshalJSON

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

func (*NullableReportingFrequency) Unset

func (v *NullableReportingFrequency) Unset()

type NullableRequestedQosMonitoringParameter

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

func (NullableRequestedQosMonitoringParameter) Get

func (NullableRequestedQosMonitoringParameter) IsSet

func (NullableRequestedQosMonitoringParameter) MarshalJSON

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

func (*NullableRequestedQosMonitoringParameter) Set

func (*NullableRequestedQosMonitoringParameter) UnmarshalJSON

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

func (*NullableRequestedQosMonitoringParameter) Unset

type NullableSnssai

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

func NewNullableSnssai

func NewNullableSnssai(val *Snssai) *NullableSnssai

func (NullableSnssai) Get

func (v NullableSnssai) Get() *Snssai

func (NullableSnssai) IsSet

func (v NullableSnssai) IsSet() bool

func (NullableSnssai) MarshalJSON

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

func (*NullableSnssai) Set

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

func (*NullableSnssai) UnmarshalJSON

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

func (*NullableSnssai) Unset

func (v *NullableSnssai) Unset()

type NullableSponsoringStatus

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

func NewNullableSponsoringStatus

func NewNullableSponsoringStatus(val *SponsoringStatus) *NullableSponsoringStatus

func (NullableSponsoringStatus) Get

func (NullableSponsoringStatus) IsSet

func (v NullableSponsoringStatus) IsSet() bool

func (NullableSponsoringStatus) MarshalJSON

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

func (*NullableSponsoringStatus) Set

func (*NullableSponsoringStatus) UnmarshalJSON

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

func (*NullableSponsoringStatus) Unset

func (v *NullableSponsoringStatus) 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 NullableTerminationCause

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

func NewNullableTerminationCause

func NewNullableTerminationCause(val *TerminationCause) *NullableTerminationCause

func (NullableTerminationCause) Get

func (NullableTerminationCause) IsSet

func (v NullableTerminationCause) IsSet() bool

func (NullableTerminationCause) MarshalJSON

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

func (*NullableTerminationCause) Set

func (*NullableTerminationCause) UnmarshalJSON

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

func (*NullableTerminationCause) Unset

func (v *NullableTerminationCause) Unset()

type NullableTerminationInfo

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

func NewNullableTerminationInfo

func NewNullableTerminationInfo(val *TerminationInfo) *NullableTerminationInfo

func (NullableTerminationInfo) Get

func (NullableTerminationInfo) IsSet

func (v NullableTerminationInfo) IsSet() bool

func (NullableTerminationInfo) MarshalJSON

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

func (*NullableTerminationInfo) Set

func (*NullableTerminationInfo) UnmarshalJSON

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

func (*NullableTerminationInfo) Unset

func (v *NullableTerminationInfo) 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 NullableTscAppSessionContextData

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

func (NullableTscAppSessionContextData) Get

func (NullableTscAppSessionContextData) IsSet

func (NullableTscAppSessionContextData) MarshalJSON

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

func (*NullableTscAppSessionContextData) Set

func (*NullableTscAppSessionContextData) UnmarshalJSON

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

func (*NullableTscAppSessionContextData) Unset

type NullableTscAppSessionContextUpdateData

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

func (NullableTscAppSessionContextUpdateData) Get

func (NullableTscAppSessionContextUpdateData) IsSet

func (NullableTscAppSessionContextUpdateData) MarshalJSON

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

func (*NullableTscAppSessionContextUpdateData) Set

func (*NullableTscAppSessionContextUpdateData) UnmarshalJSON

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

func (*NullableTscAppSessionContextUpdateData) Unset

type NullableTscEvent

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

func NewNullableTscEvent

func NewNullableTscEvent(val *TscEvent) *NullableTscEvent

func (NullableTscEvent) Get

func (v NullableTscEvent) Get() *TscEvent

func (NullableTscEvent) IsSet

func (v NullableTscEvent) IsSet() bool

func (NullableTscEvent) MarshalJSON

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

func (*NullableTscEvent) Set

func (v *NullableTscEvent) Set(val *TscEvent)

func (*NullableTscEvent) UnmarshalJSON

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

func (*NullableTscEvent) Unset

func (v *NullableTscEvent) Unset()

type NullableTscQosRequirement

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

func NewNullableTscQosRequirement

func NewNullableTscQosRequirement(val *TscQosRequirement) *NullableTscQosRequirement

func (NullableTscQosRequirement) Get

func (NullableTscQosRequirement) IsSet

func (v NullableTscQosRequirement) IsSet() bool

func (NullableTscQosRequirement) MarshalJSON

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

func (*NullableTscQosRequirement) Set

func (*NullableTscQosRequirement) UnmarshalJSON

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

func (*NullableTscQosRequirement) Unset

func (v *NullableTscQosRequirement) Unset()

type NullableTscQosRequirementRm

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

func NewNullableTscQosRequirementRm

func NewNullableTscQosRequirementRm(val *TscQosRequirementRm) *NullableTscQosRequirementRm

func (NullableTscQosRequirementRm) Get

func (NullableTscQosRequirementRm) IsSet

func (NullableTscQosRequirementRm) MarshalJSON

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

func (*NullableTscQosRequirementRm) Set

func (*NullableTscQosRequirementRm) UnmarshalJSON

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

func (*NullableTscQosRequirementRm) Unset

func (v *NullableTscQosRequirementRm) Unset()

type NullableTscaiInputContainer

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

func NewNullableTscaiInputContainer

func NewNullableTscaiInputContainer(val *TscaiInputContainer) *NullableTscaiInputContainer

func (NullableTscaiInputContainer) Get

func (NullableTscaiInputContainer) IsSet

func (NullableTscaiInputContainer) MarshalJSON

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

func (*NullableTscaiInputContainer) Set

func (*NullableTscaiInputContainer) UnmarshalJSON

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

func (*NullableTscaiInputContainer) Unset

func (v *NullableTscaiInputContainer) Unset()

type NullableUsageThreshold

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

func NewNullableUsageThreshold

func NewNullableUsageThreshold(val *UsageThreshold) *NullableUsageThreshold

func (NullableUsageThreshold) Get

func (NullableUsageThreshold) IsSet

func (v NullableUsageThreshold) IsSet() bool

func (NullableUsageThreshold) MarshalJSON

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

func (*NullableUsageThreshold) Set

func (*NullableUsageThreshold) UnmarshalJSON

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

func (*NullableUsageThreshold) Unset

func (v *NullableUsageThreshold) Unset()

type NullableUsageThresholdRm

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

func NewNullableUsageThresholdRm

func NewNullableUsageThresholdRm(val *UsageThresholdRm) *NullableUsageThresholdRm

func (NullableUsageThresholdRm) Get

func (NullableUsageThresholdRm) IsSet

func (v NullableUsageThresholdRm) IsSet() bool

func (NullableUsageThresholdRm) MarshalJSON

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

func (*NullableUsageThresholdRm) Set

func (*NullableUsageThresholdRm) UnmarshalJSON

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

func (*NullableUsageThresholdRm) Unset

func (v *NullableUsageThresholdRm) Unset()

type PlmnId

type PlmnId struct {
	// Mobile Country Code part of the PLMN, comprising 3 digits, as defined in clause 9.3.3.5 of 3GPP TS 38.413.
	Mcc string `json:"mcc"`
	// Mobile Network Code part of the PLMN, comprising 2 or 3 digits, as defined in clause 9.3.3.5 of 3GPP TS 38.413.
	Mnc string `json:"mnc"`
}

PlmnId When PlmnId needs to be converted to string (e.g. when used in maps as key), the string shall be composed of three digits \"mcc\" followed by \"-\" and two or three digits \"mnc\".

func NewPlmnId

func NewPlmnId(mcc string, mnc string) *PlmnId

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

func NewPlmnIdWithDefaults

func NewPlmnIdWithDefaults() *PlmnId

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

func (*PlmnId) GetMcc

func (o *PlmnId) GetMcc() string

GetMcc returns the Mcc field value

func (*PlmnId) GetMccOk

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

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

func (*PlmnId) GetMnc

func (o *PlmnId) GetMnc() string

GetMnc returns the Mnc field value

func (*PlmnId) GetMncOk

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

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

func (PlmnId) MarshalJSON

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

func (*PlmnId) SetMcc

func (o *PlmnId) SetMcc(v string)

SetMcc sets field value

func (*PlmnId) SetMnc

func (o *PlmnId) SetMnc(v string)

SetMnc sets field value

func (PlmnId) ToMap

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

func (*PlmnId) UnmarshalJSON

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

type PlmnIdNid

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

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

func NewPlmnIdNid

func NewPlmnIdNid(mcc string, mnc string) *PlmnIdNid

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

func NewPlmnIdNidWithDefaults

func NewPlmnIdNidWithDefaults() *PlmnIdNid

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

func (*PlmnIdNid) GetMcc

func (o *PlmnIdNid) GetMcc() string

GetMcc returns the Mcc field value

func (*PlmnIdNid) GetMccOk

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

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

func (*PlmnIdNid) GetMnc

func (o *PlmnIdNid) GetMnc() string

GetMnc returns the Mnc field value

func (*PlmnIdNid) GetMncOk

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

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

func (*PlmnIdNid) GetNid

func (o *PlmnIdNid) GetNid() string

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

func (*PlmnIdNid) GetNidOk

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

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

func (*PlmnIdNid) HasNid

func (o *PlmnIdNid) HasNid() bool

HasNid returns a boolean if a field has been set.

func (PlmnIdNid) MarshalJSON

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

func (*PlmnIdNid) SetMcc

func (o *PlmnIdNid) SetMcc(v string)

SetMcc sets field value

func (*PlmnIdNid) SetMnc

func (o *PlmnIdNid) SetMnc(v string)

SetMnc sets field value

func (*PlmnIdNid) SetNid

func (o *PlmnIdNid) SetNid(v string)

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

func (PlmnIdNid) ToMap

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

func (*PlmnIdNid) UnmarshalJSON

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

type ProblemDetails

type ProblemDetails struct {
	// String providing an URI formatted according to RFC 3986.
	Type   *string `json:"type,omitempty"`
	Title  *string `json:"title,omitempty"`
	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 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"`
	InvalidParams []InvalidParam `json:"invalidParams,omitempty"`
	// A string used to indicate the features supported by an API that is used as defined in clause  6.6 in 3GPP TS 29.500. The string shall contain a bitmask indicating supported features in  hexadecimal representation Each character in the string shall take a value of \"0\" to \"9\",  \"a\" to \"f\" or \"A\" to \"F\" and shall represent the support of 4 features as described in  table 5.2.2-3. The most significant character representing the highest-numbered features shall  appear first in the string, and the character representing features 1 to 4 shall appear last  in the string. The list of features and their numbering (starting with 1) are defined  separately for each API. If the string contains a lower number of characters than there are  defined features for an API, all features that would be represented by characters that are not  present in the string are not supported.
	SupportedFeatures  *string         `json:"supportedFeatures,omitempty"`
	AccessTokenError   *AccessTokenErr `json:"accessTokenError,omitempty"`
	AccessTokenRequest *AccessTokenReq `json:"accessTokenRequest,omitempty"`
	// Fully Qualified Domain Name
	NrfId *string `json:"nrfId,omitempty"`
}

ProblemDetails Provides additional information in an error response.

func NewProblemDetails

func NewProblemDetails() *ProblemDetails

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

func NewProblemDetailsWithDefaults

func NewProblemDetailsWithDefaults() *ProblemDetails

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

func (*ProblemDetails) GetAccessTokenError

func (o *ProblemDetails) GetAccessTokenError() AccessTokenErr

GetAccessTokenError returns the AccessTokenError field value if set, zero value otherwise.

func (*ProblemDetails) GetAccessTokenErrorOk

func (o *ProblemDetails) GetAccessTokenErrorOk() (*AccessTokenErr, bool)

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

func (*ProblemDetails) GetAccessTokenRequest

func (o *ProblemDetails) GetAccessTokenRequest() AccessTokenReq

GetAccessTokenRequest returns the AccessTokenRequest field value if set, zero value otherwise.

func (*ProblemDetails) GetAccessTokenRequestOk

func (o *ProblemDetails) GetAccessTokenRequestOk() (*AccessTokenReq, bool)

GetAccessTokenRequestOk returns a tuple with the AccessTokenRequest field value if set, nil otherwise and a boolean to check if the value has been 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) GetNrfId

func (o *ProblemDetails) GetNrfId() string

GetNrfId returns the NrfId field value if set, zero value otherwise.

func (*ProblemDetails) GetNrfIdOk

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

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

func (*ProblemDetails) GetStatus

func (o *ProblemDetails) GetStatus() int32

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

func (*ProblemDetails) GetStatusOk

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

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

func (*ProblemDetails) GetSupportedFeatures

func (o *ProblemDetails) GetSupportedFeatures() string

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

func (*ProblemDetails) GetSupportedFeaturesOk

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

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

func (*ProblemDetails) GetTitle

func (o *ProblemDetails) GetTitle() string

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

func (*ProblemDetails) GetTitleOk

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

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

func (*ProblemDetails) GetType

func (o *ProblemDetails) GetType() string

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

func (*ProblemDetails) GetTypeOk

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

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

func (*ProblemDetails) HasAccessTokenError

func (o *ProblemDetails) HasAccessTokenError() bool

HasAccessTokenError returns a boolean if a field has been set.

func (*ProblemDetails) HasAccessTokenRequest

func (o *ProblemDetails) HasAccessTokenRequest() bool

HasAccessTokenRequest returns a boolean if a field 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) HasNrfId

func (o *ProblemDetails) HasNrfId() bool

HasNrfId returns a boolean if a field has been set.

func (*ProblemDetails) HasStatus

func (o *ProblemDetails) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*ProblemDetails) HasSupportedFeatures

func (o *ProblemDetails) HasSupportedFeatures() bool

HasSupportedFeatures returns a boolean if a field has been set.

func (*ProblemDetails) HasTitle

func (o *ProblemDetails) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*ProblemDetails) HasType

func (o *ProblemDetails) HasType() bool

HasType returns a boolean if a field has been set.

func (ProblemDetails) MarshalJSON

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

func (*ProblemDetails) SetAccessTokenError

func (o *ProblemDetails) SetAccessTokenError(v AccessTokenErr)

SetAccessTokenError gets a reference to the given AccessTokenErr and assigns it to the AccessTokenError field.

func (*ProblemDetails) SetAccessTokenRequest

func (o *ProblemDetails) SetAccessTokenRequest(v AccessTokenReq)

SetAccessTokenRequest gets a reference to the given AccessTokenReq and assigns it to the AccessTokenRequest field.

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

func (o *ProblemDetails) SetNrfId(v string)

SetNrfId gets a reference to the given string and assigns it to the NrfId field.

func (*ProblemDetails) SetStatus

func (o *ProblemDetails) SetStatus(v int32)

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

func (*ProblemDetails) SetSupportedFeatures

func (o *ProblemDetails) SetSupportedFeatures(v string)

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

func (*ProblemDetails) SetTitle

func (o *ProblemDetails) SetTitle(v string)

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

func (*ProblemDetails) SetType

func (o *ProblemDetails) SetType(v string)

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

func (ProblemDetails) ToMap

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

type QosMonitoringInformation

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

QosMonitoringInformation Represents QoS monitoring information.

func NewQosMonitoringInformation

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

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

func NewQosMonitoringInformationWithDefaults

func NewQosMonitoringInformationWithDefaults() *QosMonitoringInformation

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

func (*QosMonitoringInformation) GetRepFreqs

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

GetRepFreqs returns the RepFreqs field value

func (*QosMonitoringInformation) GetRepFreqsOk

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

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

func (*QosMonitoringInformation) GetRepPeriod

func (o *QosMonitoringInformation) GetRepPeriod() int32

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

func (*QosMonitoringInformation) GetRepPeriodOk

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

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

func (*QosMonitoringInformation) GetRepThreshDl

func (o *QosMonitoringInformation) GetRepThreshDl() int32

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

func (*QosMonitoringInformation) GetRepThreshDlOk

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

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

func (*QosMonitoringInformation) GetRepThreshRp

func (o *QosMonitoringInformation) GetRepThreshRp() int32

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

func (*QosMonitoringInformation) GetRepThreshRpOk

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

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

func (*QosMonitoringInformation) GetRepThreshUl

func (o *QosMonitoringInformation) GetRepThreshUl() int32

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

func (*QosMonitoringInformation) GetRepThreshUlOk

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

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

func (*QosMonitoringInformation) GetReqQosMonParams

GetReqQosMonParams returns the ReqQosMonParams field value

func (*QosMonitoringInformation) GetReqQosMonParamsOk

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

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

func (*QosMonitoringInformation) GetWaitTime

func (o *QosMonitoringInformation) GetWaitTime() int32

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

func (*QosMonitoringInformation) GetWaitTimeOk

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

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

func (*QosMonitoringInformation) HasRepPeriod

func (o *QosMonitoringInformation) HasRepPeriod() bool

HasRepPeriod returns a boolean if a field has been set.

func (*QosMonitoringInformation) HasRepThreshDl

func (o *QosMonitoringInformation) HasRepThreshDl() bool

HasRepThreshDl returns a boolean if a field has been set.

func (*QosMonitoringInformation) HasRepThreshRp

func (o *QosMonitoringInformation) HasRepThreshRp() bool

HasRepThreshRp returns a boolean if a field has been set.

func (*QosMonitoringInformation) HasRepThreshUl

func (o *QosMonitoringInformation) HasRepThreshUl() bool

HasRepThreshUl returns a boolean if a field has been set.

func (*QosMonitoringInformation) HasWaitTime

func (o *QosMonitoringInformation) HasWaitTime() bool

HasWaitTime returns a boolean if a field has been set.

func (QosMonitoringInformation) MarshalJSON

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

func (*QosMonitoringInformation) SetRepFreqs

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

SetRepFreqs sets field value

func (*QosMonitoringInformation) SetRepPeriod

func (o *QosMonitoringInformation) SetRepPeriod(v int32)

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

func (*QosMonitoringInformation) SetRepThreshDl

func (o *QosMonitoringInformation) SetRepThreshDl(v int32)

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

func (*QosMonitoringInformation) SetRepThreshRp

func (o *QosMonitoringInformation) SetRepThreshRp(v int32)

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

func (*QosMonitoringInformation) SetRepThreshUl

func (o *QosMonitoringInformation) SetRepThreshUl(v int32)

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

func (*QosMonitoringInformation) SetReqQosMonParams

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

SetReqQosMonParams sets field value

func (*QosMonitoringInformation) SetWaitTime

func (o *QosMonitoringInformation) SetWaitTime(v int32)

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

func (QosMonitoringInformation) ToMap

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

func (*QosMonitoringInformation) UnmarshalJSON

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

type QosMonitoringInformationRm

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

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

func NewQosMonitoringInformationRm

func NewQosMonitoringInformationRm() *QosMonitoringInformationRm

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

func NewQosMonitoringInformationRmWithDefaults

func NewQosMonitoringInformationRmWithDefaults() *QosMonitoringInformationRm

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

func (*QosMonitoringInformationRm) GetRepFreqs

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

func (*QosMonitoringInformationRm) GetRepFreqsOk

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

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

func (*QosMonitoringInformationRm) GetRepPeriod

func (o *QosMonitoringInformationRm) GetRepPeriod() int32

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

func (*QosMonitoringInformationRm) GetRepPeriodOk

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

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

func (*QosMonitoringInformationRm) GetRepThreshDl

func (o *QosMonitoringInformationRm) GetRepThreshDl() int32

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

func (*QosMonitoringInformationRm) GetRepThreshDlOk

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

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

func (*QosMonitoringInformationRm) GetRepThreshRp

func (o *QosMonitoringInformationRm) GetRepThreshRp() int32

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

func (*QosMonitoringInformationRm) GetRepThreshRpOk

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

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

func (*QosMonitoringInformationRm) GetRepThreshUl

func (o *QosMonitoringInformationRm) GetRepThreshUl() int32

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

func (*QosMonitoringInformationRm) GetRepThreshUlOk

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

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

func (*QosMonitoringInformationRm) GetReqQosMonParams

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

func (*QosMonitoringInformationRm) GetReqQosMonParamsOk

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

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

func (*QosMonitoringInformationRm) GetWaitTime

func (o *QosMonitoringInformationRm) GetWaitTime() int32

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

func (*QosMonitoringInformationRm) GetWaitTimeOk

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

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

func (*QosMonitoringInformationRm) HasRepFreqs

func (o *QosMonitoringInformationRm) HasRepFreqs() bool

HasRepFreqs returns a boolean if a field has been set.

func (*QosMonitoringInformationRm) HasRepPeriod

func (o *QosMonitoringInformationRm) HasRepPeriod() bool

HasRepPeriod returns a boolean if a field has been set.

func (*QosMonitoringInformationRm) HasRepThreshDl

func (o *QosMonitoringInformationRm) HasRepThreshDl() bool

HasRepThreshDl returns a boolean if a field has been set.

func (*QosMonitoringInformationRm) HasRepThreshRp

func (o *QosMonitoringInformationRm) HasRepThreshRp() bool

HasRepThreshRp returns a boolean if a field has been set.

func (*QosMonitoringInformationRm) HasRepThreshUl

func (o *QosMonitoringInformationRm) HasRepThreshUl() bool

HasRepThreshUl returns a boolean if a field has been set.

func (*QosMonitoringInformationRm) HasReqQosMonParams

func (o *QosMonitoringInformationRm) HasReqQosMonParams() bool

HasReqQosMonParams returns a boolean if a field has been set.

func (*QosMonitoringInformationRm) HasWaitTime

func (o *QosMonitoringInformationRm) HasWaitTime() bool

HasWaitTime returns a boolean if a field has been set.

func (QosMonitoringInformationRm) MarshalJSON

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

func (*QosMonitoringInformationRm) SetRepFreqs

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

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

func (*QosMonitoringInformationRm) SetRepPeriod

func (o *QosMonitoringInformationRm) SetRepPeriod(v int32)

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

func (*QosMonitoringInformationRm) SetRepPeriodNil

func (o *QosMonitoringInformationRm) SetRepPeriodNil()

SetRepPeriodNil sets the value for RepPeriod to be an explicit nil

func (*QosMonitoringInformationRm) SetRepThreshDl

func (o *QosMonitoringInformationRm) SetRepThreshDl(v int32)

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

func (*QosMonitoringInformationRm) SetRepThreshDlNil

func (o *QosMonitoringInformationRm) SetRepThreshDlNil()

SetRepThreshDlNil sets the value for RepThreshDl to be an explicit nil

func (*QosMonitoringInformationRm) SetRepThreshRp

func (o *QosMonitoringInformationRm) SetRepThreshRp(v int32)

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

func (*QosMonitoringInformationRm) SetRepThreshRpNil

func (o *QosMonitoringInformationRm) SetRepThreshRpNil()

SetRepThreshRpNil sets the value for RepThreshRp to be an explicit nil

func (*QosMonitoringInformationRm) SetRepThreshUl

func (o *QosMonitoringInformationRm) SetRepThreshUl(v int32)

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

func (*QosMonitoringInformationRm) SetRepThreshUlNil

func (o *QosMonitoringInformationRm) SetRepThreshUlNil()

SetRepThreshUlNil sets the value for RepThreshUl to be an explicit nil

func (*QosMonitoringInformationRm) SetReqQosMonParams

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

func (*QosMonitoringInformationRm) SetWaitTime

func (o *QosMonitoringInformationRm) SetWaitTime(v int32)

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

func (*QosMonitoringInformationRm) SetWaitTimeNil

func (o *QosMonitoringInformationRm) SetWaitTimeNil()

SetWaitTimeNil sets the value for WaitTime to be an explicit nil

func (QosMonitoringInformationRm) ToMap

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

func (*QosMonitoringInformationRm) UnsetRepPeriod

func (o *QosMonitoringInformationRm) UnsetRepPeriod()

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

func (*QosMonitoringInformationRm) UnsetRepThreshDl

func (o *QosMonitoringInformationRm) UnsetRepThreshDl()

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

func (*QosMonitoringInformationRm) UnsetRepThreshRp

func (o *QosMonitoringInformationRm) UnsetRepThreshRp()

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

func (*QosMonitoringInformationRm) UnsetRepThreshUl

func (o *QosMonitoringInformationRm) UnsetRepThreshUl()

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

func (*QosMonitoringInformationRm) UnsetWaitTime

func (o *QosMonitoringInformationRm) UnsetWaitTime()

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

type QosMonitoringReport

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

QosMonitoringReport Represents a QoS monitoring report.

func NewQosMonitoringReport

func NewQosMonitoringReport() *QosMonitoringReport

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

func NewQosMonitoringReportWithDefaults

func NewQosMonitoringReportWithDefaults() *QosMonitoringReport

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

func (*QosMonitoringReport) GetDlDelays

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

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

func (*QosMonitoringReport) GetDlDelaysOk

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

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

func (*QosMonitoringReport) GetPdmf

func (o *QosMonitoringReport) GetPdmf() bool

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

func (*QosMonitoringReport) GetPdmfOk

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

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

func (*QosMonitoringReport) GetRtDelays

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

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

func (*QosMonitoringReport) GetRtDelaysOk

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

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

func (*QosMonitoringReport) GetUlDelays

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

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

func (*QosMonitoringReport) GetUlDelaysOk

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

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

func (*QosMonitoringReport) HasDlDelays

func (o *QosMonitoringReport) HasDlDelays() bool

HasDlDelays returns a boolean if a field has been set.

func (*QosMonitoringReport) HasPdmf

func (o *QosMonitoringReport) HasPdmf() bool

HasPdmf returns a boolean if a field has been set.

func (*QosMonitoringReport) HasRtDelays

func (o *QosMonitoringReport) HasRtDelays() bool

HasRtDelays returns a boolean if a field has been set.

func (*QosMonitoringReport) HasUlDelays

func (o *QosMonitoringReport) HasUlDelays() bool

HasUlDelays returns a boolean if a field has been set.

func (QosMonitoringReport) MarshalJSON

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

func (*QosMonitoringReport) SetDlDelays

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

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

func (*QosMonitoringReport) SetPdmf

func (o *QosMonitoringReport) SetPdmf(v bool)

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

func (*QosMonitoringReport) SetRtDelays

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

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

func (*QosMonitoringReport) SetUlDelays

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

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

func (QosMonitoringReport) ToMap

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

type RedirectResponse

type RedirectResponse struct {
	Cause *string `json:"cause,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	TargetScp *string `json:"targetScp,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	TargetSepp *string `json:"targetSepp,omitempty"`
}

RedirectResponse The response shall include a Location header field containing a different URI (pointing to a different URI of an other service instance), or the same URI if a request is redirected to the same target resource via a different SCP.

func NewRedirectResponse

func NewRedirectResponse() *RedirectResponse

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

func NewRedirectResponseWithDefaults

func NewRedirectResponseWithDefaults() *RedirectResponse

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

func (*RedirectResponse) GetCause

func (o *RedirectResponse) GetCause() string

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

func (*RedirectResponse) GetCauseOk

func (o *RedirectResponse) 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 (*RedirectResponse) GetTargetScp

func (o *RedirectResponse) GetTargetScp() string

GetTargetScp returns the TargetScp field value if set, zero value otherwise.

func (*RedirectResponse) GetTargetScpOk

func (o *RedirectResponse) GetTargetScpOk() (*string, bool)

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

func (*RedirectResponse) GetTargetSepp

func (o *RedirectResponse) GetTargetSepp() string

GetTargetSepp returns the TargetSepp field value if set, zero value otherwise.

func (*RedirectResponse) GetTargetSeppOk

func (o *RedirectResponse) GetTargetSeppOk() (*string, bool)

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

func (*RedirectResponse) HasCause

func (o *RedirectResponse) HasCause() bool

HasCause returns a boolean if a field has been set.

func (*RedirectResponse) HasTargetScp

func (o *RedirectResponse) HasTargetScp() bool

HasTargetScp returns a boolean if a field has been set.

func (*RedirectResponse) HasTargetSepp

func (o *RedirectResponse) HasTargetSepp() bool

HasTargetSepp returns a boolean if a field has been set.

func (RedirectResponse) MarshalJSON

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

func (*RedirectResponse) SetCause

func (o *RedirectResponse) SetCause(v string)

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

func (*RedirectResponse) SetTargetScp

func (o *RedirectResponse) SetTargetScp(v string)

SetTargetScp gets a reference to the given string and assigns it to the TargetScp field.

func (*RedirectResponse) SetTargetSepp

func (o *RedirectResponse) SetTargetSepp(v string)

SetTargetSepp gets a reference to the given string and assigns it to the TargetSepp field.

func (RedirectResponse) ToMap

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

type ReportingFrequency

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

ReportingFrequency Indicates the frequency for the reporting.

func (*ReportingFrequency) MarshalJSON

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

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

func (*ReportingFrequency) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type RequestedQosMonitoringParameter

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

RequestedQosMonitoringParameter Indicates the requested QoS monitoring parameters to be measured.

func (*RequestedQosMonitoringParameter) MarshalJSON

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

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

func (*RequestedQosMonitoringParameter) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type ServerConfiguration

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

ServerConfiguration stores the information about a server

type ServerConfigurations

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL

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

URL formats template on a index using given variables

type ServerVariable

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

ServerVariable stores the information about a server variable

type Snssai

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

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

func NewSnssai

func NewSnssai(sst int32) *Snssai

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

func NewSnssaiWithDefaults

func NewSnssaiWithDefaults() *Snssai

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

func (*Snssai) GetSd

func (o *Snssai) GetSd() string

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

func (*Snssai) GetSdOk

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

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

func (*Snssai) GetSst

func (o *Snssai) GetSst() int32

GetSst returns the Sst field value

func (*Snssai) GetSstOk

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

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

func (*Snssai) HasSd

func (o *Snssai) HasSd() bool

HasSd returns a boolean if a field has been set.

func (Snssai) MarshalJSON

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

func (*Snssai) SetSd

func (o *Snssai) SetSd(v string)

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

func (*Snssai) SetSst

func (o *Snssai) SetSst(v int32)

SetSst sets field value

func (Snssai) ToMap

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

func (*Snssai) UnmarshalJSON

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

type SponsoringStatus

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

SponsoringStatus Indicates whether sponsored data connectivity is enabled or disabled/not enabled.

func (*SponsoringStatus) MarshalJSON

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

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

func (*SponsoringStatus) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type TSCApplicationSessionsCollectionAPIService

type TSCApplicationSessionsCollectionAPIService service

TSCApplicationSessionsCollectionAPIService TSCApplicationSessionsCollectionAPI service

func (*TSCApplicationSessionsCollectionAPIService) PostTSCAppSessions

PostTSCAppSessions Creates a new Individual TSC Application Session Context resource

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiPostTSCAppSessionsRequest

func (*TSCApplicationSessionsCollectionAPIService) PostTSCAppSessionsExecute

Execute executes the request

@return TscAppSessionContextData

type TerminationCause

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

TerminationCause Indicates the cause behind requesting the deletion of the Individual Application Session Context resource.

func (*TerminationCause) MarshalJSON

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

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

func (*TerminationCause) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type TerminationInfo

type TerminationInfo struct {
	TermCause TerminationCause `json:"termCause"`
	// String providing an URI formatted according to RFC 3986.
	ResUri string `json:"resUri"`
}

TerminationInfo Indicates the cause for requesting the deletion of the Individual Application Session Context resource.

func NewTerminationInfo

func NewTerminationInfo(termCause TerminationCause, resUri string) *TerminationInfo

NewTerminationInfo instantiates a new TerminationInfo object This constructor will assign default values to properties that have it defined, 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 NewTerminationInfoWithDefaults

func NewTerminationInfoWithDefaults() *TerminationInfo

NewTerminationInfoWithDefaults instantiates a new TerminationInfo object This 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 (*TerminationInfo) GetResUri

func (o *TerminationInfo) GetResUri() string

GetResUri returns the ResUri field value

func (*TerminationInfo) GetResUriOk

func (o *TerminationInfo) GetResUriOk() (*string, bool)

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

func (*TerminationInfo) GetTermCause

func (o *TerminationInfo) GetTermCause() TerminationCause

GetTermCause returns the TermCause field value

func (*TerminationInfo) GetTermCauseOk

func (o *TerminationInfo) GetTermCauseOk() (*TerminationCause, bool)

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

func (TerminationInfo) MarshalJSON

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

func (*TerminationInfo) SetResUri

func (o *TerminationInfo) SetResUri(v string)

SetResUri sets field value

func (*TerminationInfo) SetTermCause

func (o *TerminationInfo) SetTermCause(v TerminationCause)

SetTermCause sets field value

func (TerminationInfo) ToMap

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

func (*TerminationInfo) UnmarshalJSON

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

type TscAppSessionContextData

type TscAppSessionContextData struct {
	UeIpAddr NullableIpAddr `json:"ueIpAddr,omitempty"`
	// The IPv4 address domain identifier.
	IpDomain *string `json:"ipDomain,omitempty"`
	// String identifying a MAC address formatted in the hexadecimal notation according to clause 1.1 and clause 2.1 of RFC 7042.
	UeMac *string `json:"ueMac,omitempty"`
	// String representing a Data Network as defined in clause 9A of 3GPP TS 23.003;  it shall contain either a DNN Network Identifier, or a full DNN with both the Network  Identifier and Operator Identifier, as specified in 3GPP TS 23.003 clause 9.1.1 and 9.1.2. It shall be coded as string in which the labels are separated by dots  (e.g. \"Label1.Label2.Label3\").
	Dnn    *string `json:"dnn,omitempty"`
	Snssai *Snssai `json:"snssai,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	NotifUri string `json:"notifUri"`
	// Identifies the Application Identifier.
	AppId       *string              `json:"appId,omitempty"`
	EthFlowInfo []EthFlowDescription `json:"ethFlowInfo,omitempty"`
	// Identifies the Ethernet flows which require QoS. Each Ethernet flow consists of a flow identifer and the corresponding UL and/or DL flows.
	EnEthFlowInfo []EthFlowInfo `json:"enEthFlowInfo,omitempty"`
	FlowInfo      []FlowInfo    `json:"flowInfo,omitempty"`
	// Identifies the AF identifier.
	AfId      string             `json:"afId"`
	TscQosReq *TscQosRequirement `json:"tscQosReq,omitempty"`
	// Identifies a pre-defined QoS information.
	QosReference string `json:"qosReference"`
	// Identifies an ordered list of pre-defined QoS information.
	AltQosReferences []string `json:"altQosReferences,omitempty"`
	// Identifies an ordered list of alternative service requirements that include individual QoS parameter sets. The lower the index of the array for a given entry, the higher the priority.
	AltQosReqs []AlternativeServiceRequirementsData `json:"altQosReqs,omitempty"`
	// Contains an identity of an application service provider.
	AspId *string `json:"aspId,omitempty"`
	// Contains an identity of a sponsor.
	SponId     *string             `json:"sponId,omitempty"`
	SponStatus *SponsoringStatus   `json:"sponStatus,omitempty"`
	EvSubsc    *EventsSubscReqData `json:"evSubsc,omitempty"`
	// A string used to indicate the features supported by an API that is used as defined in clause  6.6 in 3GPP TS 29.500. The string shall contain a bitmask indicating supported features in  hexadecimal representation Each character in the string shall take a value of \"0\" to \"9\",  \"a\" to \"f\" or \"A\" to \"F\" and shall represent the support of 4 features as described in  table 5.2.2-3. The most significant character representing the highest-numbered features shall  appear first in the string, and the character representing features 1 to 4 shall appear last  in the string. The list of features and their numbering (starting with 1) are defined  separately for each API. If the string contains a lower number of characters than there are  defined features for an API, all features that would be represented by characters that are not  present in the string are not supported.
	SuppFeat *string `json:"suppFeat,omitempty"`
}

TscAppSessionContextData Represents an Individual TSC Application Session Context resource.

func NewTscAppSessionContextData

func NewTscAppSessionContextData(notifUri string, afId string, qosReference string) *TscAppSessionContextData

NewTscAppSessionContextData instantiates a new TscAppSessionContextData object This constructor will assign default values to properties that have it defined, 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 NewTscAppSessionContextDataWithDefaults

func NewTscAppSessionContextDataWithDefaults() *TscAppSessionContextData

NewTscAppSessionContextDataWithDefaults instantiates a new TscAppSessionContextData object This 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 (*TscAppSessionContextData) GetAfId

func (o *TscAppSessionContextData) GetAfId() string

GetAfId returns the AfId field value

func (*TscAppSessionContextData) GetAfIdOk

func (o *TscAppSessionContextData) GetAfIdOk() (*string, bool)

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

func (*TscAppSessionContextData) GetAltQosReferences

func (o *TscAppSessionContextData) GetAltQosReferences() []string

GetAltQosReferences returns the AltQosReferences field value if set, zero value otherwise.

func (*TscAppSessionContextData) GetAltQosReferencesOk

func (o *TscAppSessionContextData) 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 (*TscAppSessionContextData) GetAltQosReqs

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

func (*TscAppSessionContextData) GetAltQosReqsOk

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

func (*TscAppSessionContextData) GetAppId

func (o *TscAppSessionContextData) GetAppId() string

GetAppId returns the AppId field value if set, zero value otherwise.

func (*TscAppSessionContextData) GetAppIdOk

func (o *TscAppSessionContextData) GetAppIdOk() (*string, bool)

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

func (*TscAppSessionContextData) GetAspId

func (o *TscAppSessionContextData) GetAspId() string

GetAspId returns the AspId field value if set, zero value otherwise.

func (*TscAppSessionContextData) GetAspIdOk

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

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

func (*TscAppSessionContextData) GetDnn

func (o *TscAppSessionContextData) GetDnn() string

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

func (*TscAppSessionContextData) GetDnnOk

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

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

func (*TscAppSessionContextData) GetEnEthFlowInfo

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

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

func (*TscAppSessionContextData) GetEnEthFlowInfoOk

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

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

func (*TscAppSessionContextData) GetEthFlowInfo

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

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

func (*TscAppSessionContextData) GetEthFlowInfoOk

func (o *TscAppSessionContextData) 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 (*TscAppSessionContextData) GetEvSubsc

GetEvSubsc returns the EvSubsc field value if set, zero value otherwise.

func (*TscAppSessionContextData) GetEvSubscOk

func (o *TscAppSessionContextData) GetEvSubscOk() (*EventsSubscReqData, bool)

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

func (*TscAppSessionContextData) GetFlowInfo

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

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

func (*TscAppSessionContextData) GetFlowInfoOk

func (o *TscAppSessionContextData) 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 (*TscAppSessionContextData) GetIpDomain

func (o *TscAppSessionContextData) GetIpDomain() string

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

func (*TscAppSessionContextData) GetIpDomainOk

func (o *TscAppSessionContextData) 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 (*TscAppSessionContextData) GetNotifUri

func (o *TscAppSessionContextData) GetNotifUri() string

GetNotifUri returns the NotifUri field value

func (*TscAppSessionContextData) GetNotifUriOk

func (o *TscAppSessionContextData) GetNotifUriOk() (*string, bool)

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

func (*TscAppSessionContextData) GetQosReference

func (o *TscAppSessionContextData) GetQosReference() string

GetQosReference returns the QosReference field value

func (*TscAppSessionContextData) GetQosReferenceOk

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

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

func (*TscAppSessionContextData) GetSnssai

func (o *TscAppSessionContextData) GetSnssai() Snssai

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

func (*TscAppSessionContextData) GetSnssaiOk

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

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

func (*TscAppSessionContextData) GetSponId

func (o *TscAppSessionContextData) GetSponId() string

GetSponId returns the SponId field value if set, zero value otherwise.

func (*TscAppSessionContextData) GetSponIdOk

func (o *TscAppSessionContextData) GetSponIdOk() (*string, bool)

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

func (*TscAppSessionContextData) GetSponStatus

func (o *TscAppSessionContextData) GetSponStatus() SponsoringStatus

GetSponStatus returns the SponStatus field value if set, zero value otherwise.

func (*TscAppSessionContextData) GetSponStatusOk

func (o *TscAppSessionContextData) GetSponStatusOk() (*SponsoringStatus, bool)

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

func (*TscAppSessionContextData) GetSuppFeat

func (o *TscAppSessionContextData) GetSuppFeat() string

GetSuppFeat returns the SuppFeat field value if set, zero value otherwise.

func (*TscAppSessionContextData) GetSuppFeatOk

func (o *TscAppSessionContextData) GetSuppFeatOk() (*string, bool)

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

func (*TscAppSessionContextData) GetTscQosReq

func (o *TscAppSessionContextData) GetTscQosReq() TscQosRequirement

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

func (*TscAppSessionContextData) GetTscQosReqOk

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

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

func (*TscAppSessionContextData) GetUeIpAddr

func (o *TscAppSessionContextData) GetUeIpAddr() IpAddr

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

func (*TscAppSessionContextData) GetUeIpAddrOk

func (o *TscAppSessionContextData) GetUeIpAddrOk() (*IpAddr, bool)

GetUeIpAddrOk returns a tuple with the UeIpAddr 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 (*TscAppSessionContextData) GetUeMac

func (o *TscAppSessionContextData) GetUeMac() string

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

func (*TscAppSessionContextData) GetUeMacOk

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

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

func (*TscAppSessionContextData) HasAltQosReferences

func (o *TscAppSessionContextData) HasAltQosReferences() bool

HasAltQosReferences returns a boolean if a field has been set.

func (*TscAppSessionContextData) HasAltQosReqs

func (o *TscAppSessionContextData) HasAltQosReqs() bool

HasAltQosReqs returns a boolean if a field has been set.

func (*TscAppSessionContextData) HasAppId

func (o *TscAppSessionContextData) HasAppId() bool

HasAppId returns a boolean if a field has been set.

func (*TscAppSessionContextData) HasAspId

func (o *TscAppSessionContextData) HasAspId() bool

HasAspId returns a boolean if a field has been set.

func (*TscAppSessionContextData) HasDnn

func (o *TscAppSessionContextData) HasDnn() bool

HasDnn returns a boolean if a field has been set.

func (*TscAppSessionContextData) HasEnEthFlowInfo

func (o *TscAppSessionContextData) HasEnEthFlowInfo() bool

HasEnEthFlowInfo returns a boolean if a field has been set.

func (*TscAppSessionContextData) HasEthFlowInfo

func (o *TscAppSessionContextData) HasEthFlowInfo() bool

HasEthFlowInfo returns a boolean if a field has been set.

func (*TscAppSessionContextData) HasEvSubsc

func (o *TscAppSessionContextData) HasEvSubsc() bool

HasEvSubsc returns a boolean if a field has been set.

func (*TscAppSessionContextData) HasFlowInfo

func (o *TscAppSessionContextData) HasFlowInfo() bool

HasFlowInfo returns a boolean if a field has been set.

func (*TscAppSessionContextData) HasIpDomain

func (o *TscAppSessionContextData) HasIpDomain() bool

HasIpDomain returns a boolean if a field has been set.

func (*TscAppSessionContextData) HasSnssai

func (o *TscAppSessionContextData) HasSnssai() bool

HasSnssai returns a boolean if a field has been set.

func (*TscAppSessionContextData) HasSponId

func (o *TscAppSessionContextData) HasSponId() bool

HasSponId returns a boolean if a field has been set.

func (*TscAppSessionContextData) HasSponStatus

func (o *TscAppSessionContextData) HasSponStatus() bool

HasSponStatus returns a boolean if a field has been set.

func (*TscAppSessionContextData) HasSuppFeat

func (o *TscAppSessionContextData) HasSuppFeat() bool

HasSuppFeat returns a boolean if a field has been set.

func (*TscAppSessionContextData) HasTscQosReq

func (o *TscAppSessionContextData) HasTscQosReq() bool

HasTscQosReq returns a boolean if a field has been set.

func (*TscAppSessionContextData) HasUeIpAddr

func (o *TscAppSessionContextData) HasUeIpAddr() bool

HasUeIpAddr returns a boolean if a field has been set.

func (*TscAppSessionContextData) HasUeMac

func (o *TscAppSessionContextData) HasUeMac() bool

HasUeMac returns a boolean if a field has been set.

func (TscAppSessionContextData) MarshalJSON

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

func (*TscAppSessionContextData) SetAfId

func (o *TscAppSessionContextData) SetAfId(v string)

SetAfId sets field value

func (*TscAppSessionContextData) SetAltQosReferences

func (o *TscAppSessionContextData) SetAltQosReferences(v []string)

SetAltQosReferences gets a reference to the given []string and assigns it to the AltQosReferences field.

func (*TscAppSessionContextData) SetAltQosReqs

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

func (*TscAppSessionContextData) SetAppId

func (o *TscAppSessionContextData) SetAppId(v string)

SetAppId gets a reference to the given string and assigns it to the AppId field.

func (*TscAppSessionContextData) SetAspId

func (o *TscAppSessionContextData) SetAspId(v string)

SetAspId gets a reference to the given string and assigns it to the AspId field.

func (*TscAppSessionContextData) SetDnn

func (o *TscAppSessionContextData) SetDnn(v string)

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

func (*TscAppSessionContextData) SetEnEthFlowInfo

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

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

func (*TscAppSessionContextData) SetEthFlowInfo

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

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

func (*TscAppSessionContextData) SetEvSubsc

SetEvSubsc gets a reference to the given EventsSubscReqData and assigns it to the EvSubsc field.

func (*TscAppSessionContextData) SetFlowInfo

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

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

func (*TscAppSessionContextData) SetIpDomain

func (o *TscAppSessionContextData) SetIpDomain(v string)

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

func (*TscAppSessionContextData) SetNotifUri

func (o *TscAppSessionContextData) SetNotifUri(v string)

SetNotifUri sets field value

func (*TscAppSessionContextData) SetQosReference

func (o *TscAppSessionContextData) SetQosReference(v string)

SetQosReference sets field value

func (*TscAppSessionContextData) SetSnssai

func (o *TscAppSessionContextData) SetSnssai(v Snssai)

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

func (*TscAppSessionContextData) SetSponId

func (o *TscAppSessionContextData) SetSponId(v string)

SetSponId gets a reference to the given string and assigns it to the SponId field.

func (*TscAppSessionContextData) SetSponStatus

func (o *TscAppSessionContextData) SetSponStatus(v SponsoringStatus)

SetSponStatus gets a reference to the given SponsoringStatus and assigns it to the SponStatus field.

func (*TscAppSessionContextData) SetSuppFeat

func (o *TscAppSessionContextData) SetSuppFeat(v string)

SetSuppFeat gets a reference to the given string and assigns it to the SuppFeat field.

func (*TscAppSessionContextData) SetTscQosReq

func (o *TscAppSessionContextData) SetTscQosReq(v TscQosRequirement)

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

func (*TscAppSessionContextData) SetUeIpAddr

func (o *TscAppSessionContextData) SetUeIpAddr(v IpAddr)

SetUeIpAddr gets a reference to the given NullableIpAddr and assigns it to the UeIpAddr field.

func (*TscAppSessionContextData) SetUeIpAddrNil

func (o *TscAppSessionContextData) SetUeIpAddrNil()

SetUeIpAddrNil sets the value for UeIpAddr to be an explicit nil

func (*TscAppSessionContextData) SetUeMac

func (o *TscAppSessionContextData) SetUeMac(v string)

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

func (TscAppSessionContextData) ToMap

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

func (*TscAppSessionContextData) UnmarshalJSON

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

func (*TscAppSessionContextData) UnsetUeIpAddr

func (o *TscAppSessionContextData) UnsetUeIpAddr()

UnsetUeIpAddr ensures that no value is present for UeIpAddr, not even an explicit nil

type TscAppSessionContextUpdateData

type TscAppSessionContextUpdateData struct {
	// String providing an URI formatted according to RFC 3986.
	NotifUri *string `json:"notifUri,omitempty"`
	// Identifies the Application Identifier.
	AppId       *string              `json:"appId,omitempty"`
	EthFlowInfo []EthFlowDescription `json:"ethFlowInfo,omitempty"`
	// Identifies the Ethernet flows which require QoS. Each Ethernet flow consists of a flow identifer and the corresponding UL and/or DL flows.
	EnEthFlowInfo []EthFlowInfo        `json:"enEthFlowInfo,omitempty"`
	FlowInfo      []FlowInfo           `json:"flowInfo,omitempty"`
	TscQosReq     *TscQosRequirementRm `json:"tscQosReq,omitempty"`
	// Identifies a pre-defined QoS information.
	QosReference *string `json:"qosReference,omitempty"`
	// Identifies an ordered list of pre-defined QoS information.
	AltQosReferences []string `json:"altQosReferences,omitempty"`
	// Identifies an ordered list of alternative service requirements that include individual QoS parameter sets. The lower the index of the array for a given entry, the higher the priority.
	AltQosReqs []AlternativeServiceRequirementsData `json:"altQosReqs,omitempty"`
	// Contains an identity of an application service provider.
	AspId *string `json:"aspId,omitempty"`
	// Contains an identity of a sponsor.
	SponId     *string                      `json:"sponId,omitempty"`
	SponStatus *SponsoringStatus            `json:"sponStatus,omitempty"`
	EvSubsc    NullableEventsSubscReqDataRm `json:"evSubsc,omitempty"`
}

TscAppSessionContextUpdateData Describes the authorization data of an Individual TSC Application Session Context created by the PCF.

func NewTscAppSessionContextUpdateData

func NewTscAppSessionContextUpdateData() *TscAppSessionContextUpdateData

NewTscAppSessionContextUpdateData instantiates a new TscAppSessionContextUpdateData object This constructor will assign default values to properties that have it defined, 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 NewTscAppSessionContextUpdateDataWithDefaults

func NewTscAppSessionContextUpdateDataWithDefaults() *TscAppSessionContextUpdateData

NewTscAppSessionContextUpdateDataWithDefaults instantiates a new TscAppSessionContextUpdateData object This 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 (*TscAppSessionContextUpdateData) GetAltQosReferences

func (o *TscAppSessionContextUpdateData) GetAltQosReferences() []string

GetAltQosReferences returns the AltQosReferences field value if set, zero value otherwise.

func (*TscAppSessionContextUpdateData) GetAltQosReferencesOk

func (o *TscAppSessionContextUpdateData) 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 (*TscAppSessionContextUpdateData) GetAltQosReqs

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

func (*TscAppSessionContextUpdateData) GetAltQosReqsOk

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

func (*TscAppSessionContextUpdateData) GetAppId

func (o *TscAppSessionContextUpdateData) GetAppId() string

GetAppId returns the AppId field value if set, zero value otherwise.

func (*TscAppSessionContextUpdateData) GetAppIdOk

func (o *TscAppSessionContextUpdateData) GetAppIdOk() (*string, bool)

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

func (*TscAppSessionContextUpdateData) GetAspId

func (o *TscAppSessionContextUpdateData) GetAspId() string

GetAspId returns the AspId field value if set, zero value otherwise.

func (*TscAppSessionContextUpdateData) GetAspIdOk

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

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

func (*TscAppSessionContextUpdateData) GetEnEthFlowInfo

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

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

func (*TscAppSessionContextUpdateData) GetEnEthFlowInfoOk

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

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

func (*TscAppSessionContextUpdateData) GetEthFlowInfo

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

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

func (*TscAppSessionContextUpdateData) GetEthFlowInfoOk

func (o *TscAppSessionContextUpdateData) 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 (*TscAppSessionContextUpdateData) GetEvSubsc

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

func (*TscAppSessionContextUpdateData) GetEvSubscOk

GetEvSubscOk returns a tuple with the EvSubsc 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 (*TscAppSessionContextUpdateData) GetFlowInfo

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

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

func (*TscAppSessionContextUpdateData) GetFlowInfoOk

func (o *TscAppSessionContextUpdateData) 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 (*TscAppSessionContextUpdateData) GetNotifUri

func (o *TscAppSessionContextUpdateData) GetNotifUri() string

GetNotifUri returns the NotifUri field value if set, zero value otherwise.

func (*TscAppSessionContextUpdateData) GetNotifUriOk

func (o *TscAppSessionContextUpdateData) GetNotifUriOk() (*string, bool)

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

func (*TscAppSessionContextUpdateData) GetQosReference

func (o *TscAppSessionContextUpdateData) GetQosReference() string

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

func (*TscAppSessionContextUpdateData) GetQosReferenceOk

func (o *TscAppSessionContextUpdateData) 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 (*TscAppSessionContextUpdateData) GetSponId

func (o *TscAppSessionContextUpdateData) GetSponId() string

GetSponId returns the SponId field value if set, zero value otherwise.

func (*TscAppSessionContextUpdateData) GetSponIdOk

func (o *TscAppSessionContextUpdateData) GetSponIdOk() (*string, bool)

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

func (*TscAppSessionContextUpdateData) GetSponStatus

GetSponStatus returns the SponStatus field value if set, zero value otherwise.

func (*TscAppSessionContextUpdateData) GetSponStatusOk

func (o *TscAppSessionContextUpdateData) GetSponStatusOk() (*SponsoringStatus, bool)

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

func (*TscAppSessionContextUpdateData) GetTscQosReq

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

func (*TscAppSessionContextUpdateData) GetTscQosReqOk

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

func (*TscAppSessionContextUpdateData) HasAltQosReferences

func (o *TscAppSessionContextUpdateData) HasAltQosReferences() bool

HasAltQosReferences returns a boolean if a field has been set.

func (*TscAppSessionContextUpdateData) HasAltQosReqs

func (o *TscAppSessionContextUpdateData) HasAltQosReqs() bool

HasAltQosReqs returns a boolean if a field has been set.

func (*TscAppSessionContextUpdateData) HasAppId

func (o *TscAppSessionContextUpdateData) HasAppId() bool

HasAppId returns a boolean if a field has been set.

func (*TscAppSessionContextUpdateData) HasAspId

func (o *TscAppSessionContextUpdateData) HasAspId() bool

HasAspId returns a boolean if a field has been set.

func (*TscAppSessionContextUpdateData) HasEnEthFlowInfo

func (o *TscAppSessionContextUpdateData) HasEnEthFlowInfo() bool

HasEnEthFlowInfo returns a boolean if a field has been set.

func (*TscAppSessionContextUpdateData) HasEthFlowInfo

func (o *TscAppSessionContextUpdateData) HasEthFlowInfo() bool

HasEthFlowInfo returns a boolean if a field has been set.

func (*TscAppSessionContextUpdateData) HasEvSubsc

func (o *TscAppSessionContextUpdateData) HasEvSubsc() bool

HasEvSubsc returns a boolean if a field has been set.

func (*TscAppSessionContextUpdateData) HasFlowInfo

func (o *TscAppSessionContextUpdateData) HasFlowInfo() bool

HasFlowInfo returns a boolean if a field has been set.

func (*TscAppSessionContextUpdateData) HasNotifUri

func (o *TscAppSessionContextUpdateData) HasNotifUri() bool

HasNotifUri returns a boolean if a field has been set.

func (*TscAppSessionContextUpdateData) HasQosReference

func (o *TscAppSessionContextUpdateData) HasQosReference() bool

HasQosReference returns a boolean if a field has been set.

func (*TscAppSessionContextUpdateData) HasSponId

func (o *TscAppSessionContextUpdateData) HasSponId() bool

HasSponId returns a boolean if a field has been set.

func (*TscAppSessionContextUpdateData) HasSponStatus

func (o *TscAppSessionContextUpdateData) HasSponStatus() bool

HasSponStatus returns a boolean if a field has been set.

func (*TscAppSessionContextUpdateData) HasTscQosReq

func (o *TscAppSessionContextUpdateData) HasTscQosReq() bool

HasTscQosReq returns a boolean if a field has been set.

func (TscAppSessionContextUpdateData) MarshalJSON

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

func (*TscAppSessionContextUpdateData) SetAltQosReferences

func (o *TscAppSessionContextUpdateData) SetAltQosReferences(v []string)

SetAltQosReferences gets a reference to the given []string and assigns it to the AltQosReferences field.

func (*TscAppSessionContextUpdateData) SetAltQosReqs

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

func (*TscAppSessionContextUpdateData) SetAppId

func (o *TscAppSessionContextUpdateData) SetAppId(v string)

SetAppId gets a reference to the given string and assigns it to the AppId field.

func (*TscAppSessionContextUpdateData) SetAspId

func (o *TscAppSessionContextUpdateData) SetAspId(v string)

SetAspId gets a reference to the given string and assigns it to the AspId field.

func (*TscAppSessionContextUpdateData) SetEnEthFlowInfo

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

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

func (*TscAppSessionContextUpdateData) SetEthFlowInfo

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

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

func (*TscAppSessionContextUpdateData) SetEvSubsc

SetEvSubsc gets a reference to the given NullableEventsSubscReqDataRm and assigns it to the EvSubsc field.

func (*TscAppSessionContextUpdateData) SetEvSubscNil

func (o *TscAppSessionContextUpdateData) SetEvSubscNil()

SetEvSubscNil sets the value for EvSubsc to be an explicit nil

func (*TscAppSessionContextUpdateData) SetFlowInfo

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

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

func (*TscAppSessionContextUpdateData) SetNotifUri

func (o *TscAppSessionContextUpdateData) SetNotifUri(v string)

SetNotifUri gets a reference to the given string and assigns it to the NotifUri field.

func (*TscAppSessionContextUpdateData) SetQosReference

func (o *TscAppSessionContextUpdateData) SetQosReference(v string)

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

func (*TscAppSessionContextUpdateData) SetSponId

func (o *TscAppSessionContextUpdateData) SetSponId(v string)

SetSponId gets a reference to the given string and assigns it to the SponId field.

func (*TscAppSessionContextUpdateData) SetSponStatus

SetSponStatus gets a reference to the given SponsoringStatus and assigns it to the SponStatus field.

func (*TscAppSessionContextUpdateData) SetTscQosReq

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

func (TscAppSessionContextUpdateData) ToMap

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

func (*TscAppSessionContextUpdateData) UnsetEvSubsc

func (o *TscAppSessionContextUpdateData) UnsetEvSubsc()

UnsetEvSubsc ensures that no value is present for EvSubsc, not even an explicit nil

type TscEvent

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

TscEvent Represents an event to notify to the AF.

func (*TscEvent) MarshalJSON

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

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

func (*TscEvent) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type TscQosRequirement

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

TscQosRequirement Represents QoS requirements for time sensitive communication.

func NewTscQosRequirement

func NewTscQosRequirement() *TscQosRequirement

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

func NewTscQosRequirementWithDefaults

func NewTscQosRequirementWithDefaults() *TscQosRequirement

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

func (*TscQosRequirement) GetMaxTscBurstSize

func (o *TscQosRequirement) GetMaxTscBurstSize() int32

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

func (*TscQosRequirement) GetMaxTscBurstSizeOk

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

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

func (*TscQosRequirement) GetPriority

func (o *TscQosRequirement) GetPriority() int32

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

func (*TscQosRequirement) GetPriorityOk

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

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

func (*TscQosRequirement) GetReq5Gsdelay

func (o *TscQosRequirement) GetReq5Gsdelay() int32

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

func (*TscQosRequirement) GetReq5GsdelayOk

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

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

func (*TscQosRequirement) GetReqGbrDl

func (o *TscQosRequirement) GetReqGbrDl() string

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

func (*TscQosRequirement) GetReqGbrDlOk

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

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

func (*TscQosRequirement) GetReqGbrUl

func (o *TscQosRequirement) GetReqGbrUl() string

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

func (*TscQosRequirement) GetReqGbrUlOk

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

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

func (*TscQosRequirement) GetReqMbrDl

func (o *TscQosRequirement) GetReqMbrDl() string

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

func (*TscQosRequirement) GetReqMbrDlOk

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

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

func (*TscQosRequirement) GetReqMbrUl

func (o *TscQosRequirement) GetReqMbrUl() string

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

func (*TscQosRequirement) GetReqMbrUlOk

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

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

func (*TscQosRequirement) GetTscaiInputDl

func (o *TscQosRequirement) GetTscaiInputDl() TscaiInputContainer

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

func (*TscQosRequirement) GetTscaiInputDlOk

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

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

func (*TscQosRequirement) GetTscaiInputUl

func (o *TscQosRequirement) GetTscaiInputUl() TscaiInputContainer

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

func (*TscQosRequirement) GetTscaiInputUlOk

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

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

func (*TscQosRequirement) GetTscaiTimeDom

func (o *TscQosRequirement) GetTscaiTimeDom() int32

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

func (*TscQosRequirement) GetTscaiTimeDomOk

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

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

func (*TscQosRequirement) HasMaxTscBurstSize

func (o *TscQosRequirement) HasMaxTscBurstSize() bool

HasMaxTscBurstSize returns a boolean if a field has been set.

func (*TscQosRequirement) HasPriority

func (o *TscQosRequirement) HasPriority() bool

HasPriority returns a boolean if a field has been set.

func (*TscQosRequirement) HasReq5Gsdelay

func (o *TscQosRequirement) HasReq5Gsdelay() bool

HasReq5Gsdelay returns a boolean if a field has been set.

func (*TscQosRequirement) HasReqGbrDl

func (o *TscQosRequirement) HasReqGbrDl() bool

HasReqGbrDl returns a boolean if a field has been set.

func (*TscQosRequirement) HasReqGbrUl

func (o *TscQosRequirement) HasReqGbrUl() bool

HasReqGbrUl returns a boolean if a field has been set.

func (*TscQosRequirement) HasReqMbrDl

func (o *TscQosRequirement) HasReqMbrDl() bool

HasReqMbrDl returns a boolean if a field has been set.

func (*TscQosRequirement) HasReqMbrUl

func (o *TscQosRequirement) HasReqMbrUl() bool

HasReqMbrUl returns a boolean if a field has been set.

func (*TscQosRequirement) HasTscaiInputDl

func (o *TscQosRequirement) HasTscaiInputDl() bool

HasTscaiInputDl returns a boolean if a field has been set.

func (*TscQosRequirement) HasTscaiInputUl

func (o *TscQosRequirement) HasTscaiInputUl() bool

HasTscaiInputUl returns a boolean if a field has been set.

func (*TscQosRequirement) HasTscaiTimeDom

func (o *TscQosRequirement) HasTscaiTimeDom() bool

HasTscaiTimeDom returns a boolean if a field has been set.

func (TscQosRequirement) MarshalJSON

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

func (*TscQosRequirement) SetMaxTscBurstSize

func (o *TscQosRequirement) SetMaxTscBurstSize(v int32)

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

func (*TscQosRequirement) SetPriority

func (o *TscQosRequirement) SetPriority(v int32)

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

func (*TscQosRequirement) SetReq5Gsdelay

func (o *TscQosRequirement) SetReq5Gsdelay(v int32)

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

func (*TscQosRequirement) SetReqGbrDl

func (o *TscQosRequirement) SetReqGbrDl(v string)

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

func (*TscQosRequirement) SetReqGbrUl

func (o *TscQosRequirement) SetReqGbrUl(v string)

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

func (*TscQosRequirement) SetReqMbrDl

func (o *TscQosRequirement) SetReqMbrDl(v string)

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

func (*TscQosRequirement) SetReqMbrUl

func (o *TscQosRequirement) SetReqMbrUl(v string)

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

func (*TscQosRequirement) SetTscaiInputDl

func (o *TscQosRequirement) SetTscaiInputDl(v TscaiInputContainer)

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

func (*TscQosRequirement) SetTscaiInputDlNil

func (o *TscQosRequirement) SetTscaiInputDlNil()

SetTscaiInputDlNil sets the value for TscaiInputDl to be an explicit nil

func (*TscQosRequirement) SetTscaiInputUl

func (o *TscQosRequirement) SetTscaiInputUl(v TscaiInputContainer)

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

func (*TscQosRequirement) SetTscaiInputUlNil

func (o *TscQosRequirement) SetTscaiInputUlNil()

SetTscaiInputUlNil sets the value for TscaiInputUl to be an explicit nil

func (*TscQosRequirement) SetTscaiTimeDom

func (o *TscQosRequirement) SetTscaiTimeDom(v int32)

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

func (TscQosRequirement) ToMap

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

func (*TscQosRequirement) UnsetTscaiInputDl

func (o *TscQosRequirement) UnsetTscaiInputDl()

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

func (*TscQosRequirement) UnsetTscaiInputUl

func (o *TscQosRequirement) UnsetTscaiInputUl()

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

type TscQosRequirementRm

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

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

func NewTscQosRequirementRm

func NewTscQosRequirementRm() *TscQosRequirementRm

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

func NewTscQosRequirementRmWithDefaults

func NewTscQosRequirementRmWithDefaults() *TscQosRequirementRm

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

func (*TscQosRequirementRm) GetMaxTscBurstSize

func (o *TscQosRequirementRm) GetMaxTscBurstSize() int32

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

func (*TscQosRequirementRm) GetMaxTscBurstSizeOk

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

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

func (*TscQosRequirementRm) GetPriority

func (o *TscQosRequirementRm) GetPriority() int32

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

func (*TscQosRequirementRm) GetPriorityOk

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

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

func (*TscQosRequirementRm) GetReq5Gsdelay

func (o *TscQosRequirementRm) GetReq5Gsdelay() int32

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

func (*TscQosRequirementRm) GetReq5GsdelayOk

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

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

func (*TscQosRequirementRm) GetReqGbrDl

func (o *TscQosRequirementRm) GetReqGbrDl() string

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

func (*TscQosRequirementRm) GetReqGbrDlOk

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

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

func (*TscQosRequirementRm) GetReqGbrUl

func (o *TscQosRequirementRm) GetReqGbrUl() string

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

func (*TscQosRequirementRm) GetReqGbrUlOk

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

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

func (*TscQosRequirementRm) GetReqMbrDl

func (o *TscQosRequirementRm) GetReqMbrDl() string

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

func (*TscQosRequirementRm) GetReqMbrDlOk

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

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

func (*TscQosRequirementRm) GetReqMbrUl

func (o *TscQosRequirementRm) GetReqMbrUl() string

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

func (*TscQosRequirementRm) GetReqMbrUlOk

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

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

func (*TscQosRequirementRm) GetTscaiInputDl

func (o *TscQosRequirementRm) GetTscaiInputDl() TscaiInputContainer

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

func (*TscQosRequirementRm) GetTscaiInputDlOk

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

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

func (*TscQosRequirementRm) GetTscaiInputUl

func (o *TscQosRequirementRm) GetTscaiInputUl() TscaiInputContainer

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

func (*TscQosRequirementRm) GetTscaiInputUlOk

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

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

func (*TscQosRequirementRm) GetTscaiTimeDom

func (o *TscQosRequirementRm) GetTscaiTimeDom() int32

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

func (*TscQosRequirementRm) GetTscaiTimeDomOk

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

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

func (*TscQosRequirementRm) HasMaxTscBurstSize

func (o *TscQosRequirementRm) HasMaxTscBurstSize() bool

HasMaxTscBurstSize returns a boolean if a field has been set.

func (*TscQosRequirementRm) HasPriority

func (o *TscQosRequirementRm) HasPriority() bool

HasPriority returns a boolean if a field has been set.

func (*TscQosRequirementRm) HasReq5Gsdelay

func (o *TscQosRequirementRm) HasReq5Gsdelay() bool

HasReq5Gsdelay returns a boolean if a field has been set.

func (*TscQosRequirementRm) HasReqGbrDl

func (o *TscQosRequirementRm) HasReqGbrDl() bool

HasReqGbrDl returns a boolean if a field has been set.

func (*TscQosRequirementRm) HasReqGbrUl

func (o *TscQosRequirementRm) HasReqGbrUl() bool

HasReqGbrUl returns a boolean if a field has been set.

func (*TscQosRequirementRm) HasReqMbrDl

func (o *TscQosRequirementRm) HasReqMbrDl() bool

HasReqMbrDl returns a boolean if a field has been set.

func (*TscQosRequirementRm) HasReqMbrUl

func (o *TscQosRequirementRm) HasReqMbrUl() bool

HasReqMbrUl returns a boolean if a field has been set.

func (*TscQosRequirementRm) HasTscaiInputDl

func (o *TscQosRequirementRm) HasTscaiInputDl() bool

HasTscaiInputDl returns a boolean if a field has been set.

func (*TscQosRequirementRm) HasTscaiInputUl

func (o *TscQosRequirementRm) HasTscaiInputUl() bool

HasTscaiInputUl returns a boolean if a field has been set.

func (*TscQosRequirementRm) HasTscaiTimeDom

func (o *TscQosRequirementRm) HasTscaiTimeDom() bool

HasTscaiTimeDom returns a boolean if a field has been set.

func (TscQosRequirementRm) MarshalJSON

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

func (*TscQosRequirementRm) SetMaxTscBurstSize

func (o *TscQosRequirementRm) SetMaxTscBurstSize(v int32)

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

func (*TscQosRequirementRm) SetMaxTscBurstSizeNil

func (o *TscQosRequirementRm) SetMaxTscBurstSizeNil()

SetMaxTscBurstSizeNil sets the value for MaxTscBurstSize to be an explicit nil

func (*TscQosRequirementRm) SetPriority

func (o *TscQosRequirementRm) SetPriority(v int32)

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

func (*TscQosRequirementRm) SetPriorityNil

func (o *TscQosRequirementRm) SetPriorityNil()

SetPriorityNil sets the value for Priority to be an explicit nil

func (*TscQosRequirementRm) SetReq5Gsdelay

func (o *TscQosRequirementRm) SetReq5Gsdelay(v int32)

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

func (*TscQosRequirementRm) SetReq5GsdelayNil

func (o *TscQosRequirementRm) SetReq5GsdelayNil()

SetReq5GsdelayNil sets the value for Req5Gsdelay to be an explicit nil

func (*TscQosRequirementRm) SetReqGbrDl

func (o *TscQosRequirementRm) SetReqGbrDl(v string)

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

func (*TscQosRequirementRm) SetReqGbrDlNil

func (o *TscQosRequirementRm) SetReqGbrDlNil()

SetReqGbrDlNil sets the value for ReqGbrDl to be an explicit nil

func (*TscQosRequirementRm) SetReqGbrUl

func (o *TscQosRequirementRm) SetReqGbrUl(v string)

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

func (*TscQosRequirementRm) SetReqGbrUlNil

func (o *TscQosRequirementRm) SetReqGbrUlNil()

SetReqGbrUlNil sets the value for ReqGbrUl to be an explicit nil

func (*TscQosRequirementRm) SetReqMbrDl

func (o *TscQosRequirementRm) SetReqMbrDl(v string)

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

func (*TscQosRequirementRm) SetReqMbrDlNil

func (o *TscQosRequirementRm) SetReqMbrDlNil()

SetReqMbrDlNil sets the value for ReqMbrDl to be an explicit nil

func (*TscQosRequirementRm) SetReqMbrUl

func (o *TscQosRequirementRm) SetReqMbrUl(v string)

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

func (*TscQosRequirementRm) SetReqMbrUlNil

func (o *TscQosRequirementRm) SetReqMbrUlNil()

SetReqMbrUlNil sets the value for ReqMbrUl to be an explicit nil

func (*TscQosRequirementRm) SetTscaiInputDl

func (o *TscQosRequirementRm) SetTscaiInputDl(v TscaiInputContainer)

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

func (*TscQosRequirementRm) SetTscaiInputDlNil

func (o *TscQosRequirementRm) SetTscaiInputDlNil()

SetTscaiInputDlNil sets the value for TscaiInputDl to be an explicit nil

func (*TscQosRequirementRm) SetTscaiInputUl

func (o *TscQosRequirementRm) SetTscaiInputUl(v TscaiInputContainer)

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

func (*TscQosRequirementRm) SetTscaiInputUlNil

func (o *TscQosRequirementRm) SetTscaiInputUlNil()

SetTscaiInputUlNil sets the value for TscaiInputUl to be an explicit nil

func (*TscQosRequirementRm) SetTscaiTimeDom

func (o *TscQosRequirementRm) SetTscaiTimeDom(v int32)

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

func (*TscQosRequirementRm) SetTscaiTimeDomNil

func (o *TscQosRequirementRm) SetTscaiTimeDomNil()

SetTscaiTimeDomNil sets the value for TscaiTimeDom to be an explicit nil

func (TscQosRequirementRm) ToMap

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

func (*TscQosRequirementRm) UnsetMaxTscBurstSize

func (o *TscQosRequirementRm) UnsetMaxTscBurstSize()

UnsetMaxTscBurstSize ensures that no value is present for MaxTscBurstSize, not even an explicit nil

func (*TscQosRequirementRm) UnsetPriority

func (o *TscQosRequirementRm) UnsetPriority()

UnsetPriority ensures that no value is present for Priority, not even an explicit nil

func (*TscQosRequirementRm) UnsetReq5Gsdelay

func (o *TscQosRequirementRm) UnsetReq5Gsdelay()

UnsetReq5Gsdelay ensures that no value is present for Req5Gsdelay, not even an explicit nil

func (*TscQosRequirementRm) UnsetReqGbrDl

func (o *TscQosRequirementRm) UnsetReqGbrDl()

UnsetReqGbrDl ensures that no value is present for ReqGbrDl, not even an explicit nil

func (*TscQosRequirementRm) UnsetReqGbrUl

func (o *TscQosRequirementRm) UnsetReqGbrUl()

UnsetReqGbrUl ensures that no value is present for ReqGbrUl, not even an explicit nil

func (*TscQosRequirementRm) UnsetReqMbrDl

func (o *TscQosRequirementRm) UnsetReqMbrDl()

UnsetReqMbrDl ensures that no value is present for ReqMbrDl, not even an explicit nil

func (*TscQosRequirementRm) UnsetReqMbrUl

func (o *TscQosRequirementRm) UnsetReqMbrUl()

UnsetReqMbrUl ensures that no value is present for ReqMbrUl, not even an explicit nil

func (*TscQosRequirementRm) UnsetTscaiInputDl

func (o *TscQosRequirementRm) UnsetTscaiInputDl()

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

func (*TscQosRequirementRm) UnsetTscaiInputUl

func (o *TscQosRequirementRm) UnsetTscaiInputUl()

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

func (*TscQosRequirementRm) UnsetTscaiTimeDom

func (o *TscQosRequirementRm) UnsetTscaiTimeDom()

UnsetTscaiTimeDom ensures that no value is present for TscaiTimeDom, not even an explicit nil

type TscaiInputContainer

type TscaiInputContainer struct {
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	Periodicity *int32 `json:"periodicity,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	BurstArrivalTime *time.Time `json:"burstArrivalTime,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	SurTimeInNumMsg *int32 `json:"surTimeInNumMsg,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	SurTimeInTime *int32 `json:"surTimeInTime,omitempty"`
}

TscaiInputContainer Indicates TSC Traffic pattern.

func NewTscaiInputContainer

func NewTscaiInputContainer() *TscaiInputContainer

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

func NewTscaiInputContainerWithDefaults

func NewTscaiInputContainerWithDefaults() *TscaiInputContainer

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

func (*TscaiInputContainer) GetBurstArrivalTime

func (o *TscaiInputContainer) GetBurstArrivalTime() time.Time

GetBurstArrivalTime returns the BurstArrivalTime field value if set, zero value otherwise.

func (*TscaiInputContainer) GetBurstArrivalTimeOk

func (o *TscaiInputContainer) GetBurstArrivalTimeOk() (*time.Time, bool)

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

func (*TscaiInputContainer) GetPeriodicity

func (o *TscaiInputContainer) GetPeriodicity() int32

GetPeriodicity returns the Periodicity field value if set, zero value otherwise.

func (*TscaiInputContainer) GetPeriodicityOk

func (o *TscaiInputContainer) GetPeriodicityOk() (*int32, bool)

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

func (*TscaiInputContainer) GetSurTimeInNumMsg

func (o *TscaiInputContainer) GetSurTimeInNumMsg() int32

GetSurTimeInNumMsg returns the SurTimeInNumMsg field value if set, zero value otherwise.

func (*TscaiInputContainer) GetSurTimeInNumMsgOk

func (o *TscaiInputContainer) GetSurTimeInNumMsgOk() (*int32, bool)

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

func (*TscaiInputContainer) GetSurTimeInTime

func (o *TscaiInputContainer) GetSurTimeInTime() int32

GetSurTimeInTime returns the SurTimeInTime field value if set, zero value otherwise.

func (*TscaiInputContainer) GetSurTimeInTimeOk

func (o *TscaiInputContainer) GetSurTimeInTimeOk() (*int32, bool)

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

func (*TscaiInputContainer) HasBurstArrivalTime

func (o *TscaiInputContainer) HasBurstArrivalTime() bool

HasBurstArrivalTime returns a boolean if a field has been set.

func (*TscaiInputContainer) HasPeriodicity

func (o *TscaiInputContainer) HasPeriodicity() bool

HasPeriodicity returns a boolean if a field has been set.

func (*TscaiInputContainer) HasSurTimeInNumMsg

func (o *TscaiInputContainer) HasSurTimeInNumMsg() bool

HasSurTimeInNumMsg returns a boolean if a field has been set.

func (*TscaiInputContainer) HasSurTimeInTime

func (o *TscaiInputContainer) HasSurTimeInTime() bool

HasSurTimeInTime returns a boolean if a field has been set.

func (TscaiInputContainer) MarshalJSON

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

func (*TscaiInputContainer) SetBurstArrivalTime

func (o *TscaiInputContainer) SetBurstArrivalTime(v time.Time)

SetBurstArrivalTime gets a reference to the given time.Time and assigns it to the BurstArrivalTime field.

func (*TscaiInputContainer) SetPeriodicity

func (o *TscaiInputContainer) SetPeriodicity(v int32)

SetPeriodicity gets a reference to the given int32 and assigns it to the Periodicity field.

func (*TscaiInputContainer) SetSurTimeInNumMsg

func (o *TscaiInputContainer) SetSurTimeInNumMsg(v int32)

SetSurTimeInNumMsg gets a reference to the given int32 and assigns it to the SurTimeInNumMsg field.

func (*TscaiInputContainer) SetSurTimeInTime

func (o *TscaiInputContainer) SetSurTimeInTime(v int32)

SetSurTimeInTime gets a reference to the given int32 and assigns it to the SurTimeInTime field.

func (TscaiInputContainer) ToMap

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

type UsageThreshold

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

UsageThreshold Represents a usage threshold.

func NewUsageThreshold

func NewUsageThreshold() *UsageThreshold

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

func NewUsageThresholdWithDefaults

func NewUsageThresholdWithDefaults() *UsageThreshold

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

func (*UsageThreshold) GetDownlinkVolume

func (o *UsageThreshold) GetDownlinkVolume() int64

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

func (*UsageThreshold) GetDownlinkVolumeOk

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

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

func (*UsageThreshold) GetDuration

func (o *UsageThreshold) GetDuration() int32

GetDuration returns the Duration field value if set, zero value otherwise.

func (*UsageThreshold) GetDurationOk

func (o *UsageThreshold) GetDurationOk() (*int32, bool)

GetDurationOk returns a tuple with the Duration field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsageThreshold) GetTotalVolume

func (o *UsageThreshold) GetTotalVolume() int64

GetTotalVolume returns the TotalVolume field value if set, zero value otherwise.

func (*UsageThreshold) GetTotalVolumeOk

func (o *UsageThreshold) GetTotalVolumeOk() (*int64, bool)

GetTotalVolumeOk returns a tuple with the TotalVolume field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsageThreshold) GetUplinkVolume

func (o *UsageThreshold) GetUplinkVolume() int64

GetUplinkVolume returns the UplinkVolume field value if set, zero value otherwise.

func (*UsageThreshold) GetUplinkVolumeOk

func (o *UsageThreshold) GetUplinkVolumeOk() (*int64, bool)

GetUplinkVolumeOk returns a tuple with the UplinkVolume field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsageThreshold) HasDownlinkVolume

func (o *UsageThreshold) HasDownlinkVolume() bool

HasDownlinkVolume returns a boolean if a field has been set.

func (*UsageThreshold) HasDuration

func (o *UsageThreshold) HasDuration() bool

HasDuration returns a boolean if a field has been set.

func (*UsageThreshold) HasTotalVolume

func (o *UsageThreshold) HasTotalVolume() bool

HasTotalVolume returns a boolean if a field has been set.

func (*UsageThreshold) HasUplinkVolume

func (o *UsageThreshold) HasUplinkVolume() bool

HasUplinkVolume returns a boolean if a field has been set.

func (UsageThreshold) MarshalJSON

func (o UsageThreshold) MarshalJSON() ([]byte, error)

func (*UsageThreshold) SetDownlinkVolume

func (o *UsageThreshold) SetDownlinkVolume(v int64)

SetDownlinkVolume gets a reference to the given int64 and assigns it to the DownlinkVolume field.

func (*UsageThreshold) SetDuration

func (o *UsageThreshold) SetDuration(v int32)

SetDuration gets a reference to the given int32 and assigns it to the Duration field.

func (*UsageThreshold) SetTotalVolume

func (o *UsageThreshold) SetTotalVolume(v int64)

SetTotalVolume gets a reference to the given int64 and assigns it to the TotalVolume field.

func (*UsageThreshold) SetUplinkVolume

func (o *UsageThreshold) SetUplinkVolume(v int64)

SetUplinkVolume gets a reference to the given int64 and assigns it to the UplinkVolume field.

func (UsageThreshold) ToMap

func (o UsageThreshold) ToMap() (map[string]interface{}, error)

type UsageThresholdRm

type UsageThresholdRm struct {
	// Unsigned integer identifying a period of time in units of seconds with \"nullable=true\" property.
	Duration NullableInt32 `json:"duration,omitempty"`
	// Unsigned integer identifying a volume in units of bytes with \"nullable=true\" property.
	TotalVolume NullableInt64 `json:"totalVolume,omitempty"`
	// Unsigned integer identifying a volume in units of bytes with \"nullable=true\" property.
	DownlinkVolume NullableInt64 `json:"downlinkVolume,omitempty"`
	// Unsigned integer identifying a volume in units of bytes with \"nullable=true\" property.
	UplinkVolume NullableInt64 `json:"uplinkVolume,omitempty"`
}

UsageThresholdRm Represents the same as the UsageThreshold data type but with the nullable:true property.

func NewUsageThresholdRm

func NewUsageThresholdRm() *UsageThresholdRm

NewUsageThresholdRm instantiates a new UsageThresholdRm object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUsageThresholdRmWithDefaults

func NewUsageThresholdRmWithDefaults() *UsageThresholdRm

NewUsageThresholdRmWithDefaults instantiates a new UsageThresholdRm object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UsageThresholdRm) GetDownlinkVolume

func (o *UsageThresholdRm) GetDownlinkVolume() int64

GetDownlinkVolume returns the DownlinkVolume field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UsageThresholdRm) GetDownlinkVolumeOk

func (o *UsageThresholdRm) GetDownlinkVolumeOk() (*int64, bool)

GetDownlinkVolumeOk returns a tuple with the DownlinkVolume field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UsageThresholdRm) GetDuration

func (o *UsageThresholdRm) GetDuration() int32

GetDuration returns the Duration field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UsageThresholdRm) GetDurationOk

func (o *UsageThresholdRm) GetDurationOk() (*int32, bool)

GetDurationOk returns a tuple with the Duration field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UsageThresholdRm) GetTotalVolume

func (o *UsageThresholdRm) GetTotalVolume() int64

GetTotalVolume returns the TotalVolume field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UsageThresholdRm) GetTotalVolumeOk

func (o *UsageThresholdRm) GetTotalVolumeOk() (*int64, bool)

GetTotalVolumeOk returns a tuple with the TotalVolume field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UsageThresholdRm) GetUplinkVolume

func (o *UsageThresholdRm) GetUplinkVolume() int64

GetUplinkVolume returns the UplinkVolume field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UsageThresholdRm) GetUplinkVolumeOk

func (o *UsageThresholdRm) GetUplinkVolumeOk() (*int64, bool)

GetUplinkVolumeOk returns a tuple with the UplinkVolume field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UsageThresholdRm) HasDownlinkVolume

func (o *UsageThresholdRm) HasDownlinkVolume() bool

HasDownlinkVolume returns a boolean if a field has been set.

func (*UsageThresholdRm) HasDuration

func (o *UsageThresholdRm) HasDuration() bool

HasDuration returns a boolean if a field has been set.

func (*UsageThresholdRm) HasTotalVolume

func (o *UsageThresholdRm) HasTotalVolume() bool

HasTotalVolume returns a boolean if a field has been set.

func (*UsageThresholdRm) HasUplinkVolume

func (o *UsageThresholdRm) HasUplinkVolume() bool

HasUplinkVolume returns a boolean if a field has been set.

func (UsageThresholdRm) MarshalJSON

func (o UsageThresholdRm) MarshalJSON() ([]byte, error)

func (*UsageThresholdRm) SetDownlinkVolume

func (o *UsageThresholdRm) SetDownlinkVolume(v int64)

SetDownlinkVolume gets a reference to the given NullableInt64 and assigns it to the DownlinkVolume field.

func (*UsageThresholdRm) SetDownlinkVolumeNil

func (o *UsageThresholdRm) SetDownlinkVolumeNil()

SetDownlinkVolumeNil sets the value for DownlinkVolume to be an explicit nil

func (*UsageThresholdRm) SetDuration

func (o *UsageThresholdRm) SetDuration(v int32)

SetDuration gets a reference to the given NullableInt32 and assigns it to the Duration field.

func (*UsageThresholdRm) SetDurationNil

func (o *UsageThresholdRm) SetDurationNil()

SetDurationNil sets the value for Duration to be an explicit nil

func (*UsageThresholdRm) SetTotalVolume

func (o *UsageThresholdRm) SetTotalVolume(v int64)

SetTotalVolume gets a reference to the given NullableInt64 and assigns it to the TotalVolume field.

func (*UsageThresholdRm) SetTotalVolumeNil

func (o *UsageThresholdRm) SetTotalVolumeNil()

SetTotalVolumeNil sets the value for TotalVolume to be an explicit nil

func (*UsageThresholdRm) SetUplinkVolume

func (o *UsageThresholdRm) SetUplinkVolume(v int64)

SetUplinkVolume gets a reference to the given NullableInt64 and assigns it to the UplinkVolume field.

func (*UsageThresholdRm) SetUplinkVolumeNil

func (o *UsageThresholdRm) SetUplinkVolumeNil()

SetUplinkVolumeNil sets the value for UplinkVolume to be an explicit nil

func (UsageThresholdRm) ToMap

func (o UsageThresholdRm) ToMap() (map[string]interface{}, error)

func (*UsageThresholdRm) UnsetDownlinkVolume

func (o *UsageThresholdRm) UnsetDownlinkVolume()

UnsetDownlinkVolume ensures that no value is present for DownlinkVolume, not even an explicit nil

func (*UsageThresholdRm) UnsetDuration

func (o *UsageThresholdRm) UnsetDuration()

UnsetDuration ensures that no value is present for Duration, not even an explicit nil

func (*UsageThresholdRm) UnsetTotalVolume

func (o *UsageThresholdRm) UnsetTotalVolume()

UnsetTotalVolume ensures that no value is present for TotalVolume, not even an explicit nil

func (*UsageThresholdRm) UnsetUplinkVolume

func (o *UsageThresholdRm) UnsetUplinkVolume()

UnsetUplinkVolume ensures that no value is present for UplinkVolume, not even an explicit nil

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL