openapi_Eees_SessionWithQoS

package
v1.18.2 Latest Latest
Warning

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

Go to latest
Published: Apr 9, 2023 License: Apache-2.0 Imports: 21 Imported by: 0

README

Go API client for openapi_Eees_SessionWithQoS

API for EES Session with Qos 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.1.0-alpha.1
  • Package version: 1.0.0
  • Build package: org.openapitools.codegen.languages.GoClientCodegen

Installation

Install the following dependencies:

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

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

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

To use a proxy, set the environment variable HTTP_PROXY:

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

Configuration of Server URL

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

Select Server Configuration

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

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

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

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

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

URLs Configuration per Operation

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

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

Documentation for API Endpoints

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

Class Method HTTP request Description
IndividualSessionWithQoSDocumentApi DeleteIndSessionWithQoS Delete /sessions/{sessionId} Delete an Individual Session with QoS resource
IndividualSessionWithQoSDocumentApi ModifyIndSessionWithQoS Patch /sessions/{sessionId} Modify an Individual Session with QoS resource
IndividualSessionWithQoSDocumentApi ReadIndSessionWithQoS Get /sessions/{sessionId} Read Individual Session with QoS resource
IndividualSessionWithQoSDocumentApi UpdateIndSessionWithQoS Put /sessions/{sessionId} Update an Individual Session with QoS resource
SessionsWithQoSCollectionApi CreateIndSessionWithQoS Post /sessions Create a new Individual Session with QoS resource
SessionsWithQoSCollectionApi ReadAllSessionsWithQoS Get /sessions Read all Sessions with QoS resource

Documentation For Models

Documentation For Authorization

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

Example

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

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

import "golang.org/x/oauth2"

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

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

Documentation for Utility Methods

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

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

Author

Documentation

Index

Constants

This section is empty.

Variables

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 {
	IndividualSessionWithQoSDocumentApi *IndividualSessionWithQoSDocumentApiService

	SessionsWithQoSCollectionApi *SessionsWithQoSCollectionApiService
	// contains filtered or unexported fields
}

APIClient manages communication with the EES Session with QoS API API v1.1.0-alpha.1 In most cases there should be only one, shared, APIClient.

func NewAPIClient

func NewAPIClient(cfg *Configuration) *APIClient

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

func (*APIClient) GetConfig

func (c *APIClient) GetConfig() *Configuration

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

type APIKey

type APIKey struct {
	Key    string
	Prefix string
}

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

type APIResponse

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

APIResponse stores the API response returned by the server.

func NewAPIResponse

func NewAPIResponse(r *http.Response) *APIResponse

NewAPIResponse returns a new APIResponse object.

func NewAPIResponseWithError

func NewAPIResponseWithError(errorMessage string) *APIResponse

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

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

type ApiCreateIndSessionWithQoSRequest struct {
	ApiService *SessionsWithQoSCollectionApiService
	// contains filtered or unexported fields
}

func (ApiCreateIndSessionWithQoSRequest) Execute

func (ApiCreateIndSessionWithQoSRequest) SessionWithQoS

type ApiDeleteIndSessionWithQoSRequest

type ApiDeleteIndSessionWithQoSRequest struct {
	ApiService *IndividualSessionWithQoSDocumentApiService
	// contains filtered or unexported fields
}

func (ApiDeleteIndSessionWithQoSRequest) Execute

type ApiModifyIndSessionWithQoSRequest

type ApiModifyIndSessionWithQoSRequest struct {
	ApiService *IndividualSessionWithQoSDocumentApiService
	// contains filtered or unexported fields
}

func (ApiModifyIndSessionWithQoSRequest) Execute

func (ApiModifyIndSessionWithQoSRequest) SessionWithQoSPatch

Partial update an existing Individual Session with QoS resource identified by a sessionId.

type ApiReadAllSessionsWithQoSRequest

type ApiReadAllSessionsWithQoSRequest struct {
	ApiService *SessionsWithQoSCollectionApiService
	// contains filtered or unexported fields
}

func (ApiReadAllSessionsWithQoSRequest) EasId

Identifier of the EAS which querying the status of subscriptions.

func (ApiReadAllSessionsWithQoSRequest) Execute

type ApiReadIndSessionWithQoSRequest

type ApiReadIndSessionWithQoSRequest struct {
	ApiService *IndividualSessionWithQoSDocumentApiService
	// contains filtered or unexported fields
}

func (ApiReadIndSessionWithQoSRequest) Execute

type ApiUpdateIndSessionWithQoSRequest

type ApiUpdateIndSessionWithQoSRequest struct {
	ApiService *IndividualSessionWithQoSDocumentApiService
	// contains filtered or unexported fields
}

func (ApiUpdateIndSessionWithQoSRequest) Execute

func (ApiUpdateIndSessionWithQoSRequest) SessionWithQoS

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

type IndividualSessionWithQoSDocumentApiService service

IndividualSessionWithQoSDocumentApiService IndividualSessionWithQoSDocumentApi service

func (*IndividualSessionWithQoSDocumentApiService) DeleteIndSessionWithQoS

DeleteIndSessionWithQoS Delete an Individual Session with QoS resource

Remove an Individual Session with QoS resource identified by a sessionId.

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

func (*IndividualSessionWithQoSDocumentApiService) DeleteIndSessionWithQoSExecute

Execute executes the request

func (*IndividualSessionWithQoSDocumentApiService) ModifyIndSessionWithQoS

ModifyIndSessionWithQoS Modify an Individual Session with QoS resource

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

func (*IndividualSessionWithQoSDocumentApiService) ModifyIndSessionWithQoSExecute

Execute executes the request

@return SessionWithQoS

func (*IndividualSessionWithQoSDocumentApiService) ReadIndSessionWithQoS

ReadIndSessionWithQoS Read Individual Session with QoS resource

Read a subscription resource for a sessionId.

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

func (*IndividualSessionWithQoSDocumentApiService) ReadIndSessionWithQoSExecute

Execute executes the request

@return SessionWithQoS

func (*IndividualSessionWithQoSDocumentApiService) UpdateIndSessionWithQoS

UpdateIndSessionWithQoS Update an Individual Session with QoS resource

Fully replace an existing Individual Session with QoS resource identified by a sessionId.

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

func (*IndividualSessionWithQoSDocumentApiService) UpdateIndSessionWithQoSExecute

Execute executes the request

@return SessionWithQoS

type InvalidParam

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

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

func NewInvalidParam

func NewInvalidParam(param string) *InvalidParam

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

func NewInvalidParamWithDefaults

func NewInvalidParamWithDefaults() *InvalidParam

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

func (*InvalidParam) GetParam

func (o *InvalidParam) GetParam() string

GetParam returns the Param field value

func (*InvalidParam) GetParamOk

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

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

func (*InvalidParam) GetReason

func (o *InvalidParam) GetReason() string

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

func (*InvalidParam) GetReasonOk

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

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

func (*InvalidParam) HasReason

func (o *InvalidParam) HasReason() bool

HasReason returns a boolean if a field has been set.

func (InvalidParam) MarshalJSON

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

func (*InvalidParam) SetParam

func (o *InvalidParam) SetParam(v string)

SetParam sets field value

func (*InvalidParam) SetReason

func (o *InvalidParam) SetReason(v string)

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

func (InvalidParam) ToMap

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

type MappedNullable

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

type NullableAccumulatedUsage

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

func NewNullableAccumulatedUsage

func NewNullableAccumulatedUsage(val *AccumulatedUsage) *NullableAccumulatedUsage

func (NullableAccumulatedUsage) Get

func (NullableAccumulatedUsage) IsSet

func (v NullableAccumulatedUsage) IsSet() bool

func (NullableAccumulatedUsage) MarshalJSON

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

func (*NullableAccumulatedUsage) Set

func (*NullableAccumulatedUsage) UnmarshalJSON

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

func (*NullableAccumulatedUsage) Unset

func (v *NullableAccumulatedUsage) Unset()

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

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

func NewNullablePlmnIdNid

func NewNullablePlmnIdNid(val *PlmnIdNid) *NullablePlmnIdNid

func (NullablePlmnIdNid) Get

func (v NullablePlmnIdNid) Get() *PlmnIdNid

func (NullablePlmnIdNid) IsSet

func (v NullablePlmnIdNid) IsSet() bool

func (NullablePlmnIdNid) MarshalJSON

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

func (*NullablePlmnIdNid) Set

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

func (*NullablePlmnIdNid) UnmarshalJSON

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

func (*NullablePlmnIdNid) Unset

func (v *NullablePlmnIdNid) Unset()

type NullableProblemDetails

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

func NewNullableProblemDetails

func NewNullableProblemDetails(val *ProblemDetails) *NullableProblemDetails

func (NullableProblemDetails) Get

func (NullableProblemDetails) IsSet

func (v NullableProblemDetails) IsSet() bool

func (NullableProblemDetails) MarshalJSON

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

func (*NullableProblemDetails) Set

func (*NullableProblemDetails) UnmarshalJSON

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

func (*NullableProblemDetails) Unset

func (v *NullableProblemDetails) Unset()

type NullableQosMonitoringInformation

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

func (NullableQosMonitoringInformation) Get

func (NullableQosMonitoringInformation) IsSet

func (NullableQosMonitoringInformation) MarshalJSON

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

func (*NullableQosMonitoringInformation) Set

func (*NullableQosMonitoringInformation) UnmarshalJSON

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

func (*NullableQosMonitoringInformation) Unset

type NullableQosMonitoringInformationRm

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

func (NullableQosMonitoringInformationRm) Get

func (NullableQosMonitoringInformationRm) IsSet

func (NullableQosMonitoringInformationRm) MarshalJSON

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

func (*NullableQosMonitoringInformationRm) Set

func (*NullableQosMonitoringInformationRm) UnmarshalJSON

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

func (*NullableQosMonitoringInformationRm) Unset

type NullableQosMonitoringReport

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

func NewNullableQosMonitoringReport

func NewNullableQosMonitoringReport(val *QosMonitoringReport) *NullableQosMonitoringReport

func (NullableQosMonitoringReport) Get

func (NullableQosMonitoringReport) IsSet

func (NullableQosMonitoringReport) MarshalJSON

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

func (*NullableQosMonitoringReport) Set

func (*NullableQosMonitoringReport) UnmarshalJSON

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

func (*NullableQosMonitoringReport) Unset

func (v *NullableQosMonitoringReport) Unset()

type NullableRatType

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

func NewNullableRatType

func NewNullableRatType(val *RatType) *NullableRatType

func (NullableRatType) Get

func (v NullableRatType) Get() *RatType

func (NullableRatType) IsSet

func (v NullableRatType) IsSet() bool

func (NullableRatType) MarshalJSON

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

func (*NullableRatType) Set

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

func (*NullableRatType) UnmarshalJSON

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

func (*NullableRatType) Unset

func (v *NullableRatType) Unset()

type NullableReportingFrequency

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

func NewNullableReportingFrequency

func NewNullableReportingFrequency(val *ReportingFrequency) *NullableReportingFrequency

func (NullableReportingFrequency) Get

func (NullableReportingFrequency) IsSet

func (v NullableReportingFrequency) IsSet() bool

func (NullableReportingFrequency) MarshalJSON

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

func (*NullableReportingFrequency) Set

func (*NullableReportingFrequency) UnmarshalJSON

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

func (*NullableReportingFrequency) Unset

func (v *NullableReportingFrequency) Unset()

type NullableRequestedQosMonitoringParameter

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

func (NullableRequestedQosMonitoringParameter) Get

func (NullableRequestedQosMonitoringParameter) IsSet

func (NullableRequestedQosMonitoringParameter) MarshalJSON

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

func (*NullableRequestedQosMonitoringParameter) Set

func (*NullableRequestedQosMonitoringParameter) UnmarshalJSON

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

func (*NullableRequestedQosMonitoringParameter) Unset

type NullableSessionWithQoS

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

func NewNullableSessionWithQoS

func NewNullableSessionWithQoS(val *SessionWithQoS) *NullableSessionWithQoS

func (NullableSessionWithQoS) Get

func (NullableSessionWithQoS) IsSet

func (v NullableSessionWithQoS) IsSet() bool

func (NullableSessionWithQoS) MarshalJSON

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

func (*NullableSessionWithQoS) Set

func (*NullableSessionWithQoS) UnmarshalJSON

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

func (*NullableSessionWithQoS) Unset

func (v *NullableSessionWithQoS) Unset()

type NullableSessionWithQoSPatch

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

func NewNullableSessionWithQoSPatch

func NewNullableSessionWithQoSPatch(val *SessionWithQoSPatch) *NullableSessionWithQoSPatch

func (NullableSessionWithQoSPatch) Get

func (NullableSessionWithQoSPatch) IsSet

func (NullableSessionWithQoSPatch) MarshalJSON

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

func (*NullableSessionWithQoSPatch) Set

func (*NullableSessionWithQoSPatch) UnmarshalJSON

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

func (*NullableSessionWithQoSPatch) Unset

func (v *NullableSessionWithQoSPatch) Unset()

type NullableSnssai

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

func NewNullableSnssai

func NewNullableSnssai(val *Snssai) *NullableSnssai

func (NullableSnssai) Get

func (v NullableSnssai) Get() *Snssai

func (NullableSnssai) IsSet

func (v NullableSnssai) IsSet() bool

func (NullableSnssai) MarshalJSON

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

func (*NullableSnssai) Set

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

func (*NullableSnssai) UnmarshalJSON

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

func (*NullableSnssai) Unset

func (v *NullableSnssai) Unset()

type NullableSponsorInformation

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

func NewNullableSponsorInformation

func NewNullableSponsorInformation(val *SponsorInformation) *NullableSponsorInformation

func (NullableSponsorInformation) Get

func (NullableSponsorInformation) IsSet

func (v NullableSponsorInformation) IsSet() bool

func (NullableSponsorInformation) MarshalJSON

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

func (*NullableSponsorInformation) Set

func (*NullableSponsorInformation) UnmarshalJSON

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

func (*NullableSponsorInformation) Unset

func (v *NullableSponsorInformation) Unset()

type NullableString

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

func NewNullableString

func NewNullableString(val *string) *NullableString

func (NullableString) Get

func (v NullableString) Get() *string

func (NullableString) IsSet

func (v NullableString) IsSet() bool

func (NullableString) MarshalJSON

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

func (*NullableString) Set

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

func (*NullableString) UnmarshalJSON

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

func (*NullableString) Unset

func (v *NullableString) Unset()

type NullableTime

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

func NewNullableTime

func NewNullableTime(val *time.Time) *NullableTime

func (NullableTime) Get

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

func (NullableTime) IsSet

func (v NullableTime) IsSet() bool

func (NullableTime) MarshalJSON

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

func (*NullableTime) Set

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

func (*NullableTime) UnmarshalJSON

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

func (*NullableTime) Unset

func (v *NullableTime) Unset()

type NullableUserPlaneEvent

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

func NewNullableUserPlaneEvent

func NewNullableUserPlaneEvent(val *UserPlaneEvent) *NullableUserPlaneEvent

func (NullableUserPlaneEvent) Get

func (NullableUserPlaneEvent) IsSet

func (v NullableUserPlaneEvent) IsSet() bool

func (NullableUserPlaneEvent) MarshalJSON

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

func (*NullableUserPlaneEvent) Set

func (*NullableUserPlaneEvent) UnmarshalJSON

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

func (*NullableUserPlaneEvent) Unset

func (v *NullableUserPlaneEvent) Unset()

type NullableUserPlaneEventNotification

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

func (NullableUserPlaneEventNotification) Get

func (NullableUserPlaneEventNotification) IsSet

func (NullableUserPlaneEventNotification) MarshalJSON

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

func (*NullableUserPlaneEventNotification) Set

func (*NullableUserPlaneEventNotification) UnmarshalJSON

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

func (*NullableUserPlaneEventNotification) Unset

type NullableUserPlaneEventReport

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

func NewNullableUserPlaneEventReport

func NewNullableUserPlaneEventReport(val *UserPlaneEventReport) *NullableUserPlaneEventReport

func (NullableUserPlaneEventReport) Get

func (NullableUserPlaneEventReport) IsSet

func (NullableUserPlaneEventReport) MarshalJSON

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

func (*NullableUserPlaneEventReport) Set

func (*NullableUserPlaneEventReport) UnmarshalJSON

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

func (*NullableUserPlaneEventReport) Unset

func (v *NullableUserPlaneEventReport) Unset()

type NullableWebsockNotifConfig

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

func NewNullableWebsockNotifConfig

func NewNullableWebsockNotifConfig(val *WebsockNotifConfig) *NullableWebsockNotifConfig

func (NullableWebsockNotifConfig) Get

func (NullableWebsockNotifConfig) IsSet

func (v NullableWebsockNotifConfig) IsSet() bool

func (NullableWebsockNotifConfig) MarshalJSON

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

func (*NullableWebsockNotifConfig) Set

func (*NullableWebsockNotifConfig) UnmarshalJSON

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

func (*NullableWebsockNotifConfig) Unset

func (v *NullableWebsockNotifConfig) Unset()

type PlmnIdNid

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

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

func NewPlmnIdNid

func NewPlmnIdNid(mcc string, mnc string) *PlmnIdNid

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

func NewPlmnIdNidWithDefaults

func NewPlmnIdNidWithDefaults() *PlmnIdNid

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

func (*PlmnIdNid) GetMcc

func (o *PlmnIdNid) GetMcc() string

GetMcc returns the Mcc field value

func (*PlmnIdNid) GetMccOk

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

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

func (*PlmnIdNid) GetMnc

func (o *PlmnIdNid) GetMnc() string

GetMnc returns the Mnc field value

func (*PlmnIdNid) GetMncOk

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

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

func (*PlmnIdNid) GetNid

func (o *PlmnIdNid) GetNid() string

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

func (*PlmnIdNid) GetNidOk

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

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

func (*PlmnIdNid) HasNid

func (o *PlmnIdNid) HasNid() bool

HasNid returns a boolean if a field has been set.

func (PlmnIdNid) MarshalJSON

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

func (*PlmnIdNid) SetMcc

func (o *PlmnIdNid) SetMcc(v string)

SetMcc sets field value

func (*PlmnIdNid) SetMnc

func (o *PlmnIdNid) SetMnc(v string)

SetMnc sets field value

func (*PlmnIdNid) SetNid

func (o *PlmnIdNid) SetNid(v string)

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

func (PlmnIdNid) ToMap

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

type ProblemDetails

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

ProblemDetails Represents additional information and details on an error response.

func NewProblemDetails

func NewProblemDetails() *ProblemDetails

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

func NewProblemDetailsWithDefaults

func NewProblemDetailsWithDefaults() *ProblemDetails

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

func (*ProblemDetails) GetCause

func (o *ProblemDetails) GetCause() string

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

func (*ProblemDetails) GetCauseOk

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

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

func (*ProblemDetails) GetDetail

func (o *ProblemDetails) GetDetail() string

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

func (*ProblemDetails) GetDetailOk

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

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

func (*ProblemDetails) GetInstance

func (o *ProblemDetails) GetInstance() string

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

func (*ProblemDetails) GetInstanceOk

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

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

func (*ProblemDetails) GetInvalidParams

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

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

func (*ProblemDetails) GetInvalidParamsOk

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

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

func (*ProblemDetails) GetStatus

func (o *ProblemDetails) GetStatus() int32

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

func (*ProblemDetails) GetStatusOk

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

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

func (*ProblemDetails) GetSupportedFeatures

func (o *ProblemDetails) GetSupportedFeatures() string

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

func (*ProblemDetails) GetSupportedFeaturesOk

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

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

func (*ProblemDetails) GetTitle

func (o *ProblemDetails) GetTitle() string

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

func (*ProblemDetails) GetTitleOk

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

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

func (*ProblemDetails) GetType

func (o *ProblemDetails) GetType() string

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

func (*ProblemDetails) GetTypeOk

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

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

func (*ProblemDetails) HasCause

func (o *ProblemDetails) HasCause() bool

HasCause returns a boolean if a field has been set.

func (*ProblemDetails) HasDetail

func (o *ProblemDetails) HasDetail() bool

HasDetail returns a boolean if a field has been set.

func (*ProblemDetails) HasInstance

func (o *ProblemDetails) HasInstance() bool

HasInstance returns a boolean if a field has been set.

func (*ProblemDetails) HasInvalidParams

func (o *ProblemDetails) HasInvalidParams() bool

HasInvalidParams returns a boolean if a field has been set.

func (*ProblemDetails) HasStatus

func (o *ProblemDetails) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*ProblemDetails) HasSupportedFeatures

func (o *ProblemDetails) HasSupportedFeatures() bool

HasSupportedFeatures returns a boolean if a field has been set.

func (*ProblemDetails) HasTitle

func (o *ProblemDetails) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*ProblemDetails) HasType

func (o *ProblemDetails) HasType() bool

HasType returns a boolean if a field has been set.

func (ProblemDetails) MarshalJSON

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

func (*ProblemDetails) SetCause

func (o *ProblemDetails) SetCause(v string)

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

func (*ProblemDetails) SetDetail

func (o *ProblemDetails) SetDetail(v string)

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

func (*ProblemDetails) SetInstance

func (o *ProblemDetails) SetInstance(v string)

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

func (*ProblemDetails) SetInvalidParams

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

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

func (*ProblemDetails) SetStatus

func (o *ProblemDetails) SetStatus(v int32)

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

func (*ProblemDetails) SetSupportedFeatures

func (o *ProblemDetails) SetSupportedFeatures(v string)

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

func (*ProblemDetails) SetTitle

func (o *ProblemDetails) SetTitle(v string)

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

func (*ProblemDetails) SetType

func (o *ProblemDetails) SetType(v string)

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

func (ProblemDetails) ToMap

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

type QosMonitoringInformation

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

QosMonitoringInformation Represents QoS monitoring information.

func NewQosMonitoringInformation

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

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

func NewQosMonitoringInformationWithDefaults

func NewQosMonitoringInformationWithDefaults() *QosMonitoringInformation

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

func (*QosMonitoringInformation) GetRepFreqs

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

GetRepFreqs returns the RepFreqs field value

func (*QosMonitoringInformation) GetRepFreqsOk

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

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

func (*QosMonitoringInformation) GetRepPeriod

func (o *QosMonitoringInformation) GetRepPeriod() int32

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

func (*QosMonitoringInformation) GetRepPeriodOk

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

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

func (*QosMonitoringInformation) GetRepThreshDl

func (o *QosMonitoringInformation) GetRepThreshDl() int32

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

func (*QosMonitoringInformation) GetRepThreshDlOk

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

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

func (*QosMonitoringInformation) GetRepThreshRp

func (o *QosMonitoringInformation) GetRepThreshRp() int32

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

func (*QosMonitoringInformation) GetRepThreshRpOk

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

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

func (*QosMonitoringInformation) GetRepThreshUl

func (o *QosMonitoringInformation) GetRepThreshUl() int32

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

func (*QosMonitoringInformation) GetRepThreshUlOk

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

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

func (*QosMonitoringInformation) GetReqQosMonParams

GetReqQosMonParams returns the ReqQosMonParams field value

func (*QosMonitoringInformation) GetReqQosMonParamsOk

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

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

func (*QosMonitoringInformation) GetWaitTime

func (o *QosMonitoringInformation) GetWaitTime() int32

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

func (*QosMonitoringInformation) GetWaitTimeOk

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

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

func (*QosMonitoringInformation) HasRepPeriod

func (o *QosMonitoringInformation) HasRepPeriod() bool

HasRepPeriod returns a boolean if a field has been set.

func (*QosMonitoringInformation) HasRepThreshDl

func (o *QosMonitoringInformation) HasRepThreshDl() bool

HasRepThreshDl returns a boolean if a field has been set.

func (*QosMonitoringInformation) HasRepThreshRp

func (o *QosMonitoringInformation) HasRepThreshRp() bool

HasRepThreshRp returns a boolean if a field has been set.

func (*QosMonitoringInformation) HasRepThreshUl

func (o *QosMonitoringInformation) HasRepThreshUl() bool

HasRepThreshUl returns a boolean if a field has been set.

func (*QosMonitoringInformation) HasWaitTime

func (o *QosMonitoringInformation) HasWaitTime() bool

HasWaitTime returns a boolean if a field has been set.

func (QosMonitoringInformation) MarshalJSON

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

func (*QosMonitoringInformation) SetRepFreqs

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

SetRepFreqs sets field value

func (*QosMonitoringInformation) SetRepPeriod

func (o *QosMonitoringInformation) SetRepPeriod(v int32)

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

func (*QosMonitoringInformation) SetRepThreshDl

func (o *QosMonitoringInformation) SetRepThreshDl(v int32)

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

func (*QosMonitoringInformation) SetRepThreshRp

func (o *QosMonitoringInformation) SetRepThreshRp(v int32)

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

func (*QosMonitoringInformation) SetRepThreshUl

func (o *QosMonitoringInformation) SetRepThreshUl(v int32)

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

func (*QosMonitoringInformation) SetReqQosMonParams

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

SetReqQosMonParams sets field value

func (*QosMonitoringInformation) SetWaitTime

func (o *QosMonitoringInformation) SetWaitTime(v int32)

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

func (QosMonitoringInformation) ToMap

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

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"`
}

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

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

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

func (*QosMonitoringReport) GetRtDelaysOk

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

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

func (*QosMonitoringReport) GetUlDelays

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

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

func (*QosMonitoringReport) GetUlDelaysOk

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

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

func (*QosMonitoringReport) HasDlDelays

func (o *QosMonitoringReport) HasDlDelays() bool

HasDlDelays returns a boolean if a field has been set.

func (*QosMonitoringReport) HasRtDelays

func (o *QosMonitoringReport) HasRtDelays() bool

HasRtDelays returns a boolean if a field has been set.

func (*QosMonitoringReport) HasUlDelays

func (o *QosMonitoringReport) HasUlDelays() bool

HasUlDelays returns a boolean if a field has been set.

func (QosMonitoringReport) MarshalJSON

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

func (*QosMonitoringReport) SetDlDelays

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

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

func (*QosMonitoringReport) SetRtDelays

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

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

func (*QosMonitoringReport) SetUlDelays

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

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

func (QosMonitoringReport) ToMap

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

type RatType

type RatType struct {
	String *string
}

RatType Indicates the radio access used.

func (*RatType) MarshalJSON

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

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

func (*RatType) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type ReportingFrequency

type ReportingFrequency struct {
	String *string
}

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 {
	String *string
}

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 SessionWithQoS

type SessionWithQoS struct {
	// string providing an URI formatted according to IETF RFC 3986.
	Self *string `json:"self,omitempty"`
	// Identifier of an EAS.
	EasId string `json:"easId"`
	// string identifying a Ipv4 address formatted in the \"dotted decimal\" notation as defined in IETF RFC 1166.
	UeIpv4Addr *string `json:"ueIpv4Addr,omitempty"`
	// string identifying a Ipv6 address formatted according to clause 4 in IETF RFC 5952. The mixed Ipv4 Ipv6 notation according to clause 5 of IETF RFC 5952 shall not be used.
	UeIpv6Addr *string `json:"ueIpv6Addr,omitempty"`
	IpDomain   *string `json:"ipDomain,omitempty"`
	// String identifying a Gpsi shall contain either an External Id or an MSISDN.  It shall be formatted as follows -External Identifier= \"extid-'extid', where 'extid'  shall be formatted according to clause 19.7.2 of 3GPP TS 23.003 that describes an  External Identifier.
	UeId *string `json:"ueId,omitempty"`
	// String identifying a group of devices network internal globally unique ID which identifies a set of IMSIs, as specified in clause 19.9 of 3GPP TS 23.003.
	IntGrpId *string `json:"intGrpId,omitempty"`
	// String identifying External Group Identifier that identifies a group made up of one or more  subscriptions associated to a group of IMSIs, as specified in clause 19.7.3 of 3GPP TS 23.003.
	ExtGrpId *string `json:"extGrpId,omitempty"`
	// Contains the flow description for the Uplink and/or Downlink IP flows.
	IpFlows []string `json:"ipFlows"`
	// Identifies a pre-defined QoS information.
	QosReference *string `json:"qosReference,omitempty"`
	// Identifies an ordered list of pre-defined QoS information. The lower the index of the array for a given entry, the higher the priority.
	AltQosReference []string `json:"altQosReference,omitempty"`
	// Indicates the events subscribed by the EAS.
	Events             []UserPlaneEvent          `json:"events,omitempty"`
	SponsorInformation *SponsorInformation       `json:"sponsorInformation,omitempty"`
	QosMonInfo         *QosMonitoringInformation `json:"qosMonInfo,omitempty"`
	// string providing an URI formatted according to IETF RFC 3986.
	NotificationDestination *string `json:"notificationDestination,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 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\".
	MaxbrUl *string `json:"maxbrUl,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\".
	MaxbrDl *string `json:"maxbrDl,omitempty"`
	// Indicates to disable QoS flow parameters signalling to the UE when the SMF is notified by the NG-RAN of changes in the fulfilled QoS situation when it is included and set to \"true\". The fulfilled situation is either the QoS profile or an Alternative QoS Profile. The default value \"false\" shall apply, if the attribute is not present and has not been supplied previously.
	DisUeNotif *bool `json:"disUeNotif,omitempty"`
	// Set to true by Subscriber to request the EES to send a test notification as defined in 3GPP TS 29.122. Set to false or omitted otherwise.
	RequestTestNotification *bool               `json:"requestTestNotification,omitempty"`
	WebsockNotifConfig      *WebsockNotifConfig `json:"websockNotifConfig,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"`
}

SessionWithQoS Represents an Individual Session with QoS Subscription.

func NewSessionWithQoS

func NewSessionWithQoS(easId string, ipFlows []string) *SessionWithQoS

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

func NewSessionWithQoSWithDefaults() *SessionWithQoS

NewSessionWithQoSWithDefaults instantiates a new SessionWithQoS object This 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 (*SessionWithQoS) GetAltQosReference

func (o *SessionWithQoS) GetAltQosReference() []string

GetAltQosReference returns the AltQosReference field value if set, zero value otherwise.

func (*SessionWithQoS) GetAltQosReferenceOk

func (o *SessionWithQoS) GetAltQosReferenceOk() ([]string, bool)

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

func (*SessionWithQoS) GetDisUeNotif

func (o *SessionWithQoS) GetDisUeNotif() bool

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

func (*SessionWithQoS) GetDisUeNotifOk

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

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

func (*SessionWithQoS) GetDnn

func (o *SessionWithQoS) GetDnn() string

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

func (*SessionWithQoS) GetDnnOk

func (o *SessionWithQoS) 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 (*SessionWithQoS) GetEasId

func (o *SessionWithQoS) GetEasId() string

GetEasId returns the EasId field value

func (*SessionWithQoS) GetEasIdOk

func (o *SessionWithQoS) GetEasIdOk() (*string, bool)

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

func (*SessionWithQoS) GetEvents

func (o *SessionWithQoS) GetEvents() []UserPlaneEvent

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

func (*SessionWithQoS) GetEventsOk

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

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

func (*SessionWithQoS) GetExtGrpId

func (o *SessionWithQoS) GetExtGrpId() string

GetExtGrpId returns the ExtGrpId field value if set, zero value otherwise.

func (*SessionWithQoS) GetExtGrpIdOk

func (o *SessionWithQoS) GetExtGrpIdOk() (*string, bool)

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

func (*SessionWithQoS) GetIntGrpId

func (o *SessionWithQoS) GetIntGrpId() string

GetIntGrpId returns the IntGrpId field value if set, zero value otherwise.

func (*SessionWithQoS) GetIntGrpIdOk

func (o *SessionWithQoS) GetIntGrpIdOk() (*string, bool)

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

func (*SessionWithQoS) GetIpDomain

func (o *SessionWithQoS) GetIpDomain() string

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

func (*SessionWithQoS) GetIpDomainOk

func (o *SessionWithQoS) 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 (*SessionWithQoS) GetIpFlows

func (o *SessionWithQoS) GetIpFlows() []string

GetIpFlows returns the IpFlows field value

func (*SessionWithQoS) GetIpFlowsOk

func (o *SessionWithQoS) GetIpFlowsOk() ([]string, bool)

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

func (*SessionWithQoS) GetMaxbrDl

func (o *SessionWithQoS) GetMaxbrDl() string

GetMaxbrDl returns the MaxbrDl field value if set, zero value otherwise.

func (*SessionWithQoS) GetMaxbrDlOk

func (o *SessionWithQoS) GetMaxbrDlOk() (*string, bool)

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

func (*SessionWithQoS) GetMaxbrUl

func (o *SessionWithQoS) GetMaxbrUl() string

GetMaxbrUl returns the MaxbrUl field value if set, zero value otherwise.

func (*SessionWithQoS) GetMaxbrUlOk

func (o *SessionWithQoS) GetMaxbrUlOk() (*string, bool)

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

func (*SessionWithQoS) GetNotificationDestination

func (o *SessionWithQoS) GetNotificationDestination() string

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

func (*SessionWithQoS) GetNotificationDestinationOk

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

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

func (*SessionWithQoS) GetQosMonInfo

func (o *SessionWithQoS) GetQosMonInfo() QosMonitoringInformation

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

func (*SessionWithQoS) GetQosMonInfoOk

func (o *SessionWithQoS) GetQosMonInfoOk() (*QosMonitoringInformation, bool)

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

func (*SessionWithQoS) GetQosReference

func (o *SessionWithQoS) GetQosReference() string

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

func (*SessionWithQoS) GetQosReferenceOk

func (o *SessionWithQoS) 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 (*SessionWithQoS) GetRequestTestNotification

func (o *SessionWithQoS) GetRequestTestNotification() bool

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

func (*SessionWithQoS) GetRequestTestNotificationOk

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

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

func (*SessionWithQoS) GetSelf

func (o *SessionWithQoS) GetSelf() string

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

func (*SessionWithQoS) GetSelfOk

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

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

func (*SessionWithQoS) GetSnssai

func (o *SessionWithQoS) GetSnssai() Snssai

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

func (*SessionWithQoS) GetSnssaiOk

func (o *SessionWithQoS) 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 (*SessionWithQoS) GetSponsorInformation

func (o *SessionWithQoS) GetSponsorInformation() SponsorInformation

GetSponsorInformation returns the SponsorInformation field value if set, zero value otherwise.

func (*SessionWithQoS) GetSponsorInformationOk

func (o *SessionWithQoS) GetSponsorInformationOk() (*SponsorInformation, bool)

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

func (*SessionWithQoS) GetSuppFeat

func (o *SessionWithQoS) GetSuppFeat() string

GetSuppFeat returns the SuppFeat field value if set, zero value otherwise.

func (*SessionWithQoS) GetSuppFeatOk

func (o *SessionWithQoS) 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 (*SessionWithQoS) GetUeId

func (o *SessionWithQoS) GetUeId() string

GetUeId returns the UeId field value if set, zero value otherwise.

func (*SessionWithQoS) GetUeIdOk

func (o *SessionWithQoS) GetUeIdOk() (*string, bool)

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

func (*SessionWithQoS) GetUeIpv4Addr

func (o *SessionWithQoS) GetUeIpv4Addr() string

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

func (*SessionWithQoS) GetUeIpv4AddrOk

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

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

func (*SessionWithQoS) GetUeIpv6Addr

func (o *SessionWithQoS) GetUeIpv6Addr() string

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

func (*SessionWithQoS) GetUeIpv6AddrOk

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

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

func (*SessionWithQoS) GetWebsockNotifConfig

func (o *SessionWithQoS) GetWebsockNotifConfig() WebsockNotifConfig

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

func (*SessionWithQoS) GetWebsockNotifConfigOk

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

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

func (*SessionWithQoS) HasAltQosReference

func (o *SessionWithQoS) HasAltQosReference() bool

HasAltQosReference returns a boolean if a field has been set.

func (*SessionWithQoS) HasDisUeNotif

func (o *SessionWithQoS) HasDisUeNotif() bool

HasDisUeNotif returns a boolean if a field has been set.

func (*SessionWithQoS) HasDnn

func (o *SessionWithQoS) HasDnn() bool

HasDnn returns a boolean if a field has been set.

func (*SessionWithQoS) HasEvents

func (o *SessionWithQoS) HasEvents() bool

HasEvents returns a boolean if a field has been set.

func (*SessionWithQoS) HasExtGrpId

func (o *SessionWithQoS) HasExtGrpId() bool

HasExtGrpId returns a boolean if a field has been set.

func (*SessionWithQoS) HasIntGrpId

func (o *SessionWithQoS) HasIntGrpId() bool

HasIntGrpId returns a boolean if a field has been set.

func (*SessionWithQoS) HasIpDomain

func (o *SessionWithQoS) HasIpDomain() bool

HasIpDomain returns a boolean if a field has been set.

func (*SessionWithQoS) HasMaxbrDl

func (o *SessionWithQoS) HasMaxbrDl() bool

HasMaxbrDl returns a boolean if a field has been set.

func (*SessionWithQoS) HasMaxbrUl

func (o *SessionWithQoS) HasMaxbrUl() bool

HasMaxbrUl returns a boolean if a field has been set.

func (*SessionWithQoS) HasNotificationDestination

func (o *SessionWithQoS) HasNotificationDestination() bool

HasNotificationDestination returns a boolean if a field has been set.

func (*SessionWithQoS) HasQosMonInfo

func (o *SessionWithQoS) HasQosMonInfo() bool

HasQosMonInfo returns a boolean if a field has been set.

func (*SessionWithQoS) HasQosReference

func (o *SessionWithQoS) HasQosReference() bool

HasQosReference returns a boolean if a field has been set.

func (*SessionWithQoS) HasRequestTestNotification

func (o *SessionWithQoS) HasRequestTestNotification() bool

HasRequestTestNotification returns a boolean if a field has been set.

func (*SessionWithQoS) HasSelf

func (o *SessionWithQoS) HasSelf() bool

HasSelf returns a boolean if a field has been set.

func (*SessionWithQoS) HasSnssai

func (o *SessionWithQoS) HasSnssai() bool

HasSnssai returns a boolean if a field has been set.

func (*SessionWithQoS) HasSponsorInformation

func (o *SessionWithQoS) HasSponsorInformation() bool

HasSponsorInformation returns a boolean if a field has been set.

func (*SessionWithQoS) HasSuppFeat

func (o *SessionWithQoS) HasSuppFeat() bool

HasSuppFeat returns a boolean if a field has been set.

func (*SessionWithQoS) HasUeId

func (o *SessionWithQoS) HasUeId() bool

HasUeId returns a boolean if a field has been set.

func (*SessionWithQoS) HasUeIpv4Addr

func (o *SessionWithQoS) HasUeIpv4Addr() bool

HasUeIpv4Addr returns a boolean if a field has been set.

func (*SessionWithQoS) HasUeIpv6Addr

func (o *SessionWithQoS) HasUeIpv6Addr() bool

HasUeIpv6Addr returns a boolean if a field has been set.

func (*SessionWithQoS) HasWebsockNotifConfig

func (o *SessionWithQoS) HasWebsockNotifConfig() bool

HasWebsockNotifConfig returns a boolean if a field has been set.

func (SessionWithQoS) MarshalJSON

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

func (*SessionWithQoS) SetAltQosReference

func (o *SessionWithQoS) SetAltQosReference(v []string)

SetAltQosReference gets a reference to the given []string and assigns it to the AltQosReference field.

func (*SessionWithQoS) SetDisUeNotif

func (o *SessionWithQoS) SetDisUeNotif(v bool)

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

func (*SessionWithQoS) SetDnn

func (o *SessionWithQoS) SetDnn(v string)

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

func (*SessionWithQoS) SetEasId

func (o *SessionWithQoS) SetEasId(v string)

SetEasId sets field value

func (*SessionWithQoS) SetEvents

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

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

func (*SessionWithQoS) SetExtGrpId

func (o *SessionWithQoS) SetExtGrpId(v string)

SetExtGrpId gets a reference to the given string and assigns it to the ExtGrpId field.

func (*SessionWithQoS) SetIntGrpId

func (o *SessionWithQoS) SetIntGrpId(v string)

SetIntGrpId gets a reference to the given string and assigns it to the IntGrpId field.

func (*SessionWithQoS) SetIpDomain

func (o *SessionWithQoS) SetIpDomain(v string)

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

func (*SessionWithQoS) SetIpFlows

func (o *SessionWithQoS) SetIpFlows(v []string)

SetIpFlows sets field value

func (*SessionWithQoS) SetMaxbrDl

func (o *SessionWithQoS) SetMaxbrDl(v string)

SetMaxbrDl gets a reference to the given string and assigns it to the MaxbrDl field.

func (*SessionWithQoS) SetMaxbrUl

func (o *SessionWithQoS) SetMaxbrUl(v string)

SetMaxbrUl gets a reference to the given string and assigns it to the MaxbrUl field.

func (*SessionWithQoS) SetNotificationDestination

func (o *SessionWithQoS) SetNotificationDestination(v string)

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

func (*SessionWithQoS) SetQosMonInfo

func (o *SessionWithQoS) SetQosMonInfo(v QosMonitoringInformation)

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

func (*SessionWithQoS) SetQosReference

func (o *SessionWithQoS) SetQosReference(v string)

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

func (*SessionWithQoS) SetRequestTestNotification

func (o *SessionWithQoS) SetRequestTestNotification(v bool)

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

func (*SessionWithQoS) SetSelf

func (o *SessionWithQoS) SetSelf(v string)

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

func (*SessionWithQoS) SetSnssai

func (o *SessionWithQoS) SetSnssai(v Snssai)

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

func (*SessionWithQoS) SetSponsorInformation

func (o *SessionWithQoS) SetSponsorInformation(v SponsorInformation)

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

func (*SessionWithQoS) SetSuppFeat

func (o *SessionWithQoS) SetSuppFeat(v string)

SetSuppFeat gets a reference to the given string and assigns it to the SuppFeat field.

func (*SessionWithQoS) SetUeId

func (o *SessionWithQoS) SetUeId(v string)

SetUeId gets a reference to the given string and assigns it to the UeId field.

func (*SessionWithQoS) SetUeIpv4Addr

func (o *SessionWithQoS) SetUeIpv4Addr(v string)

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

func (*SessionWithQoS) SetUeIpv6Addr

func (o *SessionWithQoS) SetUeIpv6Addr(v string)

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

func (*SessionWithQoS) SetWebsockNotifConfig

func (o *SessionWithQoS) SetWebsockNotifConfig(v WebsockNotifConfig)

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

func (SessionWithQoS) ToMap

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

type SessionWithQoSPatch

type SessionWithQoSPatch struct {
	// Contains the flow description for the Uplink and/or Downlink IP flows.
	IpFlows []string `json:"ipFlows,omitempty"`
	// Identifies a pre-defined QoS information.
	QosReference *string `json:"qosReference,omitempty"`
	// Identifies an ordered list of pre-defined QoS information. The lower the index of the array for a given entry, the higher the priority.
	AltQosReference []string `json:"altQosReference,omitempty"`
	// Indicates the events subscribed by the EAS.
	Events             []UserPlaneEvent            `json:"events,omitempty"`
	SponsorInformation *SponsorInformation         `json:"sponsorInformation,omitempty"`
	QosMonInfo         *QosMonitoringInformationRm `json:"qosMonInfo,omitempty"`
	// string providing an URI formatted according to IETF RFC 3986.
	NotificationDestination *string `json:"notificationDestination,omitempty"`
	// This data type is defined in the same way as the 'BitRate' data type, but with the OpenAPI 'nullable: true' property.
	MaxbrUl NullableString `json:"maxbrUl,omitempty"`
	// This data type is defined in the same way as the 'BitRate' data type, but with the OpenAPI 'nullable: true' property.
	MaxbrDl    NullableString `json:"maxbrDl,omitempty"`
	DisUeNotif *bool          `json:"disUeNotif,omitempty"`
}

SessionWithQoSPatch Represents a modification request of Individual Session with QoS Subscription.

func NewSessionWithQoSPatch

func NewSessionWithQoSPatch() *SessionWithQoSPatch

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

func NewSessionWithQoSPatchWithDefaults() *SessionWithQoSPatch

NewSessionWithQoSPatchWithDefaults instantiates a new SessionWithQoSPatch object This 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 (*SessionWithQoSPatch) GetAltQosReference

func (o *SessionWithQoSPatch) GetAltQosReference() []string

GetAltQosReference returns the AltQosReference field value if set, zero value otherwise.

func (*SessionWithQoSPatch) GetAltQosReferenceOk

func (o *SessionWithQoSPatch) GetAltQosReferenceOk() ([]string, bool)

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

func (*SessionWithQoSPatch) GetDisUeNotif

func (o *SessionWithQoSPatch) GetDisUeNotif() bool

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

func (*SessionWithQoSPatch) GetDisUeNotifOk

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

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

func (*SessionWithQoSPatch) GetEvents

func (o *SessionWithQoSPatch) GetEvents() []UserPlaneEvent

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

func (*SessionWithQoSPatch) GetEventsOk

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

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

func (*SessionWithQoSPatch) GetIpFlows

func (o *SessionWithQoSPatch) GetIpFlows() []string

GetIpFlows returns the IpFlows field value if set, zero value otherwise.

func (*SessionWithQoSPatch) GetIpFlowsOk

func (o *SessionWithQoSPatch) GetIpFlowsOk() ([]string, bool)

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

func (*SessionWithQoSPatch) GetMaxbrDl

func (o *SessionWithQoSPatch) GetMaxbrDl() string

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

func (*SessionWithQoSPatch) GetMaxbrDlOk

func (o *SessionWithQoSPatch) GetMaxbrDlOk() (*string, bool)

GetMaxbrDlOk returns a tuple with the MaxbrDl 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 (*SessionWithQoSPatch) GetMaxbrUl

func (o *SessionWithQoSPatch) GetMaxbrUl() string

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

func (*SessionWithQoSPatch) GetMaxbrUlOk

func (o *SessionWithQoSPatch) GetMaxbrUlOk() (*string, bool)

GetMaxbrUlOk returns a tuple with the MaxbrUl 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 (*SessionWithQoSPatch) GetNotificationDestination

func (o *SessionWithQoSPatch) GetNotificationDestination() string

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

func (*SessionWithQoSPatch) GetNotificationDestinationOk

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

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

func (*SessionWithQoSPatch) GetQosMonInfo

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

func (*SessionWithQoSPatch) GetQosMonInfoOk

func (o *SessionWithQoSPatch) GetQosMonInfoOk() (*QosMonitoringInformationRm, bool)

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

func (*SessionWithQoSPatch) GetQosReference

func (o *SessionWithQoSPatch) GetQosReference() string

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

func (*SessionWithQoSPatch) GetQosReferenceOk

func (o *SessionWithQoSPatch) 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 (*SessionWithQoSPatch) GetSponsorInformation

func (o *SessionWithQoSPatch) GetSponsorInformation() SponsorInformation

GetSponsorInformation returns the SponsorInformation field value if set, zero value otherwise.

func (*SessionWithQoSPatch) GetSponsorInformationOk

func (o *SessionWithQoSPatch) GetSponsorInformationOk() (*SponsorInformation, bool)

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

func (*SessionWithQoSPatch) HasAltQosReference

func (o *SessionWithQoSPatch) HasAltQosReference() bool

HasAltQosReference returns a boolean if a field has been set.

func (*SessionWithQoSPatch) HasDisUeNotif

func (o *SessionWithQoSPatch) HasDisUeNotif() bool

HasDisUeNotif returns a boolean if a field has been set.

func (*SessionWithQoSPatch) HasEvents

func (o *SessionWithQoSPatch) HasEvents() bool

HasEvents returns a boolean if a field has been set.

func (*SessionWithQoSPatch) HasIpFlows

func (o *SessionWithQoSPatch) HasIpFlows() bool

HasIpFlows returns a boolean if a field has been set.

func (*SessionWithQoSPatch) HasMaxbrDl

func (o *SessionWithQoSPatch) HasMaxbrDl() bool

HasMaxbrDl returns a boolean if a field has been set.

func (*SessionWithQoSPatch) HasMaxbrUl

func (o *SessionWithQoSPatch) HasMaxbrUl() bool

HasMaxbrUl returns a boolean if a field has been set.

func (*SessionWithQoSPatch) HasNotificationDestination

func (o *SessionWithQoSPatch) HasNotificationDestination() bool

HasNotificationDestination returns a boolean if a field has been set.

func (*SessionWithQoSPatch) HasQosMonInfo

func (o *SessionWithQoSPatch) HasQosMonInfo() bool

HasQosMonInfo returns a boolean if a field has been set.

func (*SessionWithQoSPatch) HasQosReference

func (o *SessionWithQoSPatch) HasQosReference() bool

HasQosReference returns a boolean if a field has been set.

func (*SessionWithQoSPatch) HasSponsorInformation

func (o *SessionWithQoSPatch) HasSponsorInformation() bool

HasSponsorInformation returns a boolean if a field has been set.

func (SessionWithQoSPatch) MarshalJSON

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

func (*SessionWithQoSPatch) SetAltQosReference

func (o *SessionWithQoSPatch) SetAltQosReference(v []string)

SetAltQosReference gets a reference to the given []string and assigns it to the AltQosReference field.

func (*SessionWithQoSPatch) SetDisUeNotif

func (o *SessionWithQoSPatch) SetDisUeNotif(v bool)

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

func (*SessionWithQoSPatch) SetEvents

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

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

func (*SessionWithQoSPatch) SetIpFlows

func (o *SessionWithQoSPatch) SetIpFlows(v []string)

SetIpFlows gets a reference to the given []string and assigns it to the IpFlows field.

func (*SessionWithQoSPatch) SetMaxbrDl

func (o *SessionWithQoSPatch) SetMaxbrDl(v string)

SetMaxbrDl gets a reference to the given NullableString and assigns it to the MaxbrDl field.

func (*SessionWithQoSPatch) SetMaxbrDlNil

func (o *SessionWithQoSPatch) SetMaxbrDlNil()

SetMaxbrDlNil sets the value for MaxbrDl to be an explicit nil

func (*SessionWithQoSPatch) SetMaxbrUl

func (o *SessionWithQoSPatch) SetMaxbrUl(v string)

SetMaxbrUl gets a reference to the given NullableString and assigns it to the MaxbrUl field.

func (*SessionWithQoSPatch) SetMaxbrUlNil

func (o *SessionWithQoSPatch) SetMaxbrUlNil()

SetMaxbrUlNil sets the value for MaxbrUl to be an explicit nil

func (*SessionWithQoSPatch) SetNotificationDestination

func (o *SessionWithQoSPatch) SetNotificationDestination(v string)

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

func (*SessionWithQoSPatch) SetQosMonInfo

func (o *SessionWithQoSPatch) SetQosMonInfo(v QosMonitoringInformationRm)

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

func (*SessionWithQoSPatch) SetQosReference

func (o *SessionWithQoSPatch) SetQosReference(v string)

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

func (*SessionWithQoSPatch) SetSponsorInformation

func (o *SessionWithQoSPatch) SetSponsorInformation(v SponsorInformation)

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

func (SessionWithQoSPatch) ToMap

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

func (*SessionWithQoSPatch) UnsetMaxbrDl

func (o *SessionWithQoSPatch) UnsetMaxbrDl()

UnsetMaxbrDl ensures that no value is present for MaxbrDl, not even an explicit nil

func (*SessionWithQoSPatch) UnsetMaxbrUl

func (o *SessionWithQoSPatch) UnsetMaxbrUl()

UnsetMaxbrUl ensures that no value is present for MaxbrUl, not even an explicit nil

type SessionsWithQoSCollectionApiService

type SessionsWithQoSCollectionApiService service

SessionsWithQoSCollectionApiService SessionsWithQoSCollectionApi service

func (*SessionsWithQoSCollectionApiService) CreateIndSessionWithQoS

CreateIndSessionWithQoS Create a new Individual Session with QoS resource

Request reservation of resources for a data session between AC and EAS with a specific QoS.

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

func (*SessionsWithQoSCollectionApiService) CreateIndSessionWithQoSExecute

Execute executes the request

@return SessionWithQoS

func (*SessionsWithQoSCollectionApiService) ReadAllSessionsWithQoS

ReadAllSessionsWithQoS Read all Sessions with QoS resource

Retrieve all the Session With QoS information.

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

func (*SessionsWithQoSCollectionApiService) ReadAllSessionsWithQoSExecute

Execute executes the request

@return []SessionWithQoS

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)

type SponsorInformation

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

SponsorInformation Represents a sponsor information.

func NewSponsorInformation

func NewSponsorInformation(sponsorId string, aspId string) *SponsorInformation

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

func NewSponsorInformationWithDefaults

func NewSponsorInformationWithDefaults() *SponsorInformation

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

func (*SponsorInformation) GetAspId

func (o *SponsorInformation) GetAspId() string

GetAspId returns the AspId field value

func (*SponsorInformation) GetAspIdOk

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

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

func (*SponsorInformation) GetSponsorId

func (o *SponsorInformation) GetSponsorId() string

GetSponsorId returns the SponsorId field value

func (*SponsorInformation) GetSponsorIdOk

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

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

func (SponsorInformation) MarshalJSON

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

func (*SponsorInformation) SetAspId

func (o *SponsorInformation) SetAspId(v string)

SetAspId sets field value

func (*SponsorInformation) SetSponsorId

func (o *SponsorInformation) SetSponsorId(v string)

SetSponsorId sets field value

func (SponsorInformation) ToMap

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

type UserPlaneEvent

type UserPlaneEvent struct {
	String *string
}

UserPlaneEvent Possible values are - SESSION_TERMINATION: Indicates that Rx session is terminated. - LOSS_OF_BEARER : Indicates a loss of a bearer. - RECOVERY_OF_BEARER: Indicates a recovery of a bearer. - RELEASE_OF_BEARER: Indicates a release of a bearer. - USAGE_REPORT: Indicates the usage report event. - FAILED_RESOURCES_ALLOCATION: Indicates the resource allocation is failed. - QOS_GUARANTEED: The QoS targets of one or more SDFs are guaranteed again. - QOS_NOT_GUARANTEED: The QoS targets of one or more SDFs are not being guaranteed. - QOS_MONITORING: Indicates a QoS monitoring event. - SUCCESSFUL_RESOURCES_ALLOCATION: Indicates the resource allocation is successful. - ACCESS_TYPE_CHANGE: Indicates an Access type change. - PLMN_CHG: Indicates a PLMN change.

func (*UserPlaneEvent) MarshalJSON

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

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

func (*UserPlaneEvent) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type UserPlaneEventNotification

type UserPlaneEventNotification struct {
	// String identifying the individual data session information for which the QoS event notification is delivered.
	SessionId string `json:"sessionId"`
	// Contains the flow description for the Uplink and/or Downlink IP flows.
	EventReports []UserPlaneEventReport `json:"eventReports"`
}

UserPlaneEventNotification Represents the user plane event notification.

func NewUserPlaneEventNotification

func NewUserPlaneEventNotification(sessionId string, eventReports []UserPlaneEventReport) *UserPlaneEventNotification

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

func NewUserPlaneEventNotificationWithDefaults() *UserPlaneEventNotification

NewUserPlaneEventNotificationWithDefaults instantiates a new UserPlaneEventNotification object This 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 (*UserPlaneEventNotification) GetEventReports

func (o *UserPlaneEventNotification) GetEventReports() []UserPlaneEventReport

GetEventReports returns the EventReports field value

func (*UserPlaneEventNotification) GetEventReportsOk

func (o *UserPlaneEventNotification) GetEventReportsOk() ([]UserPlaneEventReport, bool)

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

func (*UserPlaneEventNotification) GetSessionId

func (o *UserPlaneEventNotification) GetSessionId() string

GetSessionId returns the SessionId field value

func (*UserPlaneEventNotification) GetSessionIdOk

func (o *UserPlaneEventNotification) GetSessionIdOk() (*string, bool)

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

func (UserPlaneEventNotification) MarshalJSON

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

func (*UserPlaneEventNotification) SetEventReports

func (o *UserPlaneEventNotification) SetEventReports(v []UserPlaneEventReport)

SetEventReports sets field value

func (*UserPlaneEventNotification) SetSessionId

func (o *UserPlaneEventNotification) SetSessionId(v string)

SetSessionId sets field value

func (UserPlaneEventNotification) ToMap

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

type UserPlaneEventReport

type UserPlaneEventReport struct {
	Event            UserPlaneEvent    `json:"event"`
	AccumulatedUsage *AccumulatedUsage `json:"accumulatedUsage,omitempty"`
	// Identifies the affected flows that were sent during event subscription. It might be omitted when the reported event applies to all the flows sent during the subscription.
	FlowIds []int32 `json:"flowIds,omitempty"`
	// The currently applied QoS reference. Applicable for event QOS_NOT_GUARANTEED or SUCCESSFUL_RESOURCES_ALLOCATION.
	AppliedQosRef *string    `json:"appliedQosRef,omitempty"`
	PlmnId        *PlmnIdNid `json:"plmnId,omitempty"`
	// Contains the QoS Monitoring Reporting information
	QosMonReports []QosMonitoringReport `json:"qosMonReports,omitempty"`
	RatType       *RatType              `json:"ratType,omitempty"`
}

UserPlaneEventReport Represents an event report for user plane.

func NewUserPlaneEventReport

func NewUserPlaneEventReport(event UserPlaneEvent) *UserPlaneEventReport

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

func NewUserPlaneEventReportWithDefaults

func NewUserPlaneEventReportWithDefaults() *UserPlaneEventReport

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

func (*UserPlaneEventReport) GetAccumulatedUsage

func (o *UserPlaneEventReport) GetAccumulatedUsage() AccumulatedUsage

GetAccumulatedUsage returns the AccumulatedUsage field value if set, zero value otherwise.

func (*UserPlaneEventReport) GetAccumulatedUsageOk

func (o *UserPlaneEventReport) GetAccumulatedUsageOk() (*AccumulatedUsage, bool)

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

func (*UserPlaneEventReport) GetAppliedQosRef

func (o *UserPlaneEventReport) GetAppliedQosRef() string

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

func (*UserPlaneEventReport) GetAppliedQosRefOk

func (o *UserPlaneEventReport) GetAppliedQosRefOk() (*string, bool)

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

func (*UserPlaneEventReport) GetEvent

func (o *UserPlaneEventReport) GetEvent() UserPlaneEvent

GetEvent returns the Event field value

func (*UserPlaneEventReport) GetEventOk

func (o *UserPlaneEventReport) GetEventOk() (*UserPlaneEvent, bool)

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

func (*UserPlaneEventReport) GetFlowIds

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

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

func (*UserPlaneEventReport) GetFlowIdsOk

func (o *UserPlaneEventReport) GetFlowIdsOk() ([]int32, bool)

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

func (*UserPlaneEventReport) GetPlmnId

func (o *UserPlaneEventReport) GetPlmnId() PlmnIdNid

GetPlmnId returns the PlmnId field value if set, zero value otherwise.

func (*UserPlaneEventReport) GetPlmnIdOk

func (o *UserPlaneEventReport) GetPlmnIdOk() (*PlmnIdNid, bool)

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

func (*UserPlaneEventReport) GetQosMonReports

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

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

func (*UserPlaneEventReport) GetQosMonReportsOk

func (o *UserPlaneEventReport) GetQosMonReportsOk() ([]QosMonitoringReport, bool)

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

func (*UserPlaneEventReport) GetRatType

func (o *UserPlaneEventReport) GetRatType() RatType

GetRatType returns the RatType field value if set, zero value otherwise.

func (*UserPlaneEventReport) GetRatTypeOk

func (o *UserPlaneEventReport) GetRatTypeOk() (*RatType, bool)

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

func (*UserPlaneEventReport) HasAccumulatedUsage

func (o *UserPlaneEventReport) HasAccumulatedUsage() bool

HasAccumulatedUsage returns a boolean if a field has been set.

func (*UserPlaneEventReport) HasAppliedQosRef

func (o *UserPlaneEventReport) HasAppliedQosRef() bool

HasAppliedQosRef returns a boolean if a field has been set.

func (*UserPlaneEventReport) HasFlowIds

func (o *UserPlaneEventReport) HasFlowIds() bool

HasFlowIds returns a boolean if a field has been set.

func (*UserPlaneEventReport) HasPlmnId

func (o *UserPlaneEventReport) HasPlmnId() bool

HasPlmnId returns a boolean if a field has been set.

func (*UserPlaneEventReport) HasQosMonReports

func (o *UserPlaneEventReport) HasQosMonReports() bool

HasQosMonReports returns a boolean if a field has been set.

func (*UserPlaneEventReport) HasRatType

func (o *UserPlaneEventReport) HasRatType() bool

HasRatType returns a boolean if a field has been set.

func (UserPlaneEventReport) MarshalJSON

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

func (*UserPlaneEventReport) SetAccumulatedUsage

func (o *UserPlaneEventReport) SetAccumulatedUsage(v AccumulatedUsage)

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

func (*UserPlaneEventReport) SetAppliedQosRef

func (o *UserPlaneEventReport) SetAppliedQosRef(v string)

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

func (*UserPlaneEventReport) SetEvent

func (o *UserPlaneEventReport) SetEvent(v UserPlaneEvent)

SetEvent sets field value

func (*UserPlaneEventReport) SetFlowIds

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

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

func (*UserPlaneEventReport) SetPlmnId

func (o *UserPlaneEventReport) SetPlmnId(v PlmnIdNid)

SetPlmnId gets a reference to the given PlmnIdNid and assigns it to the PlmnId field.

func (*UserPlaneEventReport) SetQosMonReports

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

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

func (*UserPlaneEventReport) SetRatType

func (o *UserPlaneEventReport) SetRatType(v RatType)

SetRatType gets a reference to the given RatType and assigns it to the RatType field.

func (UserPlaneEventReport) ToMap

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

type WebsockNotifConfig

type WebsockNotifConfig struct {
	// string formatted according to IETF RFC 3986 identifying a referenced resource.
	WebsocketUri *string `json:"websocketUri,omitempty"`
	// Set by the SCS/AS to indicate that the Websocket delivery is requested.
	RequestWebsocketUri *bool `json:"requestWebsocketUri,omitempty"`
}

WebsockNotifConfig Represents the configuration information for the delivery of notifications over Websockets.

func NewWebsockNotifConfig

func NewWebsockNotifConfig() *WebsockNotifConfig

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

func NewWebsockNotifConfigWithDefaults

func NewWebsockNotifConfigWithDefaults() *WebsockNotifConfig

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

func (*WebsockNotifConfig) GetRequestWebsocketUri

func (o *WebsockNotifConfig) GetRequestWebsocketUri() bool

GetRequestWebsocketUri returns the RequestWebsocketUri field value if set, zero value otherwise.

func (*WebsockNotifConfig) GetRequestWebsocketUriOk

func (o *WebsockNotifConfig) GetRequestWebsocketUriOk() (*bool, bool)

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

func (*WebsockNotifConfig) GetWebsocketUri

func (o *WebsockNotifConfig) GetWebsocketUri() string

GetWebsocketUri returns the WebsocketUri field value if set, zero value otherwise.

func (*WebsockNotifConfig) GetWebsocketUriOk

func (o *WebsockNotifConfig) GetWebsocketUriOk() (*string, bool)

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

func (*WebsockNotifConfig) HasRequestWebsocketUri

func (o *WebsockNotifConfig) HasRequestWebsocketUri() bool

HasRequestWebsocketUri returns a boolean if a field has been set.

func (*WebsockNotifConfig) HasWebsocketUri

func (o *WebsockNotifConfig) HasWebsocketUri() bool

HasWebsocketUri returns a boolean if a field has been set.

func (WebsockNotifConfig) MarshalJSON

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

func (*WebsockNotifConfig) SetRequestWebsocketUri

func (o *WebsockNotifConfig) SetRequestWebsocketUri(v bool)

SetRequestWebsocketUri gets a reference to the given bool and assigns it to the RequestWebsocketUri field.

func (*WebsockNotifConfig) SetWebsocketUri

func (o *WebsockNotifConfig) SetWebsocketUri(v string)

SetWebsocketUri gets a reference to the given string and assigns it to the WebsocketUri field.

func (WebsockNotifConfig) ToMap

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

Jump to

Keyboard shortcuts

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