openapi_Npcf_SMPolicyControl

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_Npcf_SMPolicyControl

Session Management Policy Control Service
© 2022, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC).
All rights reserved.

Overview

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

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

Installation

Install the following dependencies:

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

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

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

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_Npcf_SMPolicyControl.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_Npcf_SMPolicyControl.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_Npcf_SMPolicyControl.ContextOperationServerIndices, map[string]int{
	"{classname}Service.{nickname}": 2,
})
ctx = context.WithValue(context.Background(), openapi_Npcf_SMPolicyControl.ContextOperationServerVariables, map[string]map[string]string{
	"{classname}Service.{nickname}": {
		"port": "8443",
	},
})

Documentation for API Endpoints

All URIs are relative to https://example.com/npcf-smpolicycontrol/v1

Class Method HTTP request Description
IndividualSMPolicyDocumentApi DeleteSMPolicy Post /sm-policies/{smPolicyId}/delete Delete an existing Individual SM Policy
IndividualSMPolicyDocumentApi GetSMPolicy Get /sm-policies/{smPolicyId} Read an Individual SM Policy
IndividualSMPolicyDocumentApi UpdateSMPolicy Post /sm-policies/{smPolicyId}/update Update an existing Individual SM Policy
SMPoliciesCollectionApi CreateSMPolicy Post /sm-policies Create a new Individual SM Policy

Documentation For Models

Documentation For Authorization

oAuth2ClientCredentials
  • Type: OAuth
  • Flow: application
  • Authorization URL:
  • Scopes:
  • npcf-smpolicycontrol: Access to the Npcf_SMPolicyControl API

Example

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

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

import "golang.org/x/oauth2"

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

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

Documentation for Utility Methods

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

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

Author

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")
)
View Source
var AllowedAccessTypeEnumValues = []AccessType{
	"3GPP_ACCESS",
	"NON_3GPP_ACCESS",
}

All allowed values of AccessType enum

View Source
var AllowedNullValueEnumValues = []NullValue{
	"null",
}

All allowed values of NullValue enum

Functions

func CacheExpires

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

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

func IsNil added in v1.18.2

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 {
	IndividualSMPolicyDocumentApi *IndividualSMPolicyDocumentApiService

	SMPoliciesCollectionApi *SMPoliciesCollectionApiService
	// contains filtered or unexported fields
}

APIClient manages communication with the Npcf_SMPolicyControl API API v1.3.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 AccNetChId

type AccNetChId struct {
	Interface *interface{}
}

AccNetChId - Contains the access network charging identifier for the PCC rule(s) or for the whole PDU session.

func InterfaceAsAccNetChId

func InterfaceAsAccNetChId(v *interface{}) AccNetChId

interface{}AsAccNetChId is a convenience function that returns interface{} wrapped in AccNetChId

func (*AccNetChId) GetActualInstance

func (obj *AccNetChId) GetActualInstance() interface{}

Get the actual instance

func (AccNetChId) MarshalJSON

func (src AccNetChId) MarshalJSON() ([]byte, error)

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

func (*AccNetChId) UnmarshalJSON

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

Unmarshal JSON data into one of the pointers in the struct

type AccNetChargingAddress

type AccNetChargingAddress struct {
	Interface *interface{}
}

AccNetChargingAddress Describes the network entity within the access network performing charging

func (*AccNetChargingAddress) MarshalJSON

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

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

func (*AccNetChargingAddress) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type AccessTokenErr

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

AccessTokenErr Error returned in the access token response message

func NewAccessTokenErr

func NewAccessTokenErr(error_ string) *AccessTokenErr

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

func NewAccessTokenErrWithDefaults

func NewAccessTokenErrWithDefaults() *AccessTokenErr

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

func (*AccessTokenErr) GetError

func (o *AccessTokenErr) GetError() string

GetError returns the Error field value

func (*AccessTokenErr) GetErrorDescription

func (o *AccessTokenErr) GetErrorDescription() string

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

func (*AccessTokenErr) GetErrorDescriptionOk

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

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

func (*AccessTokenErr) GetErrorOk

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

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

func (*AccessTokenErr) GetErrorUri

func (o *AccessTokenErr) GetErrorUri() string

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

func (*AccessTokenErr) GetErrorUriOk

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

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

func (*AccessTokenErr) HasErrorDescription

func (o *AccessTokenErr) HasErrorDescription() bool

HasErrorDescription returns a boolean if a field has been set.

func (*AccessTokenErr) HasErrorUri

func (o *AccessTokenErr) HasErrorUri() bool

HasErrorUri returns a boolean if a field has been set.

func (AccessTokenErr) MarshalJSON

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

func (*AccessTokenErr) SetError

func (o *AccessTokenErr) SetError(v string)

SetError sets field value

func (*AccessTokenErr) SetErrorDescription

func (o *AccessTokenErr) SetErrorDescription(v string)

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

func (*AccessTokenErr) SetErrorUri

func (o *AccessTokenErr) SetErrorUri(v string)

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

func (AccessTokenErr) ToMap

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

type AccessTokenReq

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

AccessTokenReq Contains information related to the access token request

func NewAccessTokenReq

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

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

func NewAccessTokenReqWithDefaults

func NewAccessTokenReqWithDefaults() *AccessTokenReq

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

func (*AccessTokenReq) GetGrantType

func (o *AccessTokenReq) GetGrantType() string

GetGrantType returns the GrantType field value

func (*AccessTokenReq) GetGrantTypeOk

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

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

func (*AccessTokenReq) GetHnrfAccessTokenUri

func (o *AccessTokenReq) GetHnrfAccessTokenUri() string

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

func (*AccessTokenReq) GetHnrfAccessTokenUriOk

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

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

func (*AccessTokenReq) GetNfInstanceId

func (o *AccessTokenReq) GetNfInstanceId() string

GetNfInstanceId returns the NfInstanceId field value

func (*AccessTokenReq) GetNfInstanceIdOk

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

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

func (*AccessTokenReq) GetNfType

func (o *AccessTokenReq) GetNfType() NFType

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

func (*AccessTokenReq) GetNfTypeOk

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

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

func (*AccessTokenReq) GetRequesterFqdn

func (o *AccessTokenReq) GetRequesterFqdn() string

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

func (*AccessTokenReq) GetRequesterFqdnOk

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

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

func (*AccessTokenReq) GetRequesterPlmn

func (o *AccessTokenReq) GetRequesterPlmn() PlmnId

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

func (*AccessTokenReq) GetRequesterPlmnList

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

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

func (*AccessTokenReq) GetRequesterPlmnListOk

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

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

func (*AccessTokenReq) GetRequesterPlmnOk

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

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

func (*AccessTokenReq) GetRequesterSnpnList

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

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

func (*AccessTokenReq) GetRequesterSnpnListOk

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

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

func (*AccessTokenReq) GetRequesterSnssaiList

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

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

func (*AccessTokenReq) GetRequesterSnssaiListOk

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

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

func (*AccessTokenReq) GetScope

func (o *AccessTokenReq) GetScope() string

GetScope returns the Scope field value

func (*AccessTokenReq) GetScopeOk

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

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

func (*AccessTokenReq) GetSourceNfInstanceId

func (o *AccessTokenReq) GetSourceNfInstanceId() string

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

func (*AccessTokenReq) GetSourceNfInstanceIdOk

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

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

func (*AccessTokenReq) GetTargetNfInstanceId

func (o *AccessTokenReq) GetTargetNfInstanceId() string

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

func (*AccessTokenReq) GetTargetNfInstanceIdOk

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

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

func (*AccessTokenReq) GetTargetNfServiceSetId

func (o *AccessTokenReq) GetTargetNfServiceSetId() string

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

func (*AccessTokenReq) GetTargetNfServiceSetIdOk

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

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

func (*AccessTokenReq) GetTargetNfSetId

func (o *AccessTokenReq) GetTargetNfSetId() string

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

func (*AccessTokenReq) GetTargetNfSetIdOk

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

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

func (*AccessTokenReq) GetTargetNfType

func (o *AccessTokenReq) GetTargetNfType() NFType

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

func (*AccessTokenReq) GetTargetNfTypeOk

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

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

func (*AccessTokenReq) GetTargetNsiList

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

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

func (*AccessTokenReq) GetTargetNsiListOk

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

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

func (*AccessTokenReq) GetTargetPlmn

func (o *AccessTokenReq) GetTargetPlmn() PlmnId

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

func (*AccessTokenReq) GetTargetPlmnOk

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

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

func (*AccessTokenReq) GetTargetSnpn

func (o *AccessTokenReq) GetTargetSnpn() PlmnIdNid

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

func (*AccessTokenReq) GetTargetSnpnOk

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

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

func (*AccessTokenReq) GetTargetSnssaiList

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

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

func (*AccessTokenReq) GetTargetSnssaiListOk

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

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

func (*AccessTokenReq) HasHnrfAccessTokenUri

func (o *AccessTokenReq) HasHnrfAccessTokenUri() bool

HasHnrfAccessTokenUri returns a boolean if a field has been set.

func (*AccessTokenReq) HasNfType

func (o *AccessTokenReq) HasNfType() bool

HasNfType returns a boolean if a field has been set.

func (*AccessTokenReq) HasRequesterFqdn

func (o *AccessTokenReq) HasRequesterFqdn() bool

HasRequesterFqdn returns a boolean if a field has been set.

func (*AccessTokenReq) HasRequesterPlmn

func (o *AccessTokenReq) HasRequesterPlmn() bool

HasRequesterPlmn returns a boolean if a field has been set.

func (*AccessTokenReq) HasRequesterPlmnList

func (o *AccessTokenReq) HasRequesterPlmnList() bool

HasRequesterPlmnList returns a boolean if a field has been set.

func (*AccessTokenReq) HasRequesterSnpnList

func (o *AccessTokenReq) HasRequesterSnpnList() bool

HasRequesterSnpnList returns a boolean if a field has been set.

func (*AccessTokenReq) HasRequesterSnssaiList

func (o *AccessTokenReq) HasRequesterSnssaiList() bool

HasRequesterSnssaiList returns a boolean if a field has been set.

func (*AccessTokenReq) HasSourceNfInstanceId

func (o *AccessTokenReq) HasSourceNfInstanceId() bool

HasSourceNfInstanceId returns a boolean if a field has been set.

func (*AccessTokenReq) HasTargetNfInstanceId

func (o *AccessTokenReq) HasTargetNfInstanceId() bool

HasTargetNfInstanceId returns a boolean if a field has been set.

func (*AccessTokenReq) HasTargetNfServiceSetId

func (o *AccessTokenReq) HasTargetNfServiceSetId() bool

HasTargetNfServiceSetId returns a boolean if a field has been set.

func (*AccessTokenReq) HasTargetNfSetId

func (o *AccessTokenReq) HasTargetNfSetId() bool

HasTargetNfSetId returns a boolean if a field has been set.

func (*AccessTokenReq) HasTargetNfType

func (o *AccessTokenReq) HasTargetNfType() bool

HasTargetNfType returns a boolean if a field has been set.

func (*AccessTokenReq) HasTargetNsiList

func (o *AccessTokenReq) HasTargetNsiList() bool

HasTargetNsiList returns a boolean if a field has been set.

func (*AccessTokenReq) HasTargetPlmn

func (o *AccessTokenReq) HasTargetPlmn() bool

HasTargetPlmn returns a boolean if a field has been set.

func (*AccessTokenReq) HasTargetSnpn

func (o *AccessTokenReq) HasTargetSnpn() bool

HasTargetSnpn returns a boolean if a field has been set.

func (*AccessTokenReq) HasTargetSnssaiList

func (o *AccessTokenReq) HasTargetSnssaiList() bool

HasTargetSnssaiList returns a boolean if a field has been set.

func (AccessTokenReq) MarshalJSON

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

func (*AccessTokenReq) SetGrantType

func (o *AccessTokenReq) SetGrantType(v string)

SetGrantType sets field value

func (*AccessTokenReq) SetHnrfAccessTokenUri

func (o *AccessTokenReq) SetHnrfAccessTokenUri(v string)

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

func (*AccessTokenReq) SetNfInstanceId

func (o *AccessTokenReq) SetNfInstanceId(v string)

SetNfInstanceId sets field value

func (*AccessTokenReq) SetNfType

func (o *AccessTokenReq) SetNfType(v NFType)

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

func (*AccessTokenReq) SetRequesterFqdn

func (o *AccessTokenReq) SetRequesterFqdn(v string)

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

func (*AccessTokenReq) SetRequesterPlmn

func (o *AccessTokenReq) SetRequesterPlmn(v PlmnId)

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

func (*AccessTokenReq) SetRequesterPlmnList

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

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

func (*AccessTokenReq) SetRequesterSnpnList

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

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

func (*AccessTokenReq) SetRequesterSnssaiList

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

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

func (*AccessTokenReq) SetScope

func (o *AccessTokenReq) SetScope(v string)

SetScope sets field value

func (*AccessTokenReq) SetSourceNfInstanceId

func (o *AccessTokenReq) SetSourceNfInstanceId(v string)

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

func (*AccessTokenReq) SetTargetNfInstanceId

func (o *AccessTokenReq) SetTargetNfInstanceId(v string)

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

func (*AccessTokenReq) SetTargetNfServiceSetId

func (o *AccessTokenReq) SetTargetNfServiceSetId(v string)

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

func (*AccessTokenReq) SetTargetNfSetId

func (o *AccessTokenReq) SetTargetNfSetId(v string)

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

func (*AccessTokenReq) SetTargetNfType

func (o *AccessTokenReq) SetTargetNfType(v NFType)

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

func (*AccessTokenReq) SetTargetNsiList

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

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

func (*AccessTokenReq) SetTargetPlmn

func (o *AccessTokenReq) SetTargetPlmn(v PlmnId)

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

func (*AccessTokenReq) SetTargetSnpn

func (o *AccessTokenReq) SetTargetSnpn(v PlmnIdNid)

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

func (*AccessTokenReq) SetTargetSnssaiList

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

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

func (AccessTokenReq) ToMap

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

type AccessType

type AccessType string

AccessType Indicates whether the access is via 3GPP or via non-3GPP.

const (
	NON_3_GPP_ACCESS AccessType = "NON_3GPP_ACCESS"
)

List of AccessType

func NewAccessTypeFromValue

func NewAccessTypeFromValue(v string) (*AccessType, error)

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

func (AccessType) IsValid

func (v AccessType) IsValid() bool

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

func (AccessType) Ptr

func (v AccessType) Ptr() *AccessType

Ptr returns reference to AccessType value

func (*AccessType) UnmarshalJSON

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

type AccessTypeRm

type AccessTypeRm struct {
	AccessType *AccessType
	NullValue  *NullValue
}

AccessTypeRm Indicates wether the access is via 3GPP or via non-3GPP but with the OpenAPI 'nullable: true' property.\"

func (*AccessTypeRm) MarshalJSON

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

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

func (*AccessTypeRm) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type AccuUsageReport

type AccuUsageReport struct {
	// An id referencing UsageMonitoringData objects associated with this usage report.
	RefUmIds string `json:"refUmIds"`
	// Unsigned integer identifying a volume in units of bytes.
	VolUsage *int64 `json:"volUsage,omitempty"`
	// Unsigned integer identifying a volume in units of bytes.
	VolUsageUplink *int64 `json:"volUsageUplink,omitempty"`
	// Unsigned integer identifying a volume in units of bytes.
	VolUsageDownlink *int64 `json:"volUsageDownlink,omitempty"`
	// indicating a time in seconds.
	TimeUsage *int32 `json:"timeUsage,omitempty"`
	// Unsigned integer identifying a volume in units of bytes.
	NextVolUsage *int64 `json:"nextVolUsage,omitempty"`
	// Unsigned integer identifying a volume in units of bytes.
	NextVolUsageUplink *int64 `json:"nextVolUsageUplink,omitempty"`
	// Unsigned integer identifying a volume in units of bytes.
	NextVolUsageDownlink *int64 `json:"nextVolUsageDownlink,omitempty"`
	// indicating a time in seconds.
	NextTimeUsage *int32 `json:"nextTimeUsage,omitempty"`
}

AccuUsageReport Contains the accumulated usage report information.

func NewAccuUsageReport

func NewAccuUsageReport(refUmIds string) *AccuUsageReport

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

func NewAccuUsageReportWithDefaults() *AccuUsageReport

NewAccuUsageReportWithDefaults instantiates a new AccuUsageReport object This 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 (*AccuUsageReport) GetNextTimeUsage

func (o *AccuUsageReport) GetNextTimeUsage() int32

GetNextTimeUsage returns the NextTimeUsage field value if set, zero value otherwise.

func (*AccuUsageReport) GetNextTimeUsageOk

func (o *AccuUsageReport) GetNextTimeUsageOk() (*int32, bool)

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

func (*AccuUsageReport) GetNextVolUsage

func (o *AccuUsageReport) GetNextVolUsage() int64

GetNextVolUsage returns the NextVolUsage field value if set, zero value otherwise.

func (o *AccuUsageReport) GetNextVolUsageDownlink() int64

GetNextVolUsageDownlink returns the NextVolUsageDownlink field value if set, zero value otherwise.

func (*AccuUsageReport) GetNextVolUsageDownlinkOk

func (o *AccuUsageReport) GetNextVolUsageDownlinkOk() (*int64, bool)

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

func (*AccuUsageReport) GetNextVolUsageOk

func (o *AccuUsageReport) GetNextVolUsageOk() (*int64, bool)

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

func (o *AccuUsageReport) GetNextVolUsageUplink() int64

GetNextVolUsageUplink returns the NextVolUsageUplink field value if set, zero value otherwise.

func (*AccuUsageReport) GetNextVolUsageUplinkOk

func (o *AccuUsageReport) GetNextVolUsageUplinkOk() (*int64, bool)

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

func (*AccuUsageReport) GetRefUmIds

func (o *AccuUsageReport) GetRefUmIds() string

GetRefUmIds returns the RefUmIds field value

func (*AccuUsageReport) GetRefUmIdsOk

func (o *AccuUsageReport) GetRefUmIdsOk() (*string, bool)

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

func (*AccuUsageReport) GetTimeUsage

func (o *AccuUsageReport) GetTimeUsage() int32

GetTimeUsage returns the TimeUsage field value if set, zero value otherwise.

func (*AccuUsageReport) GetTimeUsageOk

func (o *AccuUsageReport) GetTimeUsageOk() (*int32, bool)

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

func (*AccuUsageReport) GetVolUsage

func (o *AccuUsageReport) GetVolUsage() int64

GetVolUsage returns the VolUsage field value if set, zero value otherwise.

func (o *AccuUsageReport) GetVolUsageDownlink() int64

GetVolUsageDownlink returns the VolUsageDownlink field value if set, zero value otherwise.

func (*AccuUsageReport) GetVolUsageDownlinkOk

func (o *AccuUsageReport) GetVolUsageDownlinkOk() (*int64, bool)

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

func (*AccuUsageReport) GetVolUsageOk

func (o *AccuUsageReport) GetVolUsageOk() (*int64, bool)

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

func (o *AccuUsageReport) GetVolUsageUplink() int64

GetVolUsageUplink returns the VolUsageUplink field value if set, zero value otherwise.

func (*AccuUsageReport) GetVolUsageUplinkOk

func (o *AccuUsageReport) GetVolUsageUplinkOk() (*int64, bool)

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

func (*AccuUsageReport) HasNextTimeUsage

func (o *AccuUsageReport) HasNextTimeUsage() bool

HasNextTimeUsage returns a boolean if a field has been set.

func (*AccuUsageReport) HasNextVolUsage

func (o *AccuUsageReport) HasNextVolUsage() bool

HasNextVolUsage returns a boolean if a field has been set.

func (o *AccuUsageReport) HasNextVolUsageDownlink() bool

HasNextVolUsageDownlink returns a boolean if a field has been set.

func (o *AccuUsageReport) HasNextVolUsageUplink() bool

HasNextVolUsageUplink returns a boolean if a field has been set.

func (*AccuUsageReport) HasTimeUsage

func (o *AccuUsageReport) HasTimeUsage() bool

HasTimeUsage returns a boolean if a field has been set.

func (*AccuUsageReport) HasVolUsage

func (o *AccuUsageReport) HasVolUsage() bool

HasVolUsage returns a boolean if a field has been set.

func (o *AccuUsageReport) HasVolUsageDownlink() bool

HasVolUsageDownlink returns a boolean if a field has been set.

func (o *AccuUsageReport) HasVolUsageUplink() bool

HasVolUsageUplink returns a boolean if a field has been set.

func (AccuUsageReport) MarshalJSON

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

func (*AccuUsageReport) SetNextTimeUsage

func (o *AccuUsageReport) SetNextTimeUsage(v int32)

SetNextTimeUsage gets a reference to the given int32 and assigns it to the NextTimeUsage field.

func (*AccuUsageReport) SetNextVolUsage

func (o *AccuUsageReport) SetNextVolUsage(v int64)

SetNextVolUsage gets a reference to the given int64 and assigns it to the NextVolUsage field.

func (o *AccuUsageReport) SetNextVolUsageDownlink(v int64)

SetNextVolUsageDownlink gets a reference to the given int64 and assigns it to the NextVolUsageDownlink field.

func (o *AccuUsageReport) SetNextVolUsageUplink(v int64)

SetNextVolUsageUplink gets a reference to the given int64 and assigns it to the NextVolUsageUplink field.

func (*AccuUsageReport) SetRefUmIds

func (o *AccuUsageReport) SetRefUmIds(v string)

SetRefUmIds sets field value

func (*AccuUsageReport) SetTimeUsage

func (o *AccuUsageReport) SetTimeUsage(v int32)

SetTimeUsage gets a reference to the given int32 and assigns it to the TimeUsage field.

func (*AccuUsageReport) SetVolUsage

func (o *AccuUsageReport) SetVolUsage(v int64)

SetVolUsage gets a reference to the given int64 and assigns it to the VolUsage field.

func (o *AccuUsageReport) SetVolUsageDownlink(v int64)

SetVolUsageDownlink gets a reference to the given int64 and assigns it to the VolUsageDownlink field.

func (o *AccuUsageReport) SetVolUsageUplink(v int64)

SetVolUsageUplink gets a reference to the given int64 and assigns it to the VolUsageUplink field.

func (AccuUsageReport) ToMap

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

type AdditionalAccessInfo

type AdditionalAccessInfo struct {
	AccessType AccessType `json:"accessType"`
	RatType    *RatType   `json:"ratType,omitempty"`
}

AdditionalAccessInfo Indicates the combination of additional Access Type and RAT Type for a MA PDU session.

func NewAdditionalAccessInfo

func NewAdditionalAccessInfo(accessType AccessType) *AdditionalAccessInfo

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

func NewAdditionalAccessInfoWithDefaults() *AdditionalAccessInfo

NewAdditionalAccessInfoWithDefaults instantiates a new AdditionalAccessInfo object This 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 (*AdditionalAccessInfo) GetAccessType

func (o *AdditionalAccessInfo) GetAccessType() AccessType

GetAccessType returns the AccessType field value

func (*AdditionalAccessInfo) GetAccessTypeOk

func (o *AdditionalAccessInfo) GetAccessTypeOk() (*AccessType, bool)

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

func (*AdditionalAccessInfo) GetRatType

func (o *AdditionalAccessInfo) GetRatType() RatType

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

func (*AdditionalAccessInfo) GetRatTypeOk

func (o *AdditionalAccessInfo) 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 (*AdditionalAccessInfo) HasRatType

func (o *AdditionalAccessInfo) HasRatType() bool

HasRatType returns a boolean if a field has been set.

func (AdditionalAccessInfo) MarshalJSON

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

func (*AdditionalAccessInfo) SetAccessType

func (o *AdditionalAccessInfo) SetAccessType(v AccessType)

SetAccessType sets field value

func (*AdditionalAccessInfo) SetRatType

func (o *AdditionalAccessInfo) SetRatType(v RatType)

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

func (AdditionalAccessInfo) ToMap

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

type AfSigProtocol

type AfSigProtocol struct {
	NullValue *NullValue
	String    *string
}

AfSigProtocol Possible values are - NO_INFORMATION: Indicate that no information about the AF signalling protocol is being provided. - SIP: Indicate that the signalling protocol is Session Initiation Protocol.

func (*AfSigProtocol) MarshalJSON

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

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

func (*AfSigProtocol) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type Ambr

type Ambr struct {
	// String representing a bit rate; the prefixes follow the standard symbols from The International System of Units, and represent x1000 multipliers, with the exception that prefix \"K\" is used to represent the standard symbol \"k\".
	Uplink string `json:"uplink"`
	// 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\".
	Downlink string `json:"downlink"`
}

Ambr Contains the maximum aggregated uplink and downlink bit rates.

func NewAmbr

func NewAmbr(uplink string, downlink string) *Ambr

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

func NewAmbrWithDefaults

func NewAmbrWithDefaults() *Ambr

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

func (o *Ambr) GetDownlink() string

GetDownlink returns the Downlink field value

func (*Ambr) GetDownlinkOk

func (o *Ambr) GetDownlinkOk() (*string, bool)

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

func (o *Ambr) GetUplink() string

GetUplink returns the Uplink field value

func (*Ambr) GetUplinkOk

func (o *Ambr) GetUplinkOk() (*string, bool)

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

func (Ambr) MarshalJSON

func (o Ambr) MarshalJSON() ([]byte, error)
func (o *Ambr) SetDownlink(v string)

SetDownlink sets field value

func (o *Ambr) SetUplink(v string)

SetUplink sets field value

func (Ambr) ToMap

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

type AnGwAddress

type AnGwAddress struct {
	Interface *interface{}
}

AnGwAddress Describes the address of the access network gateway control node.

func (*AnGwAddress) MarshalJSON

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

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

func (*AnGwAddress) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type ApiCreateSMPolicyRequest

type ApiCreateSMPolicyRequest struct {
	ApiService *SMPoliciesCollectionApiService
	// contains filtered or unexported fields
}

func (ApiCreateSMPolicyRequest) Execute

func (ApiCreateSMPolicyRequest) SmPolicyContextData

func (r ApiCreateSMPolicyRequest) SmPolicyContextData(smPolicyContextData SmPolicyContextData) ApiCreateSMPolicyRequest

type ApiDeleteSMPolicyRequest

type ApiDeleteSMPolicyRequest struct {
	ApiService *IndividualSMPolicyDocumentApiService
	// contains filtered or unexported fields
}

func (ApiDeleteSMPolicyRequest) Execute

func (r ApiDeleteSMPolicyRequest) Execute() (*http.Response, error)

func (ApiDeleteSMPolicyRequest) SmPolicyDeleteData

func (r ApiDeleteSMPolicyRequest) SmPolicyDeleteData(smPolicyDeleteData SmPolicyDeleteData) ApiDeleteSMPolicyRequest

type ApiGetSMPolicyRequest

type ApiGetSMPolicyRequest struct {
	ApiService *IndividualSMPolicyDocumentApiService
	// contains filtered or unexported fields
}

func (ApiGetSMPolicyRequest) Execute

type ApiUpdateSMPolicyRequest

type ApiUpdateSMPolicyRequest struct {
	ApiService *IndividualSMPolicyDocumentApiService
	// contains filtered or unexported fields
}

func (ApiUpdateSMPolicyRequest) Execute

func (ApiUpdateSMPolicyRequest) SmPolicyUpdateContextData

func (r ApiUpdateSMPolicyRequest) SmPolicyUpdateContextData(smPolicyUpdateContextData SmPolicyUpdateContextData) ApiUpdateSMPolicyRequest

type AppDetectionInfo

type AppDetectionInfo struct {
	// A reference to the application detection filter configured at the UPF
	AppId string `json:"appId"`
	// Identifier sent by the SMF in order to allow correlation of application Start and Stop events to the specific service data flow description, if service data flow descriptions are deducible.
	InstanceId *string `json:"instanceId,omitempty"`
	// Contains the detected service data flow descriptions if they are deducible.
	SdfDescriptions []FlowInformation `json:"sdfDescriptions,omitempty"`
}

AppDetectionInfo Contains the detected application's traffic information.

func NewAppDetectionInfo

func NewAppDetectionInfo(appId string) *AppDetectionInfo

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

func NewAppDetectionInfoWithDefaults() *AppDetectionInfo

NewAppDetectionInfoWithDefaults instantiates a new AppDetectionInfo object This 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 (*AppDetectionInfo) GetAppId

func (o *AppDetectionInfo) GetAppId() string

GetAppId returns the AppId field value

func (*AppDetectionInfo) GetAppIdOk

func (o *AppDetectionInfo) GetAppIdOk() (*string, bool)

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

func (*AppDetectionInfo) GetInstanceId

func (o *AppDetectionInfo) GetInstanceId() string

GetInstanceId returns the InstanceId field value if set, zero value otherwise.

func (*AppDetectionInfo) GetInstanceIdOk

func (o *AppDetectionInfo) GetInstanceIdOk() (*string, bool)

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

func (*AppDetectionInfo) GetSdfDescriptions

func (o *AppDetectionInfo) GetSdfDescriptions() []FlowInformation

GetSdfDescriptions returns the SdfDescriptions field value if set, zero value otherwise.

func (*AppDetectionInfo) GetSdfDescriptionsOk

func (o *AppDetectionInfo) GetSdfDescriptionsOk() ([]FlowInformation, bool)

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

func (*AppDetectionInfo) HasInstanceId

func (o *AppDetectionInfo) HasInstanceId() bool

HasInstanceId returns a boolean if a field has been set.

func (*AppDetectionInfo) HasSdfDescriptions

func (o *AppDetectionInfo) HasSdfDescriptions() bool

HasSdfDescriptions returns a boolean if a field has been set.

func (AppDetectionInfo) MarshalJSON

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

func (*AppDetectionInfo) SetAppId

func (o *AppDetectionInfo) SetAppId(v string)

SetAppId sets field value

func (*AppDetectionInfo) SetInstanceId

func (o *AppDetectionInfo) SetInstanceId(v string)

SetInstanceId gets a reference to the given string and assigns it to the InstanceId field.

func (*AppDetectionInfo) SetSdfDescriptions

func (o *AppDetectionInfo) SetSdfDescriptions(v []FlowInformation)

SetSdfDescriptions gets a reference to the given []FlowInformation and assigns it to the SdfDescriptions field.

func (AppDetectionInfo) ToMap

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

type Arp

type Arp struct {
	// nullable true shall not be used for this attribute. Unsigned integer indicating the ARP Priority Level (see clause 5.7.2.2 of 3GPP TS 23.501, within the range 1 to 15.Values are ordered in decreasing order of priority, i.e. with 1 as the highest priority and 15 as the lowest priority.
	PriorityLevel NullableInt32           `json:"priorityLevel"`
	PreemptCap    PreemptionCapability    `json:"preemptCap"`
	PreemptVuln   PreemptionVulnerability `json:"preemptVuln"`
}

Arp Contains Allocation and Retention Priority information.

func NewArp

func NewArp(priorityLevel NullableInt32, preemptCap PreemptionCapability, preemptVuln PreemptionVulnerability) *Arp

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

func NewArpWithDefaults

func NewArpWithDefaults() *Arp

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

func (*Arp) GetPreemptCap

func (o *Arp) GetPreemptCap() PreemptionCapability

GetPreemptCap returns the PreemptCap field value

func (*Arp) GetPreemptCapOk

func (o *Arp) GetPreemptCapOk() (*PreemptionCapability, bool)

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

func (*Arp) GetPreemptVuln

func (o *Arp) GetPreemptVuln() PreemptionVulnerability

GetPreemptVuln returns the PreemptVuln field value

func (*Arp) GetPreemptVulnOk

func (o *Arp) GetPreemptVulnOk() (*PreemptionVulnerability, bool)

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

func (*Arp) GetPriorityLevel

func (o *Arp) GetPriorityLevel() int32

GetPriorityLevel returns the PriorityLevel field value If the value is explicit nil, the zero value for int32 will be returned

func (*Arp) GetPriorityLevelOk

func (o *Arp) GetPriorityLevelOk() (*int32, bool)

GetPriorityLevelOk returns a tuple with the PriorityLevel field value 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 (Arp) MarshalJSON

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

func (*Arp) SetPreemptCap

func (o *Arp) SetPreemptCap(v PreemptionCapability)

SetPreemptCap sets field value

func (*Arp) SetPreemptVuln

func (o *Arp) SetPreemptVuln(v PreemptionVulnerability)

SetPreemptVuln sets field value

func (*Arp) SetPriorityLevel

func (o *Arp) SetPriorityLevel(v int32)

SetPriorityLevel sets field value

func (Arp) ToMap

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

type AtsssCapability

type AtsssCapability struct {
	String *string
}

AtsssCapability Contains the ATSSS capability supported for the MA PDU Session.

func (*AtsssCapability) MarshalJSON

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

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

func (*AtsssCapability) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type AuthorizedDefaultQos

type AuthorizedDefaultQos struct {
	// Unsigned integer representing a 5G QoS Identifier (see clause 5.7.2.1 of 3GPP TS 23.501, within the range 0 to 255.
	Var5qi *int32 `json:"5qi,omitempty"`
	Arp    *Arp   `json:"arp,omitempty"`
	// This data type is defined in the same way as the '5QiPriorityLevel' data type, but with the OpenAPI 'nullable: true' property.
	PriorityLevel NullableInt32 `json:"priorityLevel,omitempty"`
	// This data type is defined in the same way as the 'AverWindow' data type, but with the OpenAPI 'nullable: true' property.
	AverWindow NullableInt32 `json:"averWindow,omitempty"`
	// This data type is defined in the same way as the 'MaxDataBurstVol' data type, but with the OpenAPI 'nullable: true' property.
	MaxDataBurstVol NullableInt32 `json:"maxDataBurstVol,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"`
	// This data type is defined in the same way as the 'BitRate' data type, but with the OpenAPI 'nullable: true' property.
	GbrUl NullableString `json:"gbrUl,omitempty"`
	// This data type is defined in the same way as the 'BitRate' data type, but with the OpenAPI 'nullable: true' property.
	GbrDl NullableString `json:"gbrDl,omitempty"`
	// This data type is defined in the same way as the 'ExtMaxDataBurstVol' data type, but with the OpenAPI 'nullable: true' property.
	ExtMaxDataBurstVol NullableInt32 `json:"extMaxDataBurstVol,omitempty"`
}

AuthorizedDefaultQos Represents the Authorized Default QoS.

func NewAuthorizedDefaultQos

func NewAuthorizedDefaultQos() *AuthorizedDefaultQos

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

func NewAuthorizedDefaultQosWithDefaults() *AuthorizedDefaultQos

NewAuthorizedDefaultQosWithDefaults instantiates a new AuthorizedDefaultQos object This 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 (*AuthorizedDefaultQos) GetArp

func (o *AuthorizedDefaultQos) GetArp() Arp

GetArp returns the Arp field value if set, zero value otherwise.

func (*AuthorizedDefaultQos) GetArpOk

func (o *AuthorizedDefaultQos) GetArpOk() (*Arp, bool)

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

func (*AuthorizedDefaultQos) GetAverWindow

func (o *AuthorizedDefaultQos) GetAverWindow() int32

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

func (*AuthorizedDefaultQos) GetAverWindowOk

func (o *AuthorizedDefaultQos) GetAverWindowOk() (*int32, bool)

GetAverWindowOk returns a tuple with the AverWindow 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 (*AuthorizedDefaultQos) GetExtMaxDataBurstVol

func (o *AuthorizedDefaultQos) GetExtMaxDataBurstVol() int32

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

func (*AuthorizedDefaultQos) GetExtMaxDataBurstVolOk

func (o *AuthorizedDefaultQos) GetExtMaxDataBurstVolOk() (*int32, bool)

GetExtMaxDataBurstVolOk returns a tuple with the ExtMaxDataBurstVol 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 (*AuthorizedDefaultQos) GetGbrDl

func (o *AuthorizedDefaultQos) GetGbrDl() string

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

func (*AuthorizedDefaultQos) GetGbrDlOk

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

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

func (*AuthorizedDefaultQos) GetGbrUl

func (o *AuthorizedDefaultQos) GetGbrUl() string

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

func (*AuthorizedDefaultQos) GetGbrUlOk

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

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

func (*AuthorizedDefaultQos) GetMaxDataBurstVol

func (o *AuthorizedDefaultQos) GetMaxDataBurstVol() int32

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

func (*AuthorizedDefaultQos) GetMaxDataBurstVolOk

func (o *AuthorizedDefaultQos) GetMaxDataBurstVolOk() (*int32, bool)

GetMaxDataBurstVolOk returns a tuple with the MaxDataBurstVol 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 (*AuthorizedDefaultQos) GetMaxbrDl

func (o *AuthorizedDefaultQos) GetMaxbrDl() string

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

func (*AuthorizedDefaultQos) GetMaxbrDlOk

func (o *AuthorizedDefaultQos) 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 (*AuthorizedDefaultQos) GetMaxbrUl

func (o *AuthorizedDefaultQos) GetMaxbrUl() string

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

func (*AuthorizedDefaultQos) GetMaxbrUlOk

func (o *AuthorizedDefaultQos) 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 (*AuthorizedDefaultQos) GetPriorityLevel

func (o *AuthorizedDefaultQos) GetPriorityLevel() int32

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

func (*AuthorizedDefaultQos) GetPriorityLevelOk

func (o *AuthorizedDefaultQos) GetPriorityLevelOk() (*int32, bool)

GetPriorityLevelOk returns a tuple with the PriorityLevel 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 (*AuthorizedDefaultQos) GetVar5qi

func (o *AuthorizedDefaultQos) GetVar5qi() int32

GetVar5qi returns the Var5qi field value if set, zero value otherwise.

func (*AuthorizedDefaultQos) GetVar5qiOk

func (o *AuthorizedDefaultQos) GetVar5qiOk() (*int32, bool)

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

func (*AuthorizedDefaultQos) HasArp

func (o *AuthorizedDefaultQos) HasArp() bool

HasArp returns a boolean if a field has been set.

func (*AuthorizedDefaultQos) HasAverWindow

func (o *AuthorizedDefaultQos) HasAverWindow() bool

HasAverWindow returns a boolean if a field has been set.

func (*AuthorizedDefaultQos) HasExtMaxDataBurstVol

func (o *AuthorizedDefaultQos) HasExtMaxDataBurstVol() bool

HasExtMaxDataBurstVol returns a boolean if a field has been set.

func (*AuthorizedDefaultQos) HasGbrDl

func (o *AuthorizedDefaultQos) HasGbrDl() bool

HasGbrDl returns a boolean if a field has been set.

func (*AuthorizedDefaultQos) HasGbrUl

func (o *AuthorizedDefaultQos) HasGbrUl() bool

HasGbrUl returns a boolean if a field has been set.

func (*AuthorizedDefaultQos) HasMaxDataBurstVol

func (o *AuthorizedDefaultQos) HasMaxDataBurstVol() bool

HasMaxDataBurstVol returns a boolean if a field has been set.

func (*AuthorizedDefaultQos) HasMaxbrDl

func (o *AuthorizedDefaultQos) HasMaxbrDl() bool

HasMaxbrDl returns a boolean if a field has been set.

func (*AuthorizedDefaultQos) HasMaxbrUl

func (o *AuthorizedDefaultQos) HasMaxbrUl() bool

HasMaxbrUl returns a boolean if a field has been set.

func (*AuthorizedDefaultQos) HasPriorityLevel

func (o *AuthorizedDefaultQos) HasPriorityLevel() bool

HasPriorityLevel returns a boolean if a field has been set.

func (*AuthorizedDefaultQos) HasVar5qi

func (o *AuthorizedDefaultQos) HasVar5qi() bool

HasVar5qi returns a boolean if a field has been set.

func (AuthorizedDefaultQos) MarshalJSON

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

func (*AuthorizedDefaultQos) SetArp

func (o *AuthorizedDefaultQos) SetArp(v Arp)

SetArp gets a reference to the given Arp and assigns it to the Arp field.

func (*AuthorizedDefaultQos) SetAverWindow

func (o *AuthorizedDefaultQos) SetAverWindow(v int32)

SetAverWindow gets a reference to the given NullableInt32 and assigns it to the AverWindow field.

func (*AuthorizedDefaultQos) SetAverWindowNil

func (o *AuthorizedDefaultQos) SetAverWindowNil()

SetAverWindowNil sets the value for AverWindow to be an explicit nil

func (*AuthorizedDefaultQos) SetExtMaxDataBurstVol

func (o *AuthorizedDefaultQos) SetExtMaxDataBurstVol(v int32)

SetExtMaxDataBurstVol gets a reference to the given NullableInt32 and assigns it to the ExtMaxDataBurstVol field.

func (*AuthorizedDefaultQos) SetExtMaxDataBurstVolNil

func (o *AuthorizedDefaultQos) SetExtMaxDataBurstVolNil()

SetExtMaxDataBurstVolNil sets the value for ExtMaxDataBurstVol to be an explicit nil

func (*AuthorizedDefaultQos) SetGbrDl

func (o *AuthorizedDefaultQos) SetGbrDl(v string)

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

func (*AuthorizedDefaultQos) SetGbrDlNil

func (o *AuthorizedDefaultQos) SetGbrDlNil()

SetGbrDlNil sets the value for GbrDl to be an explicit nil

func (*AuthorizedDefaultQos) SetGbrUl

func (o *AuthorizedDefaultQos) SetGbrUl(v string)

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

func (*AuthorizedDefaultQos) SetGbrUlNil

func (o *AuthorizedDefaultQos) SetGbrUlNil()

SetGbrUlNil sets the value for GbrUl to be an explicit nil

func (*AuthorizedDefaultQos) SetMaxDataBurstVol

func (o *AuthorizedDefaultQos) SetMaxDataBurstVol(v int32)

SetMaxDataBurstVol gets a reference to the given NullableInt32 and assigns it to the MaxDataBurstVol field.

func (*AuthorizedDefaultQos) SetMaxDataBurstVolNil

func (o *AuthorizedDefaultQos) SetMaxDataBurstVolNil()

SetMaxDataBurstVolNil sets the value for MaxDataBurstVol to be an explicit nil

func (*AuthorizedDefaultQos) SetMaxbrDl

func (o *AuthorizedDefaultQos) SetMaxbrDl(v string)

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

func (*AuthorizedDefaultQos) SetMaxbrDlNil

func (o *AuthorizedDefaultQos) SetMaxbrDlNil()

SetMaxbrDlNil sets the value for MaxbrDl to be an explicit nil

func (*AuthorizedDefaultQos) SetMaxbrUl

func (o *AuthorizedDefaultQos) SetMaxbrUl(v string)

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

func (*AuthorizedDefaultQos) SetMaxbrUlNil

func (o *AuthorizedDefaultQos) SetMaxbrUlNil()

SetMaxbrUlNil sets the value for MaxbrUl to be an explicit nil

func (*AuthorizedDefaultQos) SetPriorityLevel

func (o *AuthorizedDefaultQos) SetPriorityLevel(v int32)

SetPriorityLevel gets a reference to the given NullableInt32 and assigns it to the PriorityLevel field.

func (*AuthorizedDefaultQos) SetPriorityLevelNil

func (o *AuthorizedDefaultQos) SetPriorityLevelNil()

SetPriorityLevelNil sets the value for PriorityLevel to be an explicit nil

func (*AuthorizedDefaultQos) SetVar5qi

func (o *AuthorizedDefaultQos) SetVar5qi(v int32)

SetVar5qi gets a reference to the given int32 and assigns it to the Var5qi field.

func (AuthorizedDefaultQos) ToMap

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

func (*AuthorizedDefaultQos) UnsetAverWindow

func (o *AuthorizedDefaultQos) UnsetAverWindow()

UnsetAverWindow ensures that no value is present for AverWindow, not even an explicit nil

func (*AuthorizedDefaultQos) UnsetExtMaxDataBurstVol

func (o *AuthorizedDefaultQos) UnsetExtMaxDataBurstVol()

UnsetExtMaxDataBurstVol ensures that no value is present for ExtMaxDataBurstVol, not even an explicit nil

func (*AuthorizedDefaultQos) UnsetGbrDl

func (o *AuthorizedDefaultQos) UnsetGbrDl()

UnsetGbrDl ensures that no value is present for GbrDl, not even an explicit nil

func (*AuthorizedDefaultQos) UnsetGbrUl

func (o *AuthorizedDefaultQos) UnsetGbrUl()

UnsetGbrUl ensures that no value is present for GbrUl, not even an explicit nil

func (*AuthorizedDefaultQos) UnsetMaxDataBurstVol

func (o *AuthorizedDefaultQos) UnsetMaxDataBurstVol()

UnsetMaxDataBurstVol ensures that no value is present for MaxDataBurstVol, not even an explicit nil

func (*AuthorizedDefaultQos) UnsetMaxbrDl

func (o *AuthorizedDefaultQos) UnsetMaxbrDl()

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

func (*AuthorizedDefaultQos) UnsetMaxbrUl

func (o *AuthorizedDefaultQos) UnsetMaxbrUl()

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

func (*AuthorizedDefaultQos) UnsetPriorityLevel

func (o *AuthorizedDefaultQos) UnsetPriorityLevel()

UnsetPriorityLevel ensures that no value is present for PriorityLevel, not even an explicit nil

type BasicAuth

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

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

type BridgeManagementContainer

type BridgeManagementContainer struct {
	// string with format 'bytes' as defined in OpenAPI
	BridgeManCont string `json:"bridgeManCont"`
}

BridgeManagementContainer Contains the UMIC.

func NewBridgeManagementContainer

func NewBridgeManagementContainer(bridgeManCont string) *BridgeManagementContainer

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

func NewBridgeManagementContainerWithDefaults() *BridgeManagementContainer

NewBridgeManagementContainerWithDefaults instantiates a new BridgeManagementContainer object This 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 (*BridgeManagementContainer) GetBridgeManCont

func (o *BridgeManagementContainer) GetBridgeManCont() string

GetBridgeManCont returns the BridgeManCont field value

func (*BridgeManagementContainer) GetBridgeManContOk

func (o *BridgeManagementContainer) GetBridgeManContOk() (*string, bool)

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

func (BridgeManagementContainer) MarshalJSON

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

func (*BridgeManagementContainer) SetBridgeManCont

func (o *BridgeManagementContainer) SetBridgeManCont(v string)

SetBridgeManCont sets field value

func (BridgeManagementContainer) ToMap

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

type CellGlobalId

type CellGlobalId struct {
	PlmnId PlmnId `json:"plmnId"`
	Lac    string `json:"lac"`
	CellId string `json:"cellId"`
}

CellGlobalId Contains a Cell Global Identification as defined in 3GPP TS 23.003, clause 4.3.1.

func NewCellGlobalId

func NewCellGlobalId(plmnId PlmnId, lac string, cellId string) *CellGlobalId

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

func NewCellGlobalIdWithDefaults

func NewCellGlobalIdWithDefaults() *CellGlobalId

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

func (*CellGlobalId) GetCellId

func (o *CellGlobalId) GetCellId() string

GetCellId returns the CellId field value

func (*CellGlobalId) GetCellIdOk

func (o *CellGlobalId) GetCellIdOk() (*string, bool)

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

func (*CellGlobalId) GetLac

func (o *CellGlobalId) GetLac() string

GetLac returns the Lac field value

func (*CellGlobalId) GetLacOk

func (o *CellGlobalId) GetLacOk() (*string, bool)

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

func (*CellGlobalId) GetPlmnId

func (o *CellGlobalId) GetPlmnId() PlmnId

GetPlmnId returns the PlmnId field value

func (*CellGlobalId) GetPlmnIdOk

func (o *CellGlobalId) GetPlmnIdOk() (*PlmnId, bool)

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

func (CellGlobalId) MarshalJSON

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

func (*CellGlobalId) SetCellId

func (o *CellGlobalId) SetCellId(v string)

SetCellId sets field value

func (*CellGlobalId) SetLac

func (o *CellGlobalId) SetLac(v string)

SetLac sets field value

func (*CellGlobalId) SetPlmnId

func (o *CellGlobalId) SetPlmnId(v PlmnId)

SetPlmnId sets field value

func (CellGlobalId) ToMap

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

type ChargingData

type ChargingData struct {
	// Univocally identifies the charging control policy data within a PDU session.
	ChgId          string          `json:"chgId"`
	MeteringMethod *MeteringMethod `json:"meteringMethod,omitempty"`
	// Indicates the offline charging is applicable to the PCC rule when it is included and set  to true.
	Offline *bool `json:"offline,omitempty"`
	// Indicates the online charging is applicable to the PCC rule when it is included and set  to true.
	Online *bool `json:"online,omitempty"`
	// Indicates whether the service data flow is allowed to start while the SMF is waiting for  the response to the credit request.
	SdfHandl *bool `json:"sdfHandl,omitempty"`
	// Integer where the allowed values correspond to the value range of an unsigned 32-bit integer.
	RatingGroup    *int32          `json:"ratingGroup,omitempty"`
	ReportingLevel *ReportingLevel `json:"reportingLevel,omitempty"`
	// Integer where the allowed values correspond to the value range of an unsigned 32-bit integer.
	ServiceId *int32 `json:"serviceId,omitempty"`
	// Indicates the sponsor identity.
	SponsorId *string `json:"sponsorId,omitempty"`
	// Indicates the application service provider identity.
	AppSvcProvId *string `json:"appSvcProvId,omitempty"`
	// Integer where the allowed values correspond to the value range of an unsigned 32-bit integer.
	// Deprecated
	AfChargingIdentifier *int32 `json:"afChargingIdentifier,omitempty"`
	// Application provided charging identifier allowing correlation of charging information.
	AfChargId *string `json:"afChargId,omitempty"`
}

ChargingData Contains charging related parameters.

func NewChargingData

func NewChargingData(chgId string) *ChargingData

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

func NewChargingDataWithDefaults() *ChargingData

NewChargingDataWithDefaults instantiates a new ChargingData object This 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 (*ChargingData) GetAfChargId

func (o *ChargingData) GetAfChargId() string

GetAfChargId returns the AfChargId field value if set, zero value otherwise.

func (*ChargingData) GetAfChargIdOk

func (o *ChargingData) GetAfChargIdOk() (*string, bool)

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

func (*ChargingData) GetAfChargingIdentifier

func (o *ChargingData) GetAfChargingIdentifier() int32

GetAfChargingIdentifier returns the AfChargingIdentifier field value if set, zero value otherwise. Deprecated

func (*ChargingData) GetAfChargingIdentifierOk

func (o *ChargingData) GetAfChargingIdentifierOk() (*int32, bool)

GetAfChargingIdentifierOk returns a tuple with the AfChargingIdentifier field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated

func (*ChargingData) GetAppSvcProvId

func (o *ChargingData) GetAppSvcProvId() string

GetAppSvcProvId returns the AppSvcProvId field value if set, zero value otherwise.

func (*ChargingData) GetAppSvcProvIdOk

func (o *ChargingData) GetAppSvcProvIdOk() (*string, bool)

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

func (*ChargingData) GetChgId

func (o *ChargingData) GetChgId() string

GetChgId returns the ChgId field value

func (*ChargingData) GetChgIdOk

func (o *ChargingData) GetChgIdOk() (*string, bool)

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

func (*ChargingData) GetMeteringMethod

func (o *ChargingData) GetMeteringMethod() MeteringMethod

GetMeteringMethod returns the MeteringMethod field value if set, zero value otherwise.

func (*ChargingData) GetMeteringMethodOk

func (o *ChargingData) GetMeteringMethodOk() (*MeteringMethod, bool)

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

func (*ChargingData) GetOffline

func (o *ChargingData) GetOffline() bool

GetOffline returns the Offline field value if set, zero value otherwise.

func (*ChargingData) GetOfflineOk

func (o *ChargingData) GetOfflineOk() (*bool, bool)

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

func (*ChargingData) GetOnline

func (o *ChargingData) GetOnline() bool

GetOnline returns the Online field value if set, zero value otherwise.

func (*ChargingData) GetOnlineOk

func (o *ChargingData) GetOnlineOk() (*bool, bool)

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

func (*ChargingData) GetRatingGroup

func (o *ChargingData) GetRatingGroup() int32

GetRatingGroup returns the RatingGroup field value if set, zero value otherwise.

func (*ChargingData) GetRatingGroupOk

func (o *ChargingData) GetRatingGroupOk() (*int32, bool)

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

func (*ChargingData) GetReportingLevel

func (o *ChargingData) GetReportingLevel() ReportingLevel

GetReportingLevel returns the ReportingLevel field value if set, zero value otherwise.

func (*ChargingData) GetReportingLevelOk

func (o *ChargingData) GetReportingLevelOk() (*ReportingLevel, bool)

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

func (*ChargingData) GetSdfHandl

func (o *ChargingData) GetSdfHandl() bool

GetSdfHandl returns the SdfHandl field value if set, zero value otherwise.

func (*ChargingData) GetSdfHandlOk

func (o *ChargingData) GetSdfHandlOk() (*bool, bool)

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

func (*ChargingData) GetServiceId

func (o *ChargingData) GetServiceId() int32

GetServiceId returns the ServiceId field value if set, zero value otherwise.

func (*ChargingData) GetServiceIdOk

func (o *ChargingData) GetServiceIdOk() (*int32, bool)

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

func (*ChargingData) GetSponsorId

func (o *ChargingData) GetSponsorId() string

GetSponsorId returns the SponsorId field value if set, zero value otherwise.

func (*ChargingData) GetSponsorIdOk

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

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

func (*ChargingData) HasAfChargId

func (o *ChargingData) HasAfChargId() bool

HasAfChargId returns a boolean if a field has been set.

func (*ChargingData) HasAfChargingIdentifier

func (o *ChargingData) HasAfChargingIdentifier() bool

HasAfChargingIdentifier returns a boolean if a field has been set.

func (*ChargingData) HasAppSvcProvId

func (o *ChargingData) HasAppSvcProvId() bool

HasAppSvcProvId returns a boolean if a field has been set.

func (*ChargingData) HasMeteringMethod

func (o *ChargingData) HasMeteringMethod() bool

HasMeteringMethod returns a boolean if a field has been set.

func (*ChargingData) HasOffline

func (o *ChargingData) HasOffline() bool

HasOffline returns a boolean if a field has been set.

func (*ChargingData) HasOnline

func (o *ChargingData) HasOnline() bool

HasOnline returns a boolean if a field has been set.

func (*ChargingData) HasRatingGroup

func (o *ChargingData) HasRatingGroup() bool

HasRatingGroup returns a boolean if a field has been set.

func (*ChargingData) HasReportingLevel

func (o *ChargingData) HasReportingLevel() bool

HasReportingLevel returns a boolean if a field has been set.

func (*ChargingData) HasSdfHandl

func (o *ChargingData) HasSdfHandl() bool

HasSdfHandl returns a boolean if a field has been set.

func (*ChargingData) HasServiceId

func (o *ChargingData) HasServiceId() bool

HasServiceId returns a boolean if a field has been set.

func (*ChargingData) HasSponsorId

func (o *ChargingData) HasSponsorId() bool

HasSponsorId returns a boolean if a field has been set.

func (ChargingData) MarshalJSON

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

func (*ChargingData) SetAfChargId

func (o *ChargingData) SetAfChargId(v string)

SetAfChargId gets a reference to the given string and assigns it to the AfChargId field.

func (*ChargingData) SetAfChargingIdentifier

func (o *ChargingData) SetAfChargingIdentifier(v int32)

SetAfChargingIdentifier gets a reference to the given int32 and assigns it to the AfChargingIdentifier field. Deprecated

func (*ChargingData) SetAppSvcProvId

func (o *ChargingData) SetAppSvcProvId(v string)

SetAppSvcProvId gets a reference to the given string and assigns it to the AppSvcProvId field.

func (*ChargingData) SetChgId

func (o *ChargingData) SetChgId(v string)

SetChgId sets field value

func (*ChargingData) SetMeteringMethod

func (o *ChargingData) SetMeteringMethod(v MeteringMethod)

SetMeteringMethod gets a reference to the given MeteringMethod and assigns it to the MeteringMethod field.

func (*ChargingData) SetOffline

func (o *ChargingData) SetOffline(v bool)

SetOffline gets a reference to the given bool and assigns it to the Offline field.

func (*ChargingData) SetOnline

func (o *ChargingData) SetOnline(v bool)

SetOnline gets a reference to the given bool and assigns it to the Online field.

func (*ChargingData) SetRatingGroup

func (o *ChargingData) SetRatingGroup(v int32)

SetRatingGroup gets a reference to the given int32 and assigns it to the RatingGroup field.

func (*ChargingData) SetReportingLevel

func (o *ChargingData) SetReportingLevel(v ReportingLevel)

SetReportingLevel gets a reference to the given ReportingLevel and assigns it to the ReportingLevel field.

func (*ChargingData) SetSdfHandl

func (o *ChargingData) SetSdfHandl(v bool)

SetSdfHandl gets a reference to the given bool and assigns it to the SdfHandl field.

func (*ChargingData) SetServiceId

func (o *ChargingData) SetServiceId(v int32)

SetServiceId gets a reference to the given int32 and assigns it to the ServiceId field.

func (*ChargingData) SetSponsorId

func (o *ChargingData) SetSponsorId(v string)

SetSponsorId gets a reference to the given string and assigns it to the SponsorId field.

func (ChargingData) ToMap

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

type ChargingInformation

type ChargingInformation struct {
	// String providing an URI formatted according to RFC 3986.
	PrimaryChfAddress string `json:"primaryChfAddress"`
	// String providing an URI formatted according to RFC 3986.
	SecondaryChfAddress *string `json:"secondaryChfAddress,omitempty"`
	// NF Set Identifier (see clause 28.12 of 3GPP TS 23.003), formatted as the following string \"set<Set ID>.<nftype>set.5gc.mnc<MNC>.mcc<MCC>\", or  \"set<SetID>.<NFType>set.5gc.nid<NID>.mnc<MNC>.mcc<MCC>\" with  <MCC> encoded as defined in clause 5.4.2 (\"Mcc\" data type definition)  <MNC> encoding the Mobile Network Code part of the PLMN, comprising 3 digits.    If there are only 2 significant digits in the MNC, one \"0\" digit shall be inserted    at the left side to fill the 3 digits coding of MNC.  Pattern: '^[0-9]{3}$' <NFType> encoded as a value defined in Table 6.1.6.3.3-1 of 3GPP TS 29.510 but    with lower case characters <Set ID> encoded as a string of characters consisting of    alphabetic characters (A-Z and a-z), digits (0-9) and/or the hyphen (-) and that    shall end with either an alphabetic character or a digit.
	PrimaryChfSetId *string `json:"primaryChfSetId,omitempty"`
	// String uniquely identifying a NF instance. The format of the NF Instance ID shall be a  Universally Unique Identifier (UUID) version 4, as described in IETF RFC 4122.
	PrimaryChfInstanceId *string `json:"primaryChfInstanceId,omitempty"`
	// NF Set Identifier (see clause 28.12 of 3GPP TS 23.003), formatted as the following string \"set<Set ID>.<nftype>set.5gc.mnc<MNC>.mcc<MCC>\", or  \"set<SetID>.<NFType>set.5gc.nid<NID>.mnc<MNC>.mcc<MCC>\" with  <MCC> encoded as defined in clause 5.4.2 (\"Mcc\" data type definition)  <MNC> encoding the Mobile Network Code part of the PLMN, comprising 3 digits.    If there are only 2 significant digits in the MNC, one \"0\" digit shall be inserted    at the left side to fill the 3 digits coding of MNC.  Pattern: '^[0-9]{3}$' <NFType> encoded as a value defined in Table 6.1.6.3.3-1 of 3GPP TS 29.510 but    with lower case characters <Set ID> encoded as a string of characters consisting of    alphabetic characters (A-Z and a-z), digits (0-9) and/or the hyphen (-) and that    shall end with either an alphabetic character or a digit.
	SecondaryChfSetId *string `json:"secondaryChfSetId,omitempty"`
	// String uniquely identifying a NF instance. The format of the NF Instance ID shall be a  Universally Unique Identifier (UUID) version 4, as described in IETF RFC 4122.
	SecondaryChfInstanceId *string `json:"secondaryChfInstanceId,omitempty"`
}

ChargingInformation Contains the addresses of the charging functions.

func NewChargingInformation

func NewChargingInformation(primaryChfAddress string) *ChargingInformation

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

func NewChargingInformationWithDefaults() *ChargingInformation

NewChargingInformationWithDefaults instantiates a new ChargingInformation object This 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 (*ChargingInformation) GetPrimaryChfAddress

func (o *ChargingInformation) GetPrimaryChfAddress() string

GetPrimaryChfAddress returns the PrimaryChfAddress field value

func (*ChargingInformation) GetPrimaryChfAddressOk

func (o *ChargingInformation) GetPrimaryChfAddressOk() (*string, bool)

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

func (*ChargingInformation) GetPrimaryChfInstanceId

func (o *ChargingInformation) GetPrimaryChfInstanceId() string

GetPrimaryChfInstanceId returns the PrimaryChfInstanceId field value if set, zero value otherwise.

func (*ChargingInformation) GetPrimaryChfInstanceIdOk

func (o *ChargingInformation) GetPrimaryChfInstanceIdOk() (*string, bool)

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

func (*ChargingInformation) GetPrimaryChfSetId

func (o *ChargingInformation) GetPrimaryChfSetId() string

GetPrimaryChfSetId returns the PrimaryChfSetId field value if set, zero value otherwise.

func (*ChargingInformation) GetPrimaryChfSetIdOk

func (o *ChargingInformation) GetPrimaryChfSetIdOk() (*string, bool)

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

func (*ChargingInformation) GetSecondaryChfAddress

func (o *ChargingInformation) GetSecondaryChfAddress() string

GetSecondaryChfAddress returns the SecondaryChfAddress field value if set, zero value otherwise.

func (*ChargingInformation) GetSecondaryChfAddressOk

func (o *ChargingInformation) GetSecondaryChfAddressOk() (*string, bool)

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

func (*ChargingInformation) GetSecondaryChfInstanceId

func (o *ChargingInformation) GetSecondaryChfInstanceId() string

GetSecondaryChfInstanceId returns the SecondaryChfInstanceId field value if set, zero value otherwise.

func (*ChargingInformation) GetSecondaryChfInstanceIdOk

func (o *ChargingInformation) GetSecondaryChfInstanceIdOk() (*string, bool)

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

func (*ChargingInformation) GetSecondaryChfSetId

func (o *ChargingInformation) GetSecondaryChfSetId() string

GetSecondaryChfSetId returns the SecondaryChfSetId field value if set, zero value otherwise.

func (*ChargingInformation) GetSecondaryChfSetIdOk

func (o *ChargingInformation) GetSecondaryChfSetIdOk() (*string, bool)

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

func (*ChargingInformation) HasPrimaryChfInstanceId

func (o *ChargingInformation) HasPrimaryChfInstanceId() bool

HasPrimaryChfInstanceId returns a boolean if a field has been set.

func (*ChargingInformation) HasPrimaryChfSetId

func (o *ChargingInformation) HasPrimaryChfSetId() bool

HasPrimaryChfSetId returns a boolean if a field has been set.

func (*ChargingInformation) HasSecondaryChfAddress

func (o *ChargingInformation) HasSecondaryChfAddress() bool

HasSecondaryChfAddress returns a boolean if a field has been set.

func (*ChargingInformation) HasSecondaryChfInstanceId

func (o *ChargingInformation) HasSecondaryChfInstanceId() bool

HasSecondaryChfInstanceId returns a boolean if a field has been set.

func (*ChargingInformation) HasSecondaryChfSetId

func (o *ChargingInformation) HasSecondaryChfSetId() bool

HasSecondaryChfSetId returns a boolean if a field has been set.

func (ChargingInformation) MarshalJSON

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

func (*ChargingInformation) SetPrimaryChfAddress

func (o *ChargingInformation) SetPrimaryChfAddress(v string)

SetPrimaryChfAddress sets field value

func (*ChargingInformation) SetPrimaryChfInstanceId

func (o *ChargingInformation) SetPrimaryChfInstanceId(v string)

SetPrimaryChfInstanceId gets a reference to the given string and assigns it to the PrimaryChfInstanceId field.

func (*ChargingInformation) SetPrimaryChfSetId

func (o *ChargingInformation) SetPrimaryChfSetId(v string)

SetPrimaryChfSetId gets a reference to the given string and assigns it to the PrimaryChfSetId field.

func (*ChargingInformation) SetSecondaryChfAddress

func (o *ChargingInformation) SetSecondaryChfAddress(v string)

SetSecondaryChfAddress gets a reference to the given string and assigns it to the SecondaryChfAddress field.

func (*ChargingInformation) SetSecondaryChfInstanceId

func (o *ChargingInformation) SetSecondaryChfInstanceId(v string)

SetSecondaryChfInstanceId gets a reference to the given string and assigns it to the SecondaryChfInstanceId field.

func (*ChargingInformation) SetSecondaryChfSetId

func (o *ChargingInformation) SetSecondaryChfSetId(v string)

SetSecondaryChfSetId gets a reference to the given string and assigns it to the SecondaryChfSetId field.

func (ChargingInformation) ToMap

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

type ConditionData

type ConditionData struct {
	// Uniquely identifies the condition data within a PDU session.
	CondId string `json:"condId"`
	// string with format 'date-time' as defined in OpenAPI with 'nullable:true' property.
	ActivationTime NullableTime `json:"activationTime,omitempty"`
	// string with format 'date-time' as defined in OpenAPI with 'nullable:true' property.
	DeactivationTime NullableTime `json:"deactivationTime,omitempty"`
	AccessType       *AccessType  `json:"accessType,omitempty"`
	RatType          *RatType     `json:"ratType,omitempty"`
}

ConditionData Contains conditions of applicability for a rule.

func NewConditionData

func NewConditionData(condId string) *ConditionData

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

func NewConditionDataWithDefaults() *ConditionData

NewConditionDataWithDefaults instantiates a new ConditionData object This 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 (*ConditionData) GetAccessType

func (o *ConditionData) GetAccessType() AccessType

GetAccessType returns the AccessType field value if set, zero value otherwise.

func (*ConditionData) GetAccessTypeOk

func (o *ConditionData) GetAccessTypeOk() (*AccessType, bool)

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

func (*ConditionData) GetActivationTime

func (o *ConditionData) GetActivationTime() time.Time

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

func (*ConditionData) GetActivationTimeOk

func (o *ConditionData) GetActivationTimeOk() (*time.Time, bool)

GetActivationTimeOk returns a tuple with the ActivationTime 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 (*ConditionData) GetCondId

func (o *ConditionData) GetCondId() string

GetCondId returns the CondId field value

func (*ConditionData) GetCondIdOk

func (o *ConditionData) GetCondIdOk() (*string, bool)

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

func (*ConditionData) GetDeactivationTime

func (o *ConditionData) GetDeactivationTime() time.Time

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

func (*ConditionData) GetDeactivationTimeOk

func (o *ConditionData) GetDeactivationTimeOk() (*time.Time, bool)

GetDeactivationTimeOk returns a tuple with the DeactivationTime 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 (*ConditionData) GetRatType

func (o *ConditionData) GetRatType() RatType

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

func (*ConditionData) GetRatTypeOk

func (o *ConditionData) 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 (*ConditionData) HasAccessType

func (o *ConditionData) HasAccessType() bool

HasAccessType returns a boolean if a field has been set.

func (*ConditionData) HasActivationTime

func (o *ConditionData) HasActivationTime() bool

HasActivationTime returns a boolean if a field has been set.

func (*ConditionData) HasDeactivationTime

func (o *ConditionData) HasDeactivationTime() bool

HasDeactivationTime returns a boolean if a field has been set.

func (*ConditionData) HasRatType

func (o *ConditionData) HasRatType() bool

HasRatType returns a boolean if a field has been set.

func (ConditionData) MarshalJSON

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

func (*ConditionData) SetAccessType

func (o *ConditionData) SetAccessType(v AccessType)

SetAccessType gets a reference to the given AccessType and assigns it to the AccessType field.

func (*ConditionData) SetActivationTime

func (o *ConditionData) SetActivationTime(v time.Time)

SetActivationTime gets a reference to the given NullableTime and assigns it to the ActivationTime field.

func (*ConditionData) SetActivationTimeNil

func (o *ConditionData) SetActivationTimeNil()

SetActivationTimeNil sets the value for ActivationTime to be an explicit nil

func (*ConditionData) SetCondId

func (o *ConditionData) SetCondId(v string)

SetCondId sets field value

func (*ConditionData) SetDeactivationTime

func (o *ConditionData) SetDeactivationTime(v time.Time)

SetDeactivationTime gets a reference to the given NullableTime and assigns it to the DeactivationTime field.

func (*ConditionData) SetDeactivationTimeNil

func (o *ConditionData) SetDeactivationTimeNil()

SetDeactivationTimeNil sets the value for DeactivationTime to be an explicit nil

func (*ConditionData) SetRatType

func (o *ConditionData) SetRatType(v RatType)

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

func (ConditionData) ToMap

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

func (*ConditionData) UnsetActivationTime

func (o *ConditionData) UnsetActivationTime()

UnsetActivationTime ensures that no value is present for ActivationTime, not even an explicit nil

func (*ConditionData) UnsetDeactivationTime

func (o *ConditionData) UnsetDeactivationTime()

UnsetDeactivationTime ensures that no value is present for DeactivationTime, not even an explicit nil

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 CreditManagementStatus

type CreditManagementStatus struct {
	String *string
}

CreditManagementStatus Indicates the reason of the credit management session failure.

func (*CreditManagementStatus) MarshalJSON

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

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

func (*CreditManagementStatus) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type DddTrafficDescriptor

type DddTrafficDescriptor struct {
	// String identifying a IPv4 address formatted in the 'dotted decimal' notation as defined in RFC 1166.
	Ipv4Addr *string   `json:"ipv4Addr,omitempty"`
	Ipv6Addr *Ipv6Addr `json:"ipv6Addr,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	PortNumber *int32 `json:"portNumber,omitempty"`
	// String identifying a MAC address formatted in the hexadecimal notation according to clause 1.1 and clause 2.1 of RFC 7042.
	MacAddr *string `json:"macAddr,omitempty"`
}

DddTrafficDescriptor Contains a Traffic Descriptor.

func NewDddTrafficDescriptor

func NewDddTrafficDescriptor() *DddTrafficDescriptor

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

func NewDddTrafficDescriptorWithDefaults

func NewDddTrafficDescriptorWithDefaults() *DddTrafficDescriptor

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

func (*DddTrafficDescriptor) GetIpv4Addr

func (o *DddTrafficDescriptor) GetIpv4Addr() string

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

func (*DddTrafficDescriptor) GetIpv4AddrOk

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

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

func (*DddTrafficDescriptor) GetIpv6Addr

func (o *DddTrafficDescriptor) GetIpv6Addr() Ipv6Addr

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

func (*DddTrafficDescriptor) GetIpv6AddrOk

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

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

func (*DddTrafficDescriptor) GetMacAddr

func (o *DddTrafficDescriptor) GetMacAddr() string

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

func (*DddTrafficDescriptor) GetMacAddrOk

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

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

func (*DddTrafficDescriptor) GetPortNumber

func (o *DddTrafficDescriptor) GetPortNumber() int32

GetPortNumber returns the PortNumber field value if set, zero value otherwise.

func (*DddTrafficDescriptor) GetPortNumberOk

func (o *DddTrafficDescriptor) GetPortNumberOk() (*int32, bool)

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

func (*DddTrafficDescriptor) HasIpv4Addr

func (o *DddTrafficDescriptor) HasIpv4Addr() bool

HasIpv4Addr returns a boolean if a field has been set.

func (*DddTrafficDescriptor) HasIpv6Addr

func (o *DddTrafficDescriptor) HasIpv6Addr() bool

HasIpv6Addr returns a boolean if a field has been set.

func (*DddTrafficDescriptor) HasMacAddr

func (o *DddTrafficDescriptor) HasMacAddr() bool

HasMacAddr returns a boolean if a field has been set.

func (*DddTrafficDescriptor) HasPortNumber

func (o *DddTrafficDescriptor) HasPortNumber() bool

HasPortNumber returns a boolean if a field has been set.

func (DddTrafficDescriptor) MarshalJSON

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

func (*DddTrafficDescriptor) SetIpv4Addr

func (o *DddTrafficDescriptor) SetIpv4Addr(v string)

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

func (*DddTrafficDescriptor) SetIpv6Addr

func (o *DddTrafficDescriptor) SetIpv6Addr(v Ipv6Addr)

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

func (*DddTrafficDescriptor) SetMacAddr

func (o *DddTrafficDescriptor) SetMacAddr(v string)

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

func (*DddTrafficDescriptor) SetPortNumber

func (o *DddTrafficDescriptor) SetPortNumber(v int32)

SetPortNumber gets a reference to the given int32 and assigns it to the PortNumber field.

func (DddTrafficDescriptor) ToMap

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

type DlDataDeliveryStatus

type DlDataDeliveryStatus struct {
	String *string
}

DlDataDeliveryStatus Possible values are: - BUFFERED: The first downlink data is buffered with extended buffering matching the source of the downlink traffic. - TRANSMITTED: The first downlink data matching the source of the downlink traffic is transmitted after previous buffering or discarding of corresponding packet(s) because the UE of the PDU Session becomes ACTIVE, and buffered data can be delivered to UE. - DISCARDED: The first downlink data matching the source of the downlink traffic is discarded because the Extended Buffering time, as determined by the SMF, expires or the amount of downlink data to be buffered is exceeded.

func (*DlDataDeliveryStatus) MarshalJSON

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

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

func (*DlDataDeliveryStatus) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type DnaiChangeType

type DnaiChangeType struct {
	String *string
}

DnaiChangeType Possible values are: - EARLY: Early notification of UP path reconfiguration. - EARLY_LATE: Early and late notification of UP path reconfiguration. This value shall only be present in the subscription to the DNAI change event. - LATE: Late notification of UP path reconfiguration.

func (*DnaiChangeType) MarshalJSON

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

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

func (*DnaiChangeType) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type DnnSelectionMode

type DnnSelectionMode struct {
	String *string
}

DnnSelectionMode DNN Selection Mode. Possible values are - VERIFIED - UE_DNN_NOT_VERIFIED - NW_DNN_NOT_VERIFIED

func (*DnnSelectionMode) MarshalJSON

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

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

func (*DnnSelectionMode) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type DownlinkDataNotificationControl

type DownlinkDataNotificationControl struct {
	NotifCtrlInds []NotificationControlIndication `json:"notifCtrlInds,omitempty"`
	TypesOfNotif  []DlDataDeliveryStatus          `json:"typesOfNotif,omitempty"`
}

DownlinkDataNotificationControl Contains the downlink data notification control information.

func NewDownlinkDataNotificationControl

func NewDownlinkDataNotificationControl() *DownlinkDataNotificationControl

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

func NewDownlinkDataNotificationControlWithDefaults() *DownlinkDataNotificationControl

NewDownlinkDataNotificationControlWithDefaults instantiates a new DownlinkDataNotificationControl object This 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 (*DownlinkDataNotificationControl) GetNotifCtrlInds

GetNotifCtrlInds returns the NotifCtrlInds field value if set, zero value otherwise.

func (*DownlinkDataNotificationControl) GetNotifCtrlIndsOk

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

func (*DownlinkDataNotificationControl) GetTypesOfNotif

GetTypesOfNotif returns the TypesOfNotif field value if set, zero value otherwise.

func (*DownlinkDataNotificationControl) GetTypesOfNotifOk

func (o *DownlinkDataNotificationControl) GetTypesOfNotifOk() ([]DlDataDeliveryStatus, bool)

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

func (*DownlinkDataNotificationControl) HasNotifCtrlInds

func (o *DownlinkDataNotificationControl) HasNotifCtrlInds() bool

HasNotifCtrlInds returns a boolean if a field has been set.

func (*DownlinkDataNotificationControl) HasTypesOfNotif

func (o *DownlinkDataNotificationControl) HasTypesOfNotif() bool

HasTypesOfNotif returns a boolean if a field has been set.

func (DownlinkDataNotificationControl) MarshalJSON

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

func (*DownlinkDataNotificationControl) SetNotifCtrlInds

SetNotifCtrlInds gets a reference to the given []NotificationControlIndication and assigns it to the NotifCtrlInds field.

func (*DownlinkDataNotificationControl) SetTypesOfNotif

func (o *DownlinkDataNotificationControl) SetTypesOfNotif(v []DlDataDeliveryStatus)

SetTypesOfNotif gets a reference to the given []DlDataDeliveryStatus and assigns it to the TypesOfNotif field.

func (DownlinkDataNotificationControl) ToMap

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

type DownlinkDataNotificationControlRm

type DownlinkDataNotificationControlRm struct {
	NotifCtrlInds []NotificationControlIndication `json:"notifCtrlInds,omitempty"`
	TypesOfNotif  []DlDataDeliveryStatus          `json:"typesOfNotif,omitempty"`
}

DownlinkDataNotificationControlRm This data type is defined in the same way as the DownlinkDataNotificationControl data type, but with the nullable:true property.

func NewDownlinkDataNotificationControlRm

func NewDownlinkDataNotificationControlRm() *DownlinkDataNotificationControlRm

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

func NewDownlinkDataNotificationControlRmWithDefaults() *DownlinkDataNotificationControlRm

NewDownlinkDataNotificationControlRmWithDefaults instantiates a new DownlinkDataNotificationControlRm object This 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 (*DownlinkDataNotificationControlRm) GetNotifCtrlInds

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

func (*DownlinkDataNotificationControlRm) GetNotifCtrlIndsOk

GetNotifCtrlIndsOk returns a tuple with the NotifCtrlInds 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 (*DownlinkDataNotificationControlRm) GetTypesOfNotif

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

func (*DownlinkDataNotificationControlRm) GetTypesOfNotifOk

func (o *DownlinkDataNotificationControlRm) GetTypesOfNotifOk() ([]DlDataDeliveryStatus, bool)

GetTypesOfNotifOk returns a tuple with the TypesOfNotif 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 (*DownlinkDataNotificationControlRm) HasNotifCtrlInds

func (o *DownlinkDataNotificationControlRm) HasNotifCtrlInds() bool

HasNotifCtrlInds returns a boolean if a field has been set.

func (*DownlinkDataNotificationControlRm) HasTypesOfNotif

func (o *DownlinkDataNotificationControlRm) HasTypesOfNotif() bool

HasTypesOfNotif returns a boolean if a field has been set.

func (DownlinkDataNotificationControlRm) MarshalJSON

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

func (*DownlinkDataNotificationControlRm) SetNotifCtrlInds

SetNotifCtrlInds gets a reference to the given []NotificationControlIndication and assigns it to the NotifCtrlInds field.

func (*DownlinkDataNotificationControlRm) SetTypesOfNotif

SetTypesOfNotif gets a reference to the given []DlDataDeliveryStatus and assigns it to the TypesOfNotif field.

func (DownlinkDataNotificationControlRm) ToMap

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

type EasIpReplacementInfo

type EasIpReplacementInfo struct {
	Source EasServerAddress `json:"source"`
	Target EasServerAddress `json:"target"`
}

EasIpReplacementInfo Contains EAS IP replacement information for a Source and a Target EAS.

func NewEasIpReplacementInfo

func NewEasIpReplacementInfo(source EasServerAddress, target EasServerAddress) *EasIpReplacementInfo

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

func NewEasIpReplacementInfoWithDefaults() *EasIpReplacementInfo

NewEasIpReplacementInfoWithDefaults instantiates a new EasIpReplacementInfo object This 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 (*EasIpReplacementInfo) GetSource

func (o *EasIpReplacementInfo) GetSource() EasServerAddress

GetSource returns the Source field value

func (*EasIpReplacementInfo) GetSourceOk

func (o *EasIpReplacementInfo) GetSourceOk() (*EasServerAddress, bool)

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

func (*EasIpReplacementInfo) GetTarget

func (o *EasIpReplacementInfo) GetTarget() EasServerAddress

GetTarget returns the Target field value

func (*EasIpReplacementInfo) GetTargetOk

func (o *EasIpReplacementInfo) GetTargetOk() (*EasServerAddress, bool)

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

func (EasIpReplacementInfo) MarshalJSON

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

func (*EasIpReplacementInfo) SetSource

func (o *EasIpReplacementInfo) SetSource(v EasServerAddress)

SetSource sets field value

func (*EasIpReplacementInfo) SetTarget

func (o *EasIpReplacementInfo) SetTarget(v EasServerAddress)

SetTarget sets field value

func (EasIpReplacementInfo) ToMap

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

type EasServerAddress

type EasServerAddress struct {
	Ip IpAddr `json:"ip"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	Port int32 `json:"port"`
}

EasServerAddress Represents the IP address and port of an EAS server.

func NewEasServerAddress

func NewEasServerAddress(ip IpAddr, port int32) *EasServerAddress

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

func NewEasServerAddressWithDefaults() *EasServerAddress

NewEasServerAddressWithDefaults instantiates a new EasServerAddress object This 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 (*EasServerAddress) GetIp

func (o *EasServerAddress) GetIp() IpAddr

GetIp returns the Ip field value

func (*EasServerAddress) GetIpOk

func (o *EasServerAddress) GetIpOk() (*IpAddr, bool)

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

func (*EasServerAddress) GetPort

func (o *EasServerAddress) GetPort() int32

GetPort returns the Port field value

func (*EasServerAddress) GetPortOk

func (o *EasServerAddress) GetPortOk() (*int32, bool)

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

func (EasServerAddress) MarshalJSON

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

func (*EasServerAddress) SetIp

func (o *EasServerAddress) SetIp(v IpAddr)

SetIp sets field value

func (*EasServerAddress) SetPort

func (o *EasServerAddress) SetPort(v int32)

SetPort sets field value

func (EasServerAddress) ToMap

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

type Ecgi

type Ecgi struct {
	PlmnId PlmnId `json:"plmnId"`
	// 28-bit string identifying an E-UTRA Cell Id as specified in clause 9.3.1.9 of  3GPP TS 38.413, 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 Cell Id shall appear  first in the string, and the character representing the 4 least significant bit of the  Cell Id shall appear last in the string.
	EutraCellId string `json:"eutraCellId"`
	// 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"`
}

Ecgi Contains the ECGI (E-UTRAN Cell Global Identity), as described in 3GPP 23.003

func NewEcgi

func NewEcgi(plmnId PlmnId, eutraCellId string) *Ecgi

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

func NewEcgiWithDefaults

func NewEcgiWithDefaults() *Ecgi

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

func (*Ecgi) GetEutraCellId

func (o *Ecgi) GetEutraCellId() string

GetEutraCellId returns the EutraCellId field value

func (*Ecgi) GetEutraCellIdOk

func (o *Ecgi) GetEutraCellIdOk() (*string, bool)

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

func (*Ecgi) GetNid

func (o *Ecgi) GetNid() string

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

func (*Ecgi) GetNidOk

func (o *Ecgi) 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 (*Ecgi) GetPlmnId

func (o *Ecgi) GetPlmnId() PlmnId

GetPlmnId returns the PlmnId field value

func (*Ecgi) GetPlmnIdOk

func (o *Ecgi) GetPlmnIdOk() (*PlmnId, bool)

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

func (*Ecgi) HasNid

func (o *Ecgi) HasNid() bool

HasNid returns a boolean if a field has been set.

func (Ecgi) MarshalJSON

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

func (*Ecgi) SetEutraCellId

func (o *Ecgi) SetEutraCellId(v string)

SetEutraCellId sets field value

func (*Ecgi) SetNid

func (o *Ecgi) SetNid(v string)

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

func (*Ecgi) SetPlmnId

func (o *Ecgi) SetPlmnId(v PlmnId)

SetPlmnId sets field value

func (Ecgi) ToMap

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

type ErrorReport

type ErrorReport struct {
	Error *ProblemDetails `json:"error,omitempty"`
	// Used to report the PCC rule failure.
	RuleReports []RuleReport `json:"ruleReports,omitempty"`
	// Used to report the session rule failure.
	SessRuleReports []SessionRuleReport `json:"sessRuleReports,omitempty"`
	// Used to report failure of the policy decision and/or condition data.
	PolDecFailureReports []PolicyDecisionFailureCode `json:"polDecFailureReports,omitempty"`
	// Indicates the invalid parameters for the reported type(s) of the failed policy decision  and/or condition data.
	InvalidPolicyDecs []InvalidParam `json:"invalidPolicyDecs,omitempty"`
}

ErrorReport Contains the rule,policy decision and/or condition data error reports.

func NewErrorReport

func NewErrorReport() *ErrorReport

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

func NewErrorReportWithDefaults() *ErrorReport

NewErrorReportWithDefaults instantiates a new ErrorReport object This 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 (*ErrorReport) GetError

func (o *ErrorReport) GetError() ProblemDetails

GetError returns the Error field value if set, zero value otherwise.

func (*ErrorReport) GetErrorOk

func (o *ErrorReport) GetErrorOk() (*ProblemDetails, bool)

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

func (*ErrorReport) GetInvalidPolicyDecs

func (o *ErrorReport) GetInvalidPolicyDecs() []InvalidParam

GetInvalidPolicyDecs returns the InvalidPolicyDecs field value if set, zero value otherwise.

func (*ErrorReport) GetInvalidPolicyDecsOk

func (o *ErrorReport) GetInvalidPolicyDecsOk() ([]InvalidParam, bool)

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

func (*ErrorReport) GetPolDecFailureReports

func (o *ErrorReport) GetPolDecFailureReports() []PolicyDecisionFailureCode

GetPolDecFailureReports returns the PolDecFailureReports field value if set, zero value otherwise.

func (*ErrorReport) GetPolDecFailureReportsOk

func (o *ErrorReport) GetPolDecFailureReportsOk() ([]PolicyDecisionFailureCode, bool)

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

func (*ErrorReport) GetRuleReports

func (o *ErrorReport) GetRuleReports() []RuleReport

GetRuleReports returns the RuleReports field value if set, zero value otherwise.

func (*ErrorReport) GetRuleReportsOk

func (o *ErrorReport) GetRuleReportsOk() ([]RuleReport, bool)

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

func (*ErrorReport) GetSessRuleReports

func (o *ErrorReport) GetSessRuleReports() []SessionRuleReport

GetSessRuleReports returns the SessRuleReports field value if set, zero value otherwise.

func (*ErrorReport) GetSessRuleReportsOk

func (o *ErrorReport) GetSessRuleReportsOk() ([]SessionRuleReport, bool)

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

func (*ErrorReport) HasError

func (o *ErrorReport) HasError() bool

HasError returns a boolean if a field has been set.

func (*ErrorReport) HasInvalidPolicyDecs

func (o *ErrorReport) HasInvalidPolicyDecs() bool

HasInvalidPolicyDecs returns a boolean if a field has been set.

func (*ErrorReport) HasPolDecFailureReports

func (o *ErrorReport) HasPolDecFailureReports() bool

HasPolDecFailureReports returns a boolean if a field has been set.

func (*ErrorReport) HasRuleReports

func (o *ErrorReport) HasRuleReports() bool

HasRuleReports returns a boolean if a field has been set.

func (*ErrorReport) HasSessRuleReports

func (o *ErrorReport) HasSessRuleReports() bool

HasSessRuleReports returns a boolean if a field has been set.

func (ErrorReport) MarshalJSON

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

func (*ErrorReport) SetError

func (o *ErrorReport) SetError(v ProblemDetails)

SetError gets a reference to the given ProblemDetails and assigns it to the Error field.

func (*ErrorReport) SetInvalidPolicyDecs

func (o *ErrorReport) SetInvalidPolicyDecs(v []InvalidParam)

SetInvalidPolicyDecs gets a reference to the given []InvalidParam and assigns it to the InvalidPolicyDecs field.

func (*ErrorReport) SetPolDecFailureReports

func (o *ErrorReport) SetPolDecFailureReports(v []PolicyDecisionFailureCode)

SetPolDecFailureReports gets a reference to the given []PolicyDecisionFailureCode and assigns it to the PolDecFailureReports field.

func (*ErrorReport) SetRuleReports

func (o *ErrorReport) SetRuleReports(v []RuleReport)

SetRuleReports gets a reference to the given []RuleReport and assigns it to the RuleReports field.

func (*ErrorReport) SetSessRuleReports

func (o *ErrorReport) SetSessRuleReports(v []SessionRuleReport)

SetSessRuleReports gets a reference to the given []SessionRuleReport and assigns it to the SessRuleReports field.

func (ErrorReport) ToMap

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

type EthFlowDescription

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

EthFlowDescription Identifies an Ethernet flow.

func NewEthFlowDescription

func NewEthFlowDescription(ethType string) *EthFlowDescription

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

func NewEthFlowDescriptionWithDefaults

func NewEthFlowDescriptionWithDefaults() *EthFlowDescription

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

func (*EthFlowDescription) GetDestMacAddr

func (o *EthFlowDescription) GetDestMacAddr() string

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

func (*EthFlowDescription) GetDestMacAddrEnd

func (o *EthFlowDescription) GetDestMacAddrEnd() string

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

func (*EthFlowDescription) GetDestMacAddrEndOk

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

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

func (*EthFlowDescription) GetDestMacAddrOk

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

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

func (*EthFlowDescription) GetEthType

func (o *EthFlowDescription) GetEthType() string

GetEthType returns the EthType field value

func (*EthFlowDescription) GetEthTypeOk

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

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

func (*EthFlowDescription) GetFDesc

func (o *EthFlowDescription) GetFDesc() string

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

func (*EthFlowDescription) GetFDescOk

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

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

func (*EthFlowDescription) GetFDir

func (o *EthFlowDescription) GetFDir() FlowDirection

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

func (*EthFlowDescription) GetFDirOk

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

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

func (*EthFlowDescription) GetSourceMacAddr

func (o *EthFlowDescription) GetSourceMacAddr() string

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

func (*EthFlowDescription) GetSourceMacAddrOk

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

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

func (*EthFlowDescription) GetSrcMacAddrEnd

func (o *EthFlowDescription) GetSrcMacAddrEnd() string

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

func (*EthFlowDescription) GetSrcMacAddrEndOk

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

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

func (*EthFlowDescription) GetVlanTags

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

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

func (*EthFlowDescription) GetVlanTagsOk

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

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

func (*EthFlowDescription) HasDestMacAddr

func (o *EthFlowDescription) HasDestMacAddr() bool

HasDestMacAddr returns a boolean if a field has been set.

func (*EthFlowDescription) HasDestMacAddrEnd

func (o *EthFlowDescription) HasDestMacAddrEnd() bool

HasDestMacAddrEnd returns a boolean if a field has been set.

func (*EthFlowDescription) HasFDesc

func (o *EthFlowDescription) HasFDesc() bool

HasFDesc returns a boolean if a field has been set.

func (*EthFlowDescription) HasFDir

func (o *EthFlowDescription) HasFDir() bool

HasFDir returns a boolean if a field has been set.

func (*EthFlowDescription) HasSourceMacAddr

func (o *EthFlowDescription) HasSourceMacAddr() bool

HasSourceMacAddr returns a boolean if a field has been set.

func (*EthFlowDescription) HasSrcMacAddrEnd

func (o *EthFlowDescription) HasSrcMacAddrEnd() bool

HasSrcMacAddrEnd returns a boolean if a field has been set.

func (*EthFlowDescription) HasVlanTags

func (o *EthFlowDescription) HasVlanTags() bool

HasVlanTags returns a boolean if a field has been set.

func (EthFlowDescription) MarshalJSON

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

func (*EthFlowDescription) SetDestMacAddr

func (o *EthFlowDescription) SetDestMacAddr(v string)

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

func (*EthFlowDescription) SetDestMacAddrEnd

func (o *EthFlowDescription) SetDestMacAddrEnd(v string)

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

func (*EthFlowDescription) SetEthType

func (o *EthFlowDescription) SetEthType(v string)

SetEthType sets field value

func (*EthFlowDescription) SetFDesc

func (o *EthFlowDescription) SetFDesc(v string)

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

func (*EthFlowDescription) SetFDir

func (o *EthFlowDescription) SetFDir(v FlowDirection)

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

func (*EthFlowDescription) SetSourceMacAddr

func (o *EthFlowDescription) SetSourceMacAddr(v string)

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

func (*EthFlowDescription) SetSrcMacAddrEnd

func (o *EthFlowDescription) SetSrcMacAddrEnd(v string)

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

func (*EthFlowDescription) SetVlanTags

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

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

func (EthFlowDescription) ToMap

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

type EutraLocation

type EutraLocation struct {
	Tai       Tai   `json:"tai"`
	IgnoreTai *bool `json:"ignoreTai,omitempty"`
	Ecgi      Ecgi  `json:"ecgi"`
	// This flag when present shall indicate that the Ecgi shall be ignored When present, it shall be set as follows: - true: ecgi shall be ignored. - false (default): ecgi shall not be ignored.
	IgnoreEcgi *bool `json:"ignoreEcgi,omitempty"`
	// The value represents the elapsed time in minutes since the last network contact of the mobile station.  Value \"0\" indicates that the location information was obtained after a successful paging procedure for Active Location Retrieval when the UE is in idle mode or after a successful NG-RAN location reporting procedure with the eNB when the UE is in connected mode.  Any other value than \"0\" indicates that the location information is the last known one.  See 3GPP TS 29.002 clause 17.7.8.
	AgeOfLocationInformation *int32 `json:"ageOfLocationInformation,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	UeLocationTimestamp *time.Time `json:"ueLocationTimestamp,omitempty"`
	// Refer to geographical Information. See 3GPP TS 23.032 clause 7.3.2. Only the description of an ellipsoid point with uncertainty circle is allowed to be used.
	GeographicalInformation *string `json:"geographicalInformation,omitempty"`
	// Refers to Calling Geodetic Location. See ITU-T Recommendation Q.763 (1999) [24] clause 3.88.2. Only the description of an ellipsoid point with uncertainty circle is allowed to be used.
	GeodeticInformation *string          `json:"geodeticInformation,omitempty"`
	GlobalNgenbId       *GlobalRanNodeId `json:"globalNgenbId,omitempty"`
	GlobalENbId         *GlobalRanNodeId `json:"globalENbId,omitempty"`
}

EutraLocation Contains the E-UTRA user location.

func NewEutraLocation

func NewEutraLocation(tai Tai, ecgi Ecgi) *EutraLocation

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

func NewEutraLocationWithDefaults

func NewEutraLocationWithDefaults() *EutraLocation

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

func (*EutraLocation) GetAgeOfLocationInformation

func (o *EutraLocation) GetAgeOfLocationInformation() int32

GetAgeOfLocationInformation returns the AgeOfLocationInformation field value if set, zero value otherwise.

func (*EutraLocation) GetAgeOfLocationInformationOk

func (o *EutraLocation) GetAgeOfLocationInformationOk() (*int32, bool)

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

func (*EutraLocation) GetEcgi

func (o *EutraLocation) GetEcgi() Ecgi

GetEcgi returns the Ecgi field value

func (*EutraLocation) GetEcgiOk

func (o *EutraLocation) GetEcgiOk() (*Ecgi, bool)

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

func (*EutraLocation) GetGeodeticInformation

func (o *EutraLocation) GetGeodeticInformation() string

GetGeodeticInformation returns the GeodeticInformation field value if set, zero value otherwise.

func (*EutraLocation) GetGeodeticInformationOk

func (o *EutraLocation) GetGeodeticInformationOk() (*string, bool)

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

func (*EutraLocation) GetGeographicalInformation

func (o *EutraLocation) GetGeographicalInformation() string

GetGeographicalInformation returns the GeographicalInformation field value if set, zero value otherwise.

func (*EutraLocation) GetGeographicalInformationOk

func (o *EutraLocation) GetGeographicalInformationOk() (*string, bool)

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

func (*EutraLocation) GetGlobalENbId

func (o *EutraLocation) GetGlobalENbId() GlobalRanNodeId

GetGlobalENbId returns the GlobalENbId field value if set, zero value otherwise.

func (*EutraLocation) GetGlobalENbIdOk

func (o *EutraLocation) GetGlobalENbIdOk() (*GlobalRanNodeId, bool)

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

func (*EutraLocation) GetGlobalNgenbId

func (o *EutraLocation) GetGlobalNgenbId() GlobalRanNodeId

GetGlobalNgenbId returns the GlobalNgenbId field value if set, zero value otherwise.

func (*EutraLocation) GetGlobalNgenbIdOk

func (o *EutraLocation) GetGlobalNgenbIdOk() (*GlobalRanNodeId, bool)

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

func (*EutraLocation) GetIgnoreEcgi

func (o *EutraLocation) GetIgnoreEcgi() bool

GetIgnoreEcgi returns the IgnoreEcgi field value if set, zero value otherwise.

func (*EutraLocation) GetIgnoreEcgiOk

func (o *EutraLocation) GetIgnoreEcgiOk() (*bool, bool)

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

func (*EutraLocation) GetIgnoreTai

func (o *EutraLocation) GetIgnoreTai() bool

GetIgnoreTai returns the IgnoreTai field value if set, zero value otherwise.

func (*EutraLocation) GetIgnoreTaiOk

func (o *EutraLocation) GetIgnoreTaiOk() (*bool, bool)

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

func (*EutraLocation) GetTai

func (o *EutraLocation) GetTai() Tai

GetTai returns the Tai field value

func (*EutraLocation) GetTaiOk

func (o *EutraLocation) GetTaiOk() (*Tai, bool)

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

func (*EutraLocation) GetUeLocationTimestamp

func (o *EutraLocation) GetUeLocationTimestamp() time.Time

GetUeLocationTimestamp returns the UeLocationTimestamp field value if set, zero value otherwise.

func (*EutraLocation) GetUeLocationTimestampOk

func (o *EutraLocation) GetUeLocationTimestampOk() (*time.Time, bool)

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

func (*EutraLocation) HasAgeOfLocationInformation

func (o *EutraLocation) HasAgeOfLocationInformation() bool

HasAgeOfLocationInformation returns a boolean if a field has been set.

func (*EutraLocation) HasGeodeticInformation

func (o *EutraLocation) HasGeodeticInformation() bool

HasGeodeticInformation returns a boolean if a field has been set.

func (*EutraLocation) HasGeographicalInformation

func (o *EutraLocation) HasGeographicalInformation() bool

HasGeographicalInformation returns a boolean if a field has been set.

func (*EutraLocation) HasGlobalENbId

func (o *EutraLocation) HasGlobalENbId() bool

HasGlobalENbId returns a boolean if a field has been set.

func (*EutraLocation) HasGlobalNgenbId

func (o *EutraLocation) HasGlobalNgenbId() bool

HasGlobalNgenbId returns a boolean if a field has been set.

func (*EutraLocation) HasIgnoreEcgi

func (o *EutraLocation) HasIgnoreEcgi() bool

HasIgnoreEcgi returns a boolean if a field has been set.

func (*EutraLocation) HasIgnoreTai

func (o *EutraLocation) HasIgnoreTai() bool

HasIgnoreTai returns a boolean if a field has been set.

func (*EutraLocation) HasUeLocationTimestamp

func (o *EutraLocation) HasUeLocationTimestamp() bool

HasUeLocationTimestamp returns a boolean if a field has been set.

func (EutraLocation) MarshalJSON

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

func (*EutraLocation) SetAgeOfLocationInformation

func (o *EutraLocation) SetAgeOfLocationInformation(v int32)

SetAgeOfLocationInformation gets a reference to the given int32 and assigns it to the AgeOfLocationInformation field.

func (*EutraLocation) SetEcgi

func (o *EutraLocation) SetEcgi(v Ecgi)

SetEcgi sets field value

func (*EutraLocation) SetGeodeticInformation

func (o *EutraLocation) SetGeodeticInformation(v string)

SetGeodeticInformation gets a reference to the given string and assigns it to the GeodeticInformation field.

func (*EutraLocation) SetGeographicalInformation

func (o *EutraLocation) SetGeographicalInformation(v string)

SetGeographicalInformation gets a reference to the given string and assigns it to the GeographicalInformation field.

func (*EutraLocation) SetGlobalENbId

func (o *EutraLocation) SetGlobalENbId(v GlobalRanNodeId)

SetGlobalENbId gets a reference to the given GlobalRanNodeId and assigns it to the GlobalENbId field.

func (*EutraLocation) SetGlobalNgenbId

func (o *EutraLocation) SetGlobalNgenbId(v GlobalRanNodeId)

SetGlobalNgenbId gets a reference to the given GlobalRanNodeId and assigns it to the GlobalNgenbId field.

func (*EutraLocation) SetIgnoreEcgi

func (o *EutraLocation) SetIgnoreEcgi(v bool)

SetIgnoreEcgi gets a reference to the given bool and assigns it to the IgnoreEcgi field.

func (*EutraLocation) SetIgnoreTai

func (o *EutraLocation) SetIgnoreTai(v bool)

SetIgnoreTai gets a reference to the given bool and assigns it to the IgnoreTai field.

func (*EutraLocation) SetTai

func (o *EutraLocation) SetTai(v Tai)

SetTai sets field value

func (*EutraLocation) SetUeLocationTimestamp

func (o *EutraLocation) SetUeLocationTimestamp(v time.Time)

SetUeLocationTimestamp gets a reference to the given time.Time and assigns it to the UeLocationTimestamp field.

func (EutraLocation) ToMap

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

type FailureCause

type FailureCause struct {
	String *string
}

FailureCause Indicates the cause of the failure in a Partial Success Report.

func (*FailureCause) MarshalJSON

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

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

func (*FailureCause) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type FailureCode

type FailureCode struct {
	String *string
}

FailureCode Possible values are - UNK_RULE_ID: Indicates that the pre-provisioned PCC rule could not be successfully activated because the PCC rule identifier is unknown to the SMF. - RA_GR_ERR: Indicate that the PCC rule could not be successfully installed or enforced because the Rating Group specified within the Charging Data policy decision which the PCC rule refers to is unknown or, invalid. - SER_ID_ERR: Indicate that the PCC rule could not be successfully installed or enforced because the Service Identifier specified within the Charging Data policy decision which the PCC rule refers to is invalid, unknown, or not applicable to the service being charged. - NF_MAL: Indicate that the PCC rule could not be successfully installed (for those provisioned from the PCF) or activated (for those pre-defined in SMF) or enforced (for those already successfully installed) due to SMF/UPF malfunction. - RES_LIM: Indicate that the PCC rule could not be successfully installed (for those provisioned from PCF) or activated (for those pre-defined in SMF) or enforced (for those already successfully installed) due to a limitation of resources at the SMF/UPF. - MAX_NR_QoS_FLOW: Indicate that the PCC rule could not be successfully installed (for those provisioned from PCF) or activated (for those pre-defined in SMF) or enforced (for those already successfully installed) due to the fact that the maximum number of QoS flows has been reached for the PDU session. - MISS_FLOW_INFO: Indicate that the PCC rule could not be successfully installed or enforced because neither the \"flowInfos\" attribute nor the \"appId\" attribute is specified within the PccRule data structure by the PCF during the first install request of the PCC rule. - RES_ALLO_FAIL: Indicate that the PCC rule could not be successfully installed or maintained since the QoS flow establishment/modification failed, or the QoS flow was released. - UNSUCC_QOS_VAL: indicate that the QoS validation has failed or when Guaranteed Bandwidth > Max-Requested-Bandwidth. - INCOR_FLOW_INFO: Indicate that the PCC rule could not be successfully installed or modified at the SMF because the provided flow information is not supported by the network (e.g. the provided IP address(es) or Ipv6 prefix(es) do not correspond to an IP version applicable for the PDU session). - PS_TO_CS_HAN: Indicate that the PCC rule could not be maintained because of PS to CS handover. - APP_ID_ERR: Indicate that the rule could not be successfully installed or enforced because the Application Identifier is invalid, unknown, or not applicable to the application required for detection. - NO_QOS_FLOW_BOUND: Indicate that there is no QoS flow which the SMF can bind the PCC rule(s) to. - FILTER_RES: Indicate that the Flow Information within the \"flowInfos\" attribute cannot be handled by the SMF because any of the restrictions defined in clause 5.4.2 of 3GPP TS 29.212 was not met. - MISS_REDI_SER_ADDR: Indicate that the PCC rule could not be successfully installed or enforced at the SMF because there is no valid Redirect Server Address within the Traffic Control Data policy decision which the PCC rule refers to provided by the PCF and no preconfigured redirection address for this PCC rule at the SMF. - CM_END_USER_SER_DENIED: Indicate that the charging system denied the service request due to service restrictions (e.g. terminate rating group) or limitations related to the end-user, for example the end-user's account could not cover the requested service. - CM_CREDIT_CON_NOT_APP: Indicate that the charging system determined that the service can be granted to the end user but no further credit control is needed for the service (e.g. service is free of charge or is treated for offline charging). - CM_AUTH_REJ: Indicate that the charging system denied the service request in order to terminate the service for which credit is requested. - CM_USER_UNK: Indicate that the specified end user could not be found in the charging system. - CM_RAT_FAILED: Indicate that the charging system cannot rate the service request due to insufficient rating input, incorrect AVP combination or due to an attribute or an attribute value that is not recognized or supported in the rating. - UE_STA_SUSP: Indicates that the UE is in suspend state. - UNKNOWN_REF_ID: Indicates that the PCC rule could not be successfully installed/modified because the referenced identifier to a Policy Decision Data or to a Condition Data is unknown to the SMF. - INCORRECT_COND_DATA: Indicates that the PCC rule could not be successfully installed/modified because the referenced Condition data are incorrect. - REF_ID_COLLISION: Indicates that PCC rule could not be successfully installed/modified because the same Policy Decision is referenced by a session rule (e.g. the session rule and the PCC rule refer to the same Usage Monitoring decision data). - TRAFFIC_STEERING_ERROR: Indicates that enforcement of the steering of traffic to the N6-LAN or 5G-LAN failed; or the dynamic PCC rule could not be successfully installed or modified at the NF service consumer because there are invalid traffic steering policy identifier(s) within the provided Traffic Control Data policy decision to which the PCC rule refers. - DNAI_STEERING_ERROR: Indicates that the enforcement of the steering of traffic to the indicated DNAI failed; or the dynamic PCC rule could not be successfully installed or modified at the NF service consumer because there is invalid route information for a DNAI(s) (e.g. routing profile id is not configured) within the provided Traffic Control Data policy decision to which the PCC rule refers. - AN_GW_FAILED: This value is used to indicate that the AN-Gateway has failed and that the PCF should refrain from sending policy decisions to the SMF until it is informed that the S-GW has been recovered. This value shall not be used if the SM Policy association modification procedure is initiated for PCC rule removal only. - MAX_NR_PACKET_FILTERS_EXCEEDED: This value is used to indicate that the PCC rule could not be successfully installed, modified or enforced at the NF service consumer because the number of supported packet filters for signalled QoS rules for the PDU session has been reached. - PACKET_FILTER_TFT_ALLOCATION_EXCEEDED: This value is used to indicate that the PCC rule is removed at 5GS to EPS mobility because TFT allocation was not possible since the number of active packet filters in the EPC bearer is exceeded. - MUTE_CHG_NOT_ALLOWED: Indicates that the PCC rule could not be successfully modified because the mute condition for application detection report cannot be changed. Applicable when the functionality introduced with the ADC feature applies.

func (*FailureCode) MarshalJSON

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

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

func (*FailureCode) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type FinalUnitAction

type FinalUnitAction struct {
	String *string
}

FinalUnitAction struct for FinalUnitAction

func (*FinalUnitAction) MarshalJSON

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

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

func (*FinalUnitAction) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type FlowDirection

type FlowDirection struct {
	String *string
}

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

func (*FlowDirection) MarshalJSON

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

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

func (*FlowDirection) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type FlowDirectionRm

type FlowDirectionRm struct {
	FlowDirection *FlowDirection
	NullValue     *NullValue
}

FlowDirectionRm This data type is defined in the same way as the \"FlowDirection\" data type, with the only difference that it allows null value.

func (*FlowDirectionRm) MarshalJSON

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

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

func (*FlowDirectionRm) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type FlowInformation

type FlowInformation struct {
	// Defines a packet filter for an IP flow.
	FlowDescription    *string             `json:"flowDescription,omitempty"`
	EthFlowDescription *EthFlowDescription `json:"ethFlowDescription,omitempty"`
	// An identifier of packet filter.
	PackFiltId *string `json:"packFiltId,omitempty"`
	// The packet shall be sent to the UE.
	PacketFilterUsage *bool `json:"packetFilterUsage,omitempty"`
	// Contains the Ipv4 Type-of-Service and mask field or the Ipv6 Traffic-Class field and  mask field.
	TosTrafficClass NullableString `json:"tosTrafficClass,omitempty"`
	// the security parameter index of the IPSec packet.
	Spi NullableString `json:"spi,omitempty"`
	// the Ipv6 flow label header field.
	FlowLabel     NullableString   `json:"flowLabel,omitempty"`
	FlowDirection *FlowDirectionRm `json:"flowDirection,omitempty"`
}

FlowInformation Contains the flow information.

func NewFlowInformation

func NewFlowInformation() *FlowInformation

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

func NewFlowInformationWithDefaults() *FlowInformation

NewFlowInformationWithDefaults instantiates a new FlowInformation object This 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 (*FlowInformation) GetEthFlowDescription

func (o *FlowInformation) GetEthFlowDescription() EthFlowDescription

GetEthFlowDescription returns the EthFlowDescription field value if set, zero value otherwise.

func (*FlowInformation) GetEthFlowDescriptionOk

func (o *FlowInformation) GetEthFlowDescriptionOk() (*EthFlowDescription, bool)

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

func (*FlowInformation) GetFlowDescription

func (o *FlowInformation) GetFlowDescription() string

GetFlowDescription returns the FlowDescription field value if set, zero value otherwise.

func (*FlowInformation) GetFlowDescriptionOk

func (o *FlowInformation) GetFlowDescriptionOk() (*string, bool)

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

func (*FlowInformation) GetFlowDirection

func (o *FlowInformation) GetFlowDirection() FlowDirectionRm

GetFlowDirection returns the FlowDirection field value if set, zero value otherwise.

func (*FlowInformation) GetFlowDirectionOk

func (o *FlowInformation) GetFlowDirectionOk() (*FlowDirectionRm, bool)

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

func (*FlowInformation) GetFlowLabel

func (o *FlowInformation) GetFlowLabel() string

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

func (*FlowInformation) GetFlowLabelOk

func (o *FlowInformation) GetFlowLabelOk() (*string, bool)

GetFlowLabelOk returns a tuple with the FlowLabel 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 (*FlowInformation) GetPackFiltId

func (o *FlowInformation) GetPackFiltId() string

GetPackFiltId returns the PackFiltId field value if set, zero value otherwise.

func (*FlowInformation) GetPackFiltIdOk

func (o *FlowInformation) GetPackFiltIdOk() (*string, bool)

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

func (*FlowInformation) GetPacketFilterUsage

func (o *FlowInformation) GetPacketFilterUsage() bool

GetPacketFilterUsage returns the PacketFilterUsage field value if set, zero value otherwise.

func (*FlowInformation) GetPacketFilterUsageOk

func (o *FlowInformation) GetPacketFilterUsageOk() (*bool, bool)

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

func (*FlowInformation) GetSpi

func (o *FlowInformation) GetSpi() string

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

func (*FlowInformation) GetSpiOk

func (o *FlowInformation) GetSpiOk() (*string, bool)

GetSpiOk returns a tuple with the Spi 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 (*FlowInformation) GetTosTrafficClass

func (o *FlowInformation) GetTosTrafficClass() string

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

func (*FlowInformation) GetTosTrafficClassOk

func (o *FlowInformation) GetTosTrafficClassOk() (*string, bool)

GetTosTrafficClassOk returns a tuple with the TosTrafficClass 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 (*FlowInformation) HasEthFlowDescription

func (o *FlowInformation) HasEthFlowDescription() bool

HasEthFlowDescription returns a boolean if a field has been set.

func (*FlowInformation) HasFlowDescription

func (o *FlowInformation) HasFlowDescription() bool

HasFlowDescription returns a boolean if a field has been set.

func (*FlowInformation) HasFlowDirection

func (o *FlowInformation) HasFlowDirection() bool

HasFlowDirection returns a boolean if a field has been set.

func (*FlowInformation) HasFlowLabel

func (o *FlowInformation) HasFlowLabel() bool

HasFlowLabel returns a boolean if a field has been set.

func (*FlowInformation) HasPackFiltId

func (o *FlowInformation) HasPackFiltId() bool

HasPackFiltId returns a boolean if a field has been set.

func (*FlowInformation) HasPacketFilterUsage

func (o *FlowInformation) HasPacketFilterUsage() bool

HasPacketFilterUsage returns a boolean if a field has been set.

func (*FlowInformation) HasSpi

func (o *FlowInformation) HasSpi() bool

HasSpi returns a boolean if a field has been set.

func (*FlowInformation) HasTosTrafficClass

func (o *FlowInformation) HasTosTrafficClass() bool

HasTosTrafficClass returns a boolean if a field has been set.

func (FlowInformation) MarshalJSON

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

func (*FlowInformation) SetEthFlowDescription

func (o *FlowInformation) SetEthFlowDescription(v EthFlowDescription)

SetEthFlowDescription gets a reference to the given EthFlowDescription and assigns it to the EthFlowDescription field.

func (*FlowInformation) SetFlowDescription

func (o *FlowInformation) SetFlowDescription(v string)

SetFlowDescription gets a reference to the given string and assigns it to the FlowDescription field.

func (*FlowInformation) SetFlowDirection

func (o *FlowInformation) SetFlowDirection(v FlowDirectionRm)

SetFlowDirection gets a reference to the given FlowDirectionRm and assigns it to the FlowDirection field.

func (*FlowInformation) SetFlowLabel

func (o *FlowInformation) SetFlowLabel(v string)

SetFlowLabel gets a reference to the given NullableString and assigns it to the FlowLabel field.

func (*FlowInformation) SetFlowLabelNil

func (o *FlowInformation) SetFlowLabelNil()

SetFlowLabelNil sets the value for FlowLabel to be an explicit nil

func (*FlowInformation) SetPackFiltId

func (o *FlowInformation) SetPackFiltId(v string)

SetPackFiltId gets a reference to the given string and assigns it to the PackFiltId field.

func (*FlowInformation) SetPacketFilterUsage

func (o *FlowInformation) SetPacketFilterUsage(v bool)

SetPacketFilterUsage gets a reference to the given bool and assigns it to the PacketFilterUsage field.

func (*FlowInformation) SetSpi

func (o *FlowInformation) SetSpi(v string)

SetSpi gets a reference to the given NullableString and assigns it to the Spi field.

func (*FlowInformation) SetSpiNil

func (o *FlowInformation) SetSpiNil()

SetSpiNil sets the value for Spi to be an explicit nil

func (*FlowInformation) SetTosTrafficClass

func (o *FlowInformation) SetTosTrafficClass(v string)

SetTosTrafficClass gets a reference to the given NullableString and assigns it to the TosTrafficClass field.

func (*FlowInformation) SetTosTrafficClassNil

func (o *FlowInformation) SetTosTrafficClassNil()

SetTosTrafficClassNil sets the value for TosTrafficClass to be an explicit nil

func (FlowInformation) ToMap

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

func (*FlowInformation) UnsetFlowLabel

func (o *FlowInformation) UnsetFlowLabel()

UnsetFlowLabel ensures that no value is present for FlowLabel, not even an explicit nil

func (*FlowInformation) UnsetSpi

func (o *FlowInformation) UnsetSpi()

UnsetSpi ensures that no value is present for Spi, not even an explicit nil

func (*FlowInformation) UnsetTosTrafficClass

func (o *FlowInformation) UnsetTosTrafficClass()

UnsetTosTrafficClass ensures that no value is present for TosTrafficClass, not even an explicit nil

type FlowStatus

type FlowStatus struct {
	String *string
}

FlowStatus Describes whether the IP flow(s) are enabled or disabled.

func (*FlowStatus) MarshalJSON

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

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

func (*FlowStatus) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type GNbId

type GNbId struct {
	// Unsigned integer representing the bit length of the gNB ID as defined in clause 9.3.1.6 of 3GPP TS 38.413 [11], within the range 22 to 32.
	BitLength int32 `json:"bitLength"`
	// This represents the identifier of the gNB. The value of the gNB ID shall be encoded 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 padding 0 shall be added to make multiple nibbles,  the most significant character representing the padding 0 if required together with the 4 most significant bits of the gNB ID shall appear first in the string, and the character representing the 4 least significant bit of the gNB ID shall appear last in the string.
	GNBValue string `json:"gNBValue"`
}

GNbId Provides the G-NB identifier.

func NewGNbId

func NewGNbId(bitLength int32, gNBValue string) *GNbId

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

func NewGNbIdWithDefaults

func NewGNbIdWithDefaults() *GNbId

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

func (*GNbId) GetBitLength

func (o *GNbId) GetBitLength() int32

GetBitLength returns the BitLength field value

func (*GNbId) GetBitLengthOk

func (o *GNbId) GetBitLengthOk() (*int32, bool)

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

func (*GNbId) GetGNBValue

func (o *GNbId) GetGNBValue() string

GetGNBValue returns the GNBValue field value

func (*GNbId) GetGNBValueOk

func (o *GNbId) GetGNBValueOk() (*string, bool)

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

func (GNbId) MarshalJSON

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

func (*GNbId) SetBitLength

func (o *GNbId) SetBitLength(v int32)

SetBitLength sets field value

func (*GNbId) SetGNBValue

func (o *GNbId) SetGNBValue(v string)

SetGNBValue sets field value

func (GNbId) ToMap

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

type GenericOpenAPIError

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

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

func (GenericOpenAPIError) Body

func (e GenericOpenAPIError) Body() []byte

Body returns the raw bytes of the response

func (GenericOpenAPIError) Error

func (e GenericOpenAPIError) Error() string

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

func (GenericOpenAPIError) Model

func (e GenericOpenAPIError) Model() interface{}

Model returns the unpacked model of the error

type GeraLocation

type GeraLocation struct {
	Interface *interface{}
}

GeraLocation - Exactly one of cgi, sai or lai shall be present.

func InterfaceAsGeraLocation

func InterfaceAsGeraLocation(v *interface{}) GeraLocation

interface{}AsGeraLocation is a convenience function that returns interface{} wrapped in GeraLocation

func (*GeraLocation) GetActualInstance

func (obj *GeraLocation) GetActualInstance() interface{}

Get the actual instance

func (GeraLocation) MarshalJSON

func (src GeraLocation) MarshalJSON() ([]byte, error)

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

func (*GeraLocation) UnmarshalJSON

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

Unmarshal JSON data into one of the pointers in the struct

type GlobalRanNodeId

type GlobalRanNodeId struct {
	Interface *interface{}
}

GlobalRanNodeId - One of the six attributes n3IwfId, gNbIdm, ngeNbId, wagfId, tngfId, eNbId shall be present.

func InterfaceAsGlobalRanNodeId

func InterfaceAsGlobalRanNodeId(v *interface{}) GlobalRanNodeId

interface{}AsGlobalRanNodeId is a convenience function that returns interface{} wrapped in GlobalRanNodeId

func (*GlobalRanNodeId) GetActualInstance

func (obj *GlobalRanNodeId) GetActualInstance() interface{}

Get the actual instance

func (GlobalRanNodeId) MarshalJSON

func (src GlobalRanNodeId) MarshalJSON() ([]byte, error)

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

func (*GlobalRanNodeId) UnmarshalJSON

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

Unmarshal JSON data into one of the pointers in the struct

type Guami

type Guami struct {
	PlmnId PlmnIdNid `json:"plmnId"`
	// String identifying the AMF ID composed of AMF Region ID (8 bits), AMF Set ID (10 bits) and AMF  Pointer (6 bits) as specified in clause 2.10.1 of 3GPP TS 23.003. It is encoded as a string of  6 hexadecimal characters (i.e., 24 bits).
	AmfId string `json:"amfId"`
}

Guami Globally Unique AMF Identifier constructed out of PLMN, Network and AMF identity.

func NewGuami

func NewGuami(plmnId PlmnIdNid, amfId string) *Guami

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

func NewGuamiWithDefaults

func NewGuamiWithDefaults() *Guami

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

func (*Guami) GetAmfId

func (o *Guami) GetAmfId() string

GetAmfId returns the AmfId field value

func (*Guami) GetAmfIdOk

func (o *Guami) GetAmfIdOk() (*string, bool)

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

func (*Guami) GetPlmnId

func (o *Guami) GetPlmnId() PlmnIdNid

GetPlmnId returns the PlmnId field value

func (*Guami) GetPlmnIdOk

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

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

func (Guami) MarshalJSON

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

func (*Guami) SetAmfId

func (o *Guami) SetAmfId(v string)

SetAmfId sets field value

func (*Guami) SetPlmnId

func (o *Guami) SetPlmnId(v PlmnIdNid)

SetPlmnId sets field value

func (Guami) ToMap

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

type HfcNodeId

type HfcNodeId struct {
	// This IE represents the identifier of the HFC node Id as specified in CableLabs WR-TR-5WWC-ARCH. It is provisioned by the wireline operator as part of wireline operations and may contain up to six characters.
	HfcNId string `json:"hfcNId"`
}

HfcNodeId REpresents the HFC Node Identifer received over NGAP.

func NewHfcNodeId

func NewHfcNodeId(hfcNId string) *HfcNodeId

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

func NewHfcNodeIdWithDefaults

func NewHfcNodeIdWithDefaults() *HfcNodeId

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

func (*HfcNodeId) GetHfcNId

func (o *HfcNodeId) GetHfcNId() string

GetHfcNId returns the HfcNId field value

func (*HfcNodeId) GetHfcNIdOk

func (o *HfcNodeId) GetHfcNIdOk() (*string, bool)

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

func (HfcNodeId) MarshalJSON

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

func (*HfcNodeId) SetHfcNId

func (o *HfcNodeId) SetHfcNId(v string)

SetHfcNId sets field value

func (HfcNodeId) ToMap

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

type IndividualSMPolicyDocumentApiService

type IndividualSMPolicyDocumentApiService service

IndividualSMPolicyDocumentApiService IndividualSMPolicyDocumentApi service

func (*IndividualSMPolicyDocumentApiService) DeleteSMPolicy

DeleteSMPolicy Delete an existing Individual SM Policy

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param smPolicyId Identifier of a policy association
@return ApiDeleteSMPolicyRequest

func (*IndividualSMPolicyDocumentApiService) DeleteSMPolicyExecute

Execute executes the request

func (*IndividualSMPolicyDocumentApiService) GetSMPolicy

GetSMPolicy Read an Individual SM Policy

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param smPolicyId Identifier of a policy association
@return ApiGetSMPolicyRequest

func (*IndividualSMPolicyDocumentApiService) GetSMPolicyExecute

Execute executes the request

@return SmPolicyControl

func (*IndividualSMPolicyDocumentApiService) UpdateSMPolicy

UpdateSMPolicy Update an existing Individual SM Policy

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param smPolicyId Identifier of a policy association
@return ApiUpdateSMPolicyRequest

func (*IndividualSMPolicyDocumentApiService) UpdateSMPolicyExecute

Execute executes the request

@return SmPolicyDecision

type InvalidParam

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

InvalidParam It contains an invalid parameter and a related description.

func NewInvalidParam

func NewInvalidParam(param string) *InvalidParam

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

func NewInvalidParamWithDefaults

func NewInvalidParamWithDefaults() *InvalidParam

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

func (*InvalidParam) GetParam

func (o *InvalidParam) GetParam() string

GetParam returns the Param field value

func (*InvalidParam) GetParamOk

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

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

func (*InvalidParam) GetReason

func (o *InvalidParam) GetReason() string

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

func (*InvalidParam) GetReasonOk

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

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

func (*InvalidParam) HasReason

func (o *InvalidParam) HasReason() bool

HasReason returns a boolean if a field has been set.

func (InvalidParam) MarshalJSON

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

func (*InvalidParam) SetParam

func (o *InvalidParam) SetParam(v string)

SetParam sets field value

func (*InvalidParam) SetReason

func (o *InvalidParam) SetReason(v string)

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

func (InvalidParam) ToMap

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

type IpAddr

type IpAddr struct {
	Interface *interface{}
}

IpAddr - Contains an IP adresse.

func InterfaceAsIpAddr

func InterfaceAsIpAddr(v *interface{}) IpAddr

interface{}AsIpAddr is a convenience function that returns interface{} wrapped in IpAddr

func (*IpAddr) GetActualInstance

func (obj *IpAddr) GetActualInstance() interface{}

Get the actual instance

func (IpAddr) MarshalJSON

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

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

func (*IpAddr) UnmarshalJSON

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

Unmarshal JSON data into one of the pointers in the struct

type IpMulticastAddressInfo

type IpMulticastAddressInfo struct {
	// String identifying a IPv4 address formatted in the 'dotted decimal' notation as defined in RFC 1166.
	SrcIpv4Addr *string `json:"srcIpv4Addr,omitempty"`
	// String identifying a IPv4 address formatted in the 'dotted decimal' notation as defined in RFC 1166.
	Ipv4MulAddr *string   `json:"ipv4MulAddr,omitempty"`
	SrcIpv6Addr *Ipv6Addr `json:"srcIpv6Addr,omitempty"`
	Ipv6MulAddr *Ipv6Addr `json:"ipv6MulAddr,omitempty"`
}

IpMulticastAddressInfo Contains the IP multicast addressing information.

func NewIpMulticastAddressInfo

func NewIpMulticastAddressInfo() *IpMulticastAddressInfo

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

func NewIpMulticastAddressInfoWithDefaults() *IpMulticastAddressInfo

NewIpMulticastAddressInfoWithDefaults instantiates a new IpMulticastAddressInfo object This 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 (*IpMulticastAddressInfo) GetIpv4MulAddr

func (o *IpMulticastAddressInfo) GetIpv4MulAddr() string

GetIpv4MulAddr returns the Ipv4MulAddr field value if set, zero value otherwise.

func (*IpMulticastAddressInfo) GetIpv4MulAddrOk

func (o *IpMulticastAddressInfo) GetIpv4MulAddrOk() (*string, bool)

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

func (*IpMulticastAddressInfo) GetIpv6MulAddr

func (o *IpMulticastAddressInfo) GetIpv6MulAddr() Ipv6Addr

GetIpv6MulAddr returns the Ipv6MulAddr field value if set, zero value otherwise.

func (*IpMulticastAddressInfo) GetIpv6MulAddrOk

func (o *IpMulticastAddressInfo) GetIpv6MulAddrOk() (*Ipv6Addr, bool)

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

func (*IpMulticastAddressInfo) GetSrcIpv4Addr

func (o *IpMulticastAddressInfo) GetSrcIpv4Addr() string

GetSrcIpv4Addr returns the SrcIpv4Addr field value if set, zero value otherwise.

func (*IpMulticastAddressInfo) GetSrcIpv4AddrOk

func (o *IpMulticastAddressInfo) GetSrcIpv4AddrOk() (*string, bool)

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

func (*IpMulticastAddressInfo) GetSrcIpv6Addr

func (o *IpMulticastAddressInfo) GetSrcIpv6Addr() Ipv6Addr

GetSrcIpv6Addr returns the SrcIpv6Addr field value if set, zero value otherwise.

func (*IpMulticastAddressInfo) GetSrcIpv6AddrOk

func (o *IpMulticastAddressInfo) GetSrcIpv6AddrOk() (*Ipv6Addr, bool)

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

func (*IpMulticastAddressInfo) HasIpv4MulAddr

func (o *IpMulticastAddressInfo) HasIpv4MulAddr() bool

HasIpv4MulAddr returns a boolean if a field has been set.

func (*IpMulticastAddressInfo) HasIpv6MulAddr

func (o *IpMulticastAddressInfo) HasIpv6MulAddr() bool

HasIpv6MulAddr returns a boolean if a field has been set.

func (*IpMulticastAddressInfo) HasSrcIpv4Addr

func (o *IpMulticastAddressInfo) HasSrcIpv4Addr() bool

HasSrcIpv4Addr returns a boolean if a field has been set.

func (*IpMulticastAddressInfo) HasSrcIpv6Addr

func (o *IpMulticastAddressInfo) HasSrcIpv6Addr() bool

HasSrcIpv6Addr returns a boolean if a field has been set.

func (IpMulticastAddressInfo) MarshalJSON

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

func (*IpMulticastAddressInfo) SetIpv4MulAddr

func (o *IpMulticastAddressInfo) SetIpv4MulAddr(v string)

SetIpv4MulAddr gets a reference to the given string and assigns it to the Ipv4MulAddr field.

func (*IpMulticastAddressInfo) SetIpv6MulAddr

func (o *IpMulticastAddressInfo) SetIpv6MulAddr(v Ipv6Addr)

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

func (*IpMulticastAddressInfo) SetSrcIpv4Addr

func (o *IpMulticastAddressInfo) SetSrcIpv4Addr(v string)

SetSrcIpv4Addr gets a reference to the given string and assigns it to the SrcIpv4Addr field.

func (*IpMulticastAddressInfo) SetSrcIpv6Addr

func (o *IpMulticastAddressInfo) SetSrcIpv6Addr(v Ipv6Addr)

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

func (IpMulticastAddressInfo) ToMap

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

type Ipv6Addr

type Ipv6Addr struct {
}

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

func NewIpv6Addr

func NewIpv6Addr() *Ipv6Addr

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

func NewIpv6AddrWithDefaults

func NewIpv6AddrWithDefaults() *Ipv6Addr

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

func (Ipv6Addr) MarshalJSON

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

func (Ipv6Addr) ToMap

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

type Ipv6Prefix

type Ipv6Prefix struct {
}

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

func NewIpv6Prefix

func NewIpv6Prefix() *Ipv6Prefix

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

func NewIpv6PrefixWithDefaults

func NewIpv6PrefixWithDefaults() *Ipv6Prefix

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

func (Ipv6Prefix) MarshalJSON

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

func (Ipv6Prefix) ToMap

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

type LineType

type LineType struct {
	String *string
}

LineType Possible values are: - DSL: Identifies a DSL line - PON: Identifies a PON line

func (*LineType) MarshalJSON

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

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

func (*LineType) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type LocationAreaId

type LocationAreaId struct {
	PlmnId PlmnId `json:"plmnId"`
	// Location Area Code.
	Lac string `json:"lac"`
}

LocationAreaId Contains a Location area identification as defined in 3GPP TS 23.003, clause 4.1.

func NewLocationAreaId

func NewLocationAreaId(plmnId PlmnId, lac string) *LocationAreaId

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

func NewLocationAreaIdWithDefaults

func NewLocationAreaIdWithDefaults() *LocationAreaId

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

func (*LocationAreaId) GetLac

func (o *LocationAreaId) GetLac() string

GetLac returns the Lac field value

func (*LocationAreaId) GetLacOk

func (o *LocationAreaId) GetLacOk() (*string, bool)

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

func (*LocationAreaId) GetPlmnId

func (o *LocationAreaId) GetPlmnId() PlmnId

GetPlmnId returns the PlmnId field value

func (*LocationAreaId) GetPlmnIdOk

func (o *LocationAreaId) GetPlmnIdOk() (*PlmnId, bool)

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

func (LocationAreaId) MarshalJSON

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

func (*LocationAreaId) SetLac

func (o *LocationAreaId) SetLac(v string)

SetLac sets field value

func (*LocationAreaId) SetPlmnId

func (o *LocationAreaId) SetPlmnId(v PlmnId)

SetPlmnId sets field value

func (LocationAreaId) ToMap

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

type MaPduIndication

type MaPduIndication struct {
	String *string
}

MaPduIndication Contains the MA PDU session indication, i.e., MA PDU Request or MA PDU Network-Upgrade Allowed.

func (*MaPduIndication) MarshalJSON

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

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

func (*MaPduIndication) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type MappedNullable

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

type MeteringMethod

type MeteringMethod struct {
	NullValue *NullValue
	String    *string
}

MeteringMethod Possible values are: - DURATION: Indicates that the duration of the service data flow traffic shall be metered. - VOLUME: Indicates that volume of the service data flow traffic shall be metered. - DURATION_VOLUME: Indicates that the duration and the volume of the service data flow traffic shall be metered. - EVENT: Indicates that events of the service data flow traffic shall be metered.

func (*MeteringMethod) MarshalJSON

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

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

func (*MeteringMethod) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type MulticastAccessControl

type MulticastAccessControl struct {
	String *string
}

MulticastAccessControl Indicates whether the service data flow, corresponding to the service data flow template, is allowed or not allowed.

func (*MulticastAccessControl) MarshalJSON

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

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

func (*MulticastAccessControl) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type N3gaLocation

type N3gaLocation struct {
	N3gppTai *Tai `json:"n3gppTai,omitempty"`
	// This IE shall contain the N3IWF identifier received over NGAP and shall be encoded as a  string of hexadecimal characters. 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 N3IWF ID shall appear first in  the string, and the character representing the 4 least significant bit of the N3IWF ID  shall appear last in the string.
	N3IwfId *string `json:"n3IwfId,omitempty"`
	// String identifying a IPv4 address formatted in the 'dotted decimal' notation as defined in RFC 1166.
	UeIpv4Addr *string   `json:"ueIpv4Addr,omitempty"`
	UeIpv6Addr *Ipv6Addr `json:"ueIpv6Addr,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	PortNumber *int32             `json:"portNumber,omitempty"`
	Protocol   *TransportProtocol `json:"protocol,omitempty"`
	TnapId     *TnapId            `json:"tnapId,omitempty"`
	TwapId     *TwapId            `json:"twapId,omitempty"`
	HfcNodeId  *HfcNodeId         `json:"hfcNodeId,omitempty"`
	// string with format 'bytes' as defined in OpenAPI
	Gli            *string   `json:"gli,omitempty"`
	W5gbanLineType *LineType `json:"w5gbanLineType,omitempty"`
	// Global Cable Identifier uniquely identifying the connection between the 5G-CRG or FN-CRG to the 5GS. See clause 28.15.4 of 3GPP TS 23.003. This shall be encoded as a string per clause 28.15.4 of 3GPP TS 23.003, and compliant with the syntax specified  in clause 2.2  of IETF RFC 7542 for the username part of a NAI. The GCI value is specified in CableLabs WR-TR-5WWC-ARCH.
	Gci *string `json:"gci,omitempty"`
}

N3gaLocation Contains the Non-3GPP access user location.

func NewN3gaLocation

func NewN3gaLocation() *N3gaLocation

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

func NewN3gaLocationWithDefaults

func NewN3gaLocationWithDefaults() *N3gaLocation

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

func (*N3gaLocation) GetGci

func (o *N3gaLocation) GetGci() string

GetGci returns the Gci field value if set, zero value otherwise.

func (*N3gaLocation) GetGciOk

func (o *N3gaLocation) GetGciOk() (*string, bool)

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

func (*N3gaLocation) GetGli

func (o *N3gaLocation) GetGli() string

GetGli returns the Gli field value if set, zero value otherwise.

func (*N3gaLocation) GetGliOk

func (o *N3gaLocation) GetGliOk() (*string, bool)

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

func (*N3gaLocation) GetHfcNodeId

func (o *N3gaLocation) GetHfcNodeId() HfcNodeId

GetHfcNodeId returns the HfcNodeId field value if set, zero value otherwise.

func (*N3gaLocation) GetHfcNodeIdOk

func (o *N3gaLocation) GetHfcNodeIdOk() (*HfcNodeId, bool)

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

func (*N3gaLocation) GetN3IwfId

func (o *N3gaLocation) GetN3IwfId() string

GetN3IwfId returns the N3IwfId field value if set, zero value otherwise.

func (*N3gaLocation) GetN3IwfIdOk

func (o *N3gaLocation) GetN3IwfIdOk() (*string, bool)

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

func (*N3gaLocation) GetN3gppTai

func (o *N3gaLocation) GetN3gppTai() Tai

GetN3gppTai returns the N3gppTai field value if set, zero value otherwise.

func (*N3gaLocation) GetN3gppTaiOk

func (o *N3gaLocation) GetN3gppTaiOk() (*Tai, bool)

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

func (*N3gaLocation) GetPortNumber

func (o *N3gaLocation) GetPortNumber() int32

GetPortNumber returns the PortNumber field value if set, zero value otherwise.

func (*N3gaLocation) GetPortNumberOk

func (o *N3gaLocation) GetPortNumberOk() (*int32, bool)

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

func (*N3gaLocation) GetProtocol

func (o *N3gaLocation) GetProtocol() TransportProtocol

GetProtocol returns the Protocol field value if set, zero value otherwise.

func (*N3gaLocation) GetProtocolOk

func (o *N3gaLocation) GetProtocolOk() (*TransportProtocol, bool)

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

func (*N3gaLocation) GetTnapId

func (o *N3gaLocation) GetTnapId() TnapId

GetTnapId returns the TnapId field value if set, zero value otherwise.

func (*N3gaLocation) GetTnapIdOk

func (o *N3gaLocation) GetTnapIdOk() (*TnapId, bool)

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

func (*N3gaLocation) GetTwapId

func (o *N3gaLocation) GetTwapId() TwapId

GetTwapId returns the TwapId field value if set, zero value otherwise.

func (*N3gaLocation) GetTwapIdOk

func (o *N3gaLocation) GetTwapIdOk() (*TwapId, bool)

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

func (*N3gaLocation) GetUeIpv4Addr

func (o *N3gaLocation) GetUeIpv4Addr() string

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

func (*N3gaLocation) GetUeIpv4AddrOk

func (o *N3gaLocation) 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 (*N3gaLocation) GetUeIpv6Addr

func (o *N3gaLocation) GetUeIpv6Addr() Ipv6Addr

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

func (*N3gaLocation) GetUeIpv6AddrOk

func (o *N3gaLocation) GetUeIpv6AddrOk() (*Ipv6Addr, 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 (*N3gaLocation) GetW5gbanLineType

func (o *N3gaLocation) GetW5gbanLineType() LineType

GetW5gbanLineType returns the W5gbanLineType field value if set, zero value otherwise.

func (*N3gaLocation) GetW5gbanLineTypeOk

func (o *N3gaLocation) GetW5gbanLineTypeOk() (*LineType, bool)

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

func (*N3gaLocation) HasGci

func (o *N3gaLocation) HasGci() bool

HasGci returns a boolean if a field has been set.

func (*N3gaLocation) HasGli

func (o *N3gaLocation) HasGli() bool

HasGli returns a boolean if a field has been set.

func (*N3gaLocation) HasHfcNodeId

func (o *N3gaLocation) HasHfcNodeId() bool

HasHfcNodeId returns a boolean if a field has been set.

func (*N3gaLocation) HasN3IwfId

func (o *N3gaLocation) HasN3IwfId() bool

HasN3IwfId returns a boolean if a field has been set.

func (*N3gaLocation) HasN3gppTai

func (o *N3gaLocation) HasN3gppTai() bool

HasN3gppTai returns a boolean if a field has been set.

func (*N3gaLocation) HasPortNumber

func (o *N3gaLocation) HasPortNumber() bool

HasPortNumber returns a boolean if a field has been set.

func (*N3gaLocation) HasProtocol

func (o *N3gaLocation) HasProtocol() bool

HasProtocol returns a boolean if a field has been set.

func (*N3gaLocation) HasTnapId

func (o *N3gaLocation) HasTnapId() bool

HasTnapId returns a boolean if a field has been set.

func (*N3gaLocation) HasTwapId

func (o *N3gaLocation) HasTwapId() bool

HasTwapId returns a boolean if a field has been set.

func (*N3gaLocation) HasUeIpv4Addr

func (o *N3gaLocation) HasUeIpv4Addr() bool

HasUeIpv4Addr returns a boolean if a field has been set.

func (*N3gaLocation) HasUeIpv6Addr

func (o *N3gaLocation) HasUeIpv6Addr() bool

HasUeIpv6Addr returns a boolean if a field has been set.

func (*N3gaLocation) HasW5gbanLineType

func (o *N3gaLocation) HasW5gbanLineType() bool

HasW5gbanLineType returns a boolean if a field has been set.

func (N3gaLocation) MarshalJSON

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

func (*N3gaLocation) SetGci

func (o *N3gaLocation) SetGci(v string)

SetGci gets a reference to the given string and assigns it to the Gci field.

func (*N3gaLocation) SetGli

func (o *N3gaLocation) SetGli(v string)

SetGli gets a reference to the given string and assigns it to the Gli field.

func (*N3gaLocation) SetHfcNodeId

func (o *N3gaLocation) SetHfcNodeId(v HfcNodeId)

SetHfcNodeId gets a reference to the given HfcNodeId and assigns it to the HfcNodeId field.

func (*N3gaLocation) SetN3IwfId

func (o *N3gaLocation) SetN3IwfId(v string)

SetN3IwfId gets a reference to the given string and assigns it to the N3IwfId field.

func (*N3gaLocation) SetN3gppTai

func (o *N3gaLocation) SetN3gppTai(v Tai)

SetN3gppTai gets a reference to the given Tai and assigns it to the N3gppTai field.

func (*N3gaLocation) SetPortNumber

func (o *N3gaLocation) SetPortNumber(v int32)

SetPortNumber gets a reference to the given int32 and assigns it to the PortNumber field.

func (*N3gaLocation) SetProtocol

func (o *N3gaLocation) SetProtocol(v TransportProtocol)

SetProtocol gets a reference to the given TransportProtocol and assigns it to the Protocol field.

func (*N3gaLocation) SetTnapId

func (o *N3gaLocation) SetTnapId(v TnapId)

SetTnapId gets a reference to the given TnapId and assigns it to the TnapId field.

func (*N3gaLocation) SetTwapId

func (o *N3gaLocation) SetTwapId(v TwapId)

SetTwapId gets a reference to the given TwapId and assigns it to the TwapId field.

func (*N3gaLocation) SetUeIpv4Addr

func (o *N3gaLocation) SetUeIpv4Addr(v string)

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

func (*N3gaLocation) SetUeIpv6Addr

func (o *N3gaLocation) SetUeIpv6Addr(v Ipv6Addr)

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

func (*N3gaLocation) SetW5gbanLineType

func (o *N3gaLocation) SetW5gbanLineType(v LineType)

SetW5gbanLineType gets a reference to the given LineType and assigns it to the W5gbanLineType field.

func (N3gaLocation) ToMap

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

type NFType

type NFType struct {
	String *string
}

NFType NF types known to NRF

func (*NFType) MarshalJSON

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

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

func (*NFType) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type Ncgi

type Ncgi struct {
	PlmnId PlmnId `json:"plmnId"`
	// 36-bit string identifying an NR Cell Id as specified in clause 9.3.1.7 of 3GPP TS 38.413,  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 Cell Id shall appear first in the string, and  the character representing the 4 least significant bit of the Cell Id shall appear last in the  string.
	NrCellId string `json:"nrCellId"`
	// 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"`
}

Ncgi Contains the NCGI (NR Cell Global Identity), as described in 3GPP 23.003

func NewNcgi

func NewNcgi(plmnId PlmnId, nrCellId string) *Ncgi

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

func NewNcgiWithDefaults

func NewNcgiWithDefaults() *Ncgi

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

func (*Ncgi) GetNid

func (o *Ncgi) GetNid() string

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

func (*Ncgi) GetNidOk

func (o *Ncgi) 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 (*Ncgi) GetNrCellId

func (o *Ncgi) GetNrCellId() string

GetNrCellId returns the NrCellId field value

func (*Ncgi) GetNrCellIdOk

func (o *Ncgi) GetNrCellIdOk() (*string, bool)

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

func (*Ncgi) GetPlmnId

func (o *Ncgi) GetPlmnId() PlmnId

GetPlmnId returns the PlmnId field value

func (*Ncgi) GetPlmnIdOk

func (o *Ncgi) GetPlmnIdOk() (*PlmnId, bool)

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

func (*Ncgi) HasNid

func (o *Ncgi) HasNid() bool

HasNid returns a boolean if a field has been set.

func (Ncgi) MarshalJSON

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

func (*Ncgi) SetNid

func (o *Ncgi) SetNid(v string)

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

func (*Ncgi) SetNrCellId

func (o *Ncgi) SetNrCellId(v string)

SetNrCellId sets field value

func (*Ncgi) SetPlmnId

func (o *Ncgi) SetPlmnId(v PlmnId)

SetPlmnId sets field value

func (Ncgi) ToMap

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

type NetLocAccessSupport

type NetLocAccessSupport struct {
	String *string
}

NetLocAccessSupport Possible values are - ANR_NOT_SUPPORTED: Indicates that the access network does not support the report of access network information. - TZR_NOT_SUPPORTED: Indicates that the access network does not support the report of UE time zone. - LOC_NOT_SUPPORTED: Indicates that the access network does not support the report of UE Location (or PLMN Id).

func (*NetLocAccessSupport) MarshalJSON

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

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

func (*NetLocAccessSupport) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type NgApCause

type NgApCause struct {
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	Group int32 `json:"group"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	Value int32 `json:"value"`
}

NgApCause Represents the NGAP cause.

func NewNgApCause

func NewNgApCause(group int32, value int32) *NgApCause

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

func NewNgApCauseWithDefaults

func NewNgApCauseWithDefaults() *NgApCause

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

func (*NgApCause) GetGroup

func (o *NgApCause) GetGroup() int32

GetGroup returns the Group field value

func (*NgApCause) GetGroupOk

func (o *NgApCause) GetGroupOk() (*int32, bool)

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

func (*NgApCause) GetValue

func (o *NgApCause) GetValue() int32

GetValue returns the Value field value

func (*NgApCause) GetValueOk

func (o *NgApCause) GetValueOk() (*int32, bool)

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

func (NgApCause) MarshalJSON

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

func (*NgApCause) SetGroup

func (o *NgApCause) SetGroup(v int32)

SetGroup sets field value

func (*NgApCause) SetValue

func (o *NgApCause) SetValue(v int32)

SetValue sets field value

func (NgApCause) ToMap

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

type NotificationControlIndication

type NotificationControlIndication struct {
	String *string
}

NotificationControlIndication Indicates that the notification of DDD Status is requested and/or that the notification of DDN Failure is requested.

func (*NotificationControlIndication) MarshalJSON

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

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

func (*NotificationControlIndication) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type NrLocation

type NrLocation struct {
	Tai        Tai   `json:"tai"`
	Ncgi       Ncgi  `json:"ncgi"`
	IgnoreNcgi *bool `json:"ignoreNcgi,omitempty"`
	// The value represents the elapsed time in minutes since the last network contact of the mobile station. Value \"0\" indicates that the location information was obtained after a successful paging procedure for Active Location Retrieval when the UE is in idle mode or after a successful  NG-RAN location reporting procedure with the eNB when the UE is in connected mode. Any other value than \"0\" indicates that the location information is the last known one. See 3GPP TS 29.002 clause 17.7.8.
	AgeOfLocationInformation *int32 `json:"ageOfLocationInformation,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	UeLocationTimestamp *time.Time `json:"ueLocationTimestamp,omitempty"`
	// Refer to geographical Information. See 3GPP TS 23.032 clause 7.3.2. Only the description of an ellipsoid point with uncertainty circle is allowed to be used.
	GeographicalInformation *string `json:"geographicalInformation,omitempty"`
	// Refers to Calling Geodetic Location. See ITU-T Recommendation Q.763 (1999) [24] clause 3.88.2. Only the description of an ellipsoid point with uncertainty circle is allowed to be used.
	GeodeticInformation *string          `json:"geodeticInformation,omitempty"`
	GlobalGnbId         *GlobalRanNodeId `json:"globalGnbId,omitempty"`
}

NrLocation Contains the NR user location.

func NewNrLocation

func NewNrLocation(tai Tai, ncgi Ncgi) *NrLocation

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

func NewNrLocationWithDefaults

func NewNrLocationWithDefaults() *NrLocation

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

func (*NrLocation) GetAgeOfLocationInformation

func (o *NrLocation) GetAgeOfLocationInformation() int32

GetAgeOfLocationInformation returns the AgeOfLocationInformation field value if set, zero value otherwise.

func (*NrLocation) GetAgeOfLocationInformationOk

func (o *NrLocation) GetAgeOfLocationInformationOk() (*int32, bool)

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

func (*NrLocation) GetGeodeticInformation

func (o *NrLocation) GetGeodeticInformation() string

GetGeodeticInformation returns the GeodeticInformation field value if set, zero value otherwise.

func (*NrLocation) GetGeodeticInformationOk

func (o *NrLocation) GetGeodeticInformationOk() (*string, bool)

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

func (*NrLocation) GetGeographicalInformation

func (o *NrLocation) GetGeographicalInformation() string

GetGeographicalInformation returns the GeographicalInformation field value if set, zero value otherwise.

func (*NrLocation) GetGeographicalInformationOk

func (o *NrLocation) GetGeographicalInformationOk() (*string, bool)

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

func (*NrLocation) GetGlobalGnbId

func (o *NrLocation) GetGlobalGnbId() GlobalRanNodeId

GetGlobalGnbId returns the GlobalGnbId field value if set, zero value otherwise.

func (*NrLocation) GetGlobalGnbIdOk

func (o *NrLocation) GetGlobalGnbIdOk() (*GlobalRanNodeId, bool)

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

func (*NrLocation) GetIgnoreNcgi

func (o *NrLocation) GetIgnoreNcgi() bool

GetIgnoreNcgi returns the IgnoreNcgi field value if set, zero value otherwise.

func (*NrLocation) GetIgnoreNcgiOk

func (o *NrLocation) GetIgnoreNcgiOk() (*bool, bool)

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

func (*NrLocation) GetNcgi

func (o *NrLocation) GetNcgi() Ncgi

GetNcgi returns the Ncgi field value

func (*NrLocation) GetNcgiOk

func (o *NrLocation) GetNcgiOk() (*Ncgi, bool)

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

func (*NrLocation) GetTai

func (o *NrLocation) GetTai() Tai

GetTai returns the Tai field value

func (*NrLocation) GetTaiOk

func (o *NrLocation) GetTaiOk() (*Tai, bool)

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

func (*NrLocation) GetUeLocationTimestamp

func (o *NrLocation) GetUeLocationTimestamp() time.Time

GetUeLocationTimestamp returns the UeLocationTimestamp field value if set, zero value otherwise.

func (*NrLocation) GetUeLocationTimestampOk

func (o *NrLocation) GetUeLocationTimestampOk() (*time.Time, bool)

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

func (*NrLocation) HasAgeOfLocationInformation

func (o *NrLocation) HasAgeOfLocationInformation() bool

HasAgeOfLocationInformation returns a boolean if a field has been set.

func (*NrLocation) HasGeodeticInformation

func (o *NrLocation) HasGeodeticInformation() bool

HasGeodeticInformation returns a boolean if a field has been set.

func (*NrLocation) HasGeographicalInformation

func (o *NrLocation) HasGeographicalInformation() bool

HasGeographicalInformation returns a boolean if a field has been set.

func (*NrLocation) HasGlobalGnbId

func (o *NrLocation) HasGlobalGnbId() bool

HasGlobalGnbId returns a boolean if a field has been set.

func (*NrLocation) HasIgnoreNcgi

func (o *NrLocation) HasIgnoreNcgi() bool

HasIgnoreNcgi returns a boolean if a field has been set.

func (*NrLocation) HasUeLocationTimestamp

func (o *NrLocation) HasUeLocationTimestamp() bool

HasUeLocationTimestamp returns a boolean if a field has been set.

func (NrLocation) MarshalJSON

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

func (*NrLocation) SetAgeOfLocationInformation

func (o *NrLocation) SetAgeOfLocationInformation(v int32)

SetAgeOfLocationInformation gets a reference to the given int32 and assigns it to the AgeOfLocationInformation field.

func (*NrLocation) SetGeodeticInformation

func (o *NrLocation) SetGeodeticInformation(v string)

SetGeodeticInformation gets a reference to the given string and assigns it to the GeodeticInformation field.

func (*NrLocation) SetGeographicalInformation

func (o *NrLocation) SetGeographicalInformation(v string)

SetGeographicalInformation gets a reference to the given string and assigns it to the GeographicalInformation field.

func (*NrLocation) SetGlobalGnbId

func (o *NrLocation) SetGlobalGnbId(v GlobalRanNodeId)

SetGlobalGnbId gets a reference to the given GlobalRanNodeId and assigns it to the GlobalGnbId field.

func (*NrLocation) SetIgnoreNcgi

func (o *NrLocation) SetIgnoreNcgi(v bool)

SetIgnoreNcgi gets a reference to the given bool and assigns it to the IgnoreNcgi field.

func (*NrLocation) SetNcgi

func (o *NrLocation) SetNcgi(v Ncgi)

SetNcgi sets field value

func (*NrLocation) SetTai

func (o *NrLocation) SetTai(v Tai)

SetTai sets field value

func (*NrLocation) SetUeLocationTimestamp

func (o *NrLocation) SetUeLocationTimestamp(v time.Time)

SetUeLocationTimestamp gets a reference to the given time.Time and assigns it to the UeLocationTimestamp field.

func (NrLocation) ToMap

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

type NullValue

type NullValue string

NullValue JSON's null value.

const (
	NULL NullValue = "null"
)

List of NullValue

func NewNullValueFromValue

func NewNullValueFromValue(v string) (*NullValue, error)

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

func (NullValue) IsValid

func (v NullValue) IsValid() bool

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

func (NullValue) Ptr

func (v NullValue) Ptr() *NullValue

Ptr returns reference to NullValue value

func (*NullValue) UnmarshalJSON

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

type NullableAccNetChId

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

func NewNullableAccNetChId

func NewNullableAccNetChId(val *AccNetChId) *NullableAccNetChId

func (NullableAccNetChId) Get

func (v NullableAccNetChId) Get() *AccNetChId

func (NullableAccNetChId) IsSet

func (v NullableAccNetChId) IsSet() bool

func (NullableAccNetChId) MarshalJSON

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

func (*NullableAccNetChId) Set

func (v *NullableAccNetChId) Set(val *AccNetChId)

func (*NullableAccNetChId) UnmarshalJSON

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

func (*NullableAccNetChId) Unset

func (v *NullableAccNetChId) Unset()

type NullableAccNetChargingAddress

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

func (NullableAccNetChargingAddress) Get

func (NullableAccNetChargingAddress) IsSet

func (NullableAccNetChargingAddress) MarshalJSON

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

func (*NullableAccNetChargingAddress) Set

func (*NullableAccNetChargingAddress) UnmarshalJSON

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

func (*NullableAccNetChargingAddress) Unset

func (v *NullableAccNetChargingAddress) Unset()

type NullableAccessTokenErr

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

func NewNullableAccessTokenErr

func NewNullableAccessTokenErr(val *AccessTokenErr) *NullableAccessTokenErr

func (NullableAccessTokenErr) Get

func (NullableAccessTokenErr) IsSet

func (v NullableAccessTokenErr) IsSet() bool

func (NullableAccessTokenErr) MarshalJSON

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

func (*NullableAccessTokenErr) Set

func (*NullableAccessTokenErr) UnmarshalJSON

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

func (*NullableAccessTokenErr) Unset

func (v *NullableAccessTokenErr) Unset()

type NullableAccessTokenReq

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

func NewNullableAccessTokenReq

func NewNullableAccessTokenReq(val *AccessTokenReq) *NullableAccessTokenReq

func (NullableAccessTokenReq) Get

func (NullableAccessTokenReq) IsSet

func (v NullableAccessTokenReq) IsSet() bool

func (NullableAccessTokenReq) MarshalJSON

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

func (*NullableAccessTokenReq) Set

func (*NullableAccessTokenReq) UnmarshalJSON

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

func (*NullableAccessTokenReq) Unset

func (v *NullableAccessTokenReq) Unset()

type NullableAccessType

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

func NewNullableAccessType

func NewNullableAccessType(val *AccessType) *NullableAccessType

func (NullableAccessType) Get

func (v NullableAccessType) Get() *AccessType

func (NullableAccessType) IsSet

func (v NullableAccessType) IsSet() bool

func (NullableAccessType) MarshalJSON

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

func (*NullableAccessType) Set

func (v *NullableAccessType) Set(val *AccessType)

func (*NullableAccessType) UnmarshalJSON

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

func (*NullableAccessType) Unset

func (v *NullableAccessType) Unset()

type NullableAccessTypeRm

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

func NewNullableAccessTypeRm

func NewNullableAccessTypeRm(val *AccessTypeRm) *NullableAccessTypeRm

func (NullableAccessTypeRm) Get

func (NullableAccessTypeRm) IsSet

func (v NullableAccessTypeRm) IsSet() bool

func (NullableAccessTypeRm) MarshalJSON

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

func (*NullableAccessTypeRm) Set

func (v *NullableAccessTypeRm) Set(val *AccessTypeRm)

func (*NullableAccessTypeRm) UnmarshalJSON

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

func (*NullableAccessTypeRm) Unset

func (v *NullableAccessTypeRm) Unset()

type NullableAccuUsageReport

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

func NewNullableAccuUsageReport

func NewNullableAccuUsageReport(val *AccuUsageReport) *NullableAccuUsageReport

func (NullableAccuUsageReport) Get

func (NullableAccuUsageReport) IsSet

func (v NullableAccuUsageReport) IsSet() bool

func (NullableAccuUsageReport) MarshalJSON

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

func (*NullableAccuUsageReport) Set

func (*NullableAccuUsageReport) UnmarshalJSON

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

func (*NullableAccuUsageReport) Unset

func (v *NullableAccuUsageReport) Unset()

type NullableAdditionalAccessInfo

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

func NewNullableAdditionalAccessInfo

func NewNullableAdditionalAccessInfo(val *AdditionalAccessInfo) *NullableAdditionalAccessInfo

func (NullableAdditionalAccessInfo) Get

func (NullableAdditionalAccessInfo) IsSet

func (NullableAdditionalAccessInfo) MarshalJSON

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

func (*NullableAdditionalAccessInfo) Set

func (*NullableAdditionalAccessInfo) UnmarshalJSON

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

func (*NullableAdditionalAccessInfo) Unset

func (v *NullableAdditionalAccessInfo) Unset()

type NullableAfSigProtocol

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

func NewNullableAfSigProtocol

func NewNullableAfSigProtocol(val *AfSigProtocol) *NullableAfSigProtocol

func (NullableAfSigProtocol) Get

func (NullableAfSigProtocol) IsSet

func (v NullableAfSigProtocol) IsSet() bool

func (NullableAfSigProtocol) MarshalJSON

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

func (*NullableAfSigProtocol) Set

func (v *NullableAfSigProtocol) Set(val *AfSigProtocol)

func (*NullableAfSigProtocol) UnmarshalJSON

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

func (*NullableAfSigProtocol) Unset

func (v *NullableAfSigProtocol) Unset()

type NullableAmbr

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

func NewNullableAmbr

func NewNullableAmbr(val *Ambr) *NullableAmbr

func (NullableAmbr) Get

func (v NullableAmbr) Get() *Ambr

func (NullableAmbr) IsSet

func (v NullableAmbr) IsSet() bool

func (NullableAmbr) MarshalJSON

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

func (*NullableAmbr) Set

func (v *NullableAmbr) Set(val *Ambr)

func (*NullableAmbr) UnmarshalJSON

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

func (*NullableAmbr) Unset

func (v *NullableAmbr) Unset()

type NullableAnGwAddress

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

func NewNullableAnGwAddress

func NewNullableAnGwAddress(val *AnGwAddress) *NullableAnGwAddress

func (NullableAnGwAddress) Get

func (NullableAnGwAddress) IsSet

func (v NullableAnGwAddress) IsSet() bool

func (NullableAnGwAddress) MarshalJSON

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

func (*NullableAnGwAddress) Set

func (v *NullableAnGwAddress) Set(val *AnGwAddress)

func (*NullableAnGwAddress) UnmarshalJSON

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

func (*NullableAnGwAddress) Unset

func (v *NullableAnGwAddress) Unset()

type NullableAppDetectionInfo

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

func NewNullableAppDetectionInfo

func NewNullableAppDetectionInfo(val *AppDetectionInfo) *NullableAppDetectionInfo

func (NullableAppDetectionInfo) Get

func (NullableAppDetectionInfo) IsSet

func (v NullableAppDetectionInfo) IsSet() bool

func (NullableAppDetectionInfo) MarshalJSON

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

func (*NullableAppDetectionInfo) Set

func (*NullableAppDetectionInfo) UnmarshalJSON

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

func (*NullableAppDetectionInfo) Unset

func (v *NullableAppDetectionInfo) Unset()

type NullableArp

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

func NewNullableArp

func NewNullableArp(val *Arp) *NullableArp

func (NullableArp) Get

func (v NullableArp) Get() *Arp

func (NullableArp) IsSet

func (v NullableArp) IsSet() bool

func (NullableArp) MarshalJSON

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

func (*NullableArp) Set

func (v *NullableArp) Set(val *Arp)

func (*NullableArp) UnmarshalJSON

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

func (*NullableArp) Unset

func (v *NullableArp) Unset()

type NullableAtsssCapability

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

func NewNullableAtsssCapability

func NewNullableAtsssCapability(val *AtsssCapability) *NullableAtsssCapability

func (NullableAtsssCapability) Get

func (NullableAtsssCapability) IsSet

func (v NullableAtsssCapability) IsSet() bool

func (NullableAtsssCapability) MarshalJSON

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

func (*NullableAtsssCapability) Set

func (*NullableAtsssCapability) UnmarshalJSON

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

func (*NullableAtsssCapability) Unset

func (v *NullableAtsssCapability) Unset()

type NullableAuthorizedDefaultQos

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

func NewNullableAuthorizedDefaultQos

func NewNullableAuthorizedDefaultQos(val *AuthorizedDefaultQos) *NullableAuthorizedDefaultQos

func (NullableAuthorizedDefaultQos) Get

func (NullableAuthorizedDefaultQos) IsSet

func (NullableAuthorizedDefaultQos) MarshalJSON

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

func (*NullableAuthorizedDefaultQos) Set

func (*NullableAuthorizedDefaultQos) UnmarshalJSON

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

func (*NullableAuthorizedDefaultQos) Unset

func (v *NullableAuthorizedDefaultQos) 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 NullableBridgeManagementContainer

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

func (NullableBridgeManagementContainer) Get

func (NullableBridgeManagementContainer) IsSet

func (NullableBridgeManagementContainer) MarshalJSON

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

func (*NullableBridgeManagementContainer) Set

func (*NullableBridgeManagementContainer) UnmarshalJSON

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

func (*NullableBridgeManagementContainer) Unset

type NullableCellGlobalId

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

func NewNullableCellGlobalId

func NewNullableCellGlobalId(val *CellGlobalId) *NullableCellGlobalId

func (NullableCellGlobalId) Get

func (NullableCellGlobalId) IsSet

func (v NullableCellGlobalId) IsSet() bool

func (NullableCellGlobalId) MarshalJSON

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

func (*NullableCellGlobalId) Set

func (v *NullableCellGlobalId) Set(val *CellGlobalId)

func (*NullableCellGlobalId) UnmarshalJSON

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

func (*NullableCellGlobalId) Unset

func (v *NullableCellGlobalId) Unset()

type NullableChargingData

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

func NewNullableChargingData

func NewNullableChargingData(val *ChargingData) *NullableChargingData

func (NullableChargingData) Get

func (NullableChargingData) IsSet

func (v NullableChargingData) IsSet() bool

func (NullableChargingData) MarshalJSON

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

func (*NullableChargingData) Set

func (v *NullableChargingData) Set(val *ChargingData)

func (*NullableChargingData) UnmarshalJSON

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

func (*NullableChargingData) Unset

func (v *NullableChargingData) Unset()

type NullableChargingInformation

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

func NewNullableChargingInformation

func NewNullableChargingInformation(val *ChargingInformation) *NullableChargingInformation

func (NullableChargingInformation) Get

func (NullableChargingInformation) IsSet

func (NullableChargingInformation) MarshalJSON

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

func (*NullableChargingInformation) Set

func (*NullableChargingInformation) UnmarshalJSON

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

func (*NullableChargingInformation) Unset

func (v *NullableChargingInformation) Unset()

type NullableConditionData

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

func NewNullableConditionData

func NewNullableConditionData(val *ConditionData) *NullableConditionData

func (NullableConditionData) Get

func (NullableConditionData) IsSet

func (v NullableConditionData) IsSet() bool

func (NullableConditionData) MarshalJSON

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

func (*NullableConditionData) Set

func (v *NullableConditionData) Set(val *ConditionData)

func (*NullableConditionData) UnmarshalJSON

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

func (*NullableConditionData) Unset

func (v *NullableConditionData) Unset()

type NullableCreditManagementStatus

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

func (NullableCreditManagementStatus) Get

func (NullableCreditManagementStatus) IsSet

func (NullableCreditManagementStatus) MarshalJSON

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

func (*NullableCreditManagementStatus) Set

func (*NullableCreditManagementStatus) UnmarshalJSON

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

func (*NullableCreditManagementStatus) Unset

func (v *NullableCreditManagementStatus) Unset()

type NullableDddTrafficDescriptor

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

func NewNullableDddTrafficDescriptor

func NewNullableDddTrafficDescriptor(val *DddTrafficDescriptor) *NullableDddTrafficDescriptor

func (NullableDddTrafficDescriptor) Get

func (NullableDddTrafficDescriptor) IsSet

func (NullableDddTrafficDescriptor) MarshalJSON

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

func (*NullableDddTrafficDescriptor) Set

func (*NullableDddTrafficDescriptor) UnmarshalJSON

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

func (*NullableDddTrafficDescriptor) Unset

func (v *NullableDddTrafficDescriptor) Unset()

type NullableDlDataDeliveryStatus

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

func NewNullableDlDataDeliveryStatus

func NewNullableDlDataDeliveryStatus(val *DlDataDeliveryStatus) *NullableDlDataDeliveryStatus

func (NullableDlDataDeliveryStatus) Get

func (NullableDlDataDeliveryStatus) IsSet

func (NullableDlDataDeliveryStatus) MarshalJSON

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

func (*NullableDlDataDeliveryStatus) Set

func (*NullableDlDataDeliveryStatus) UnmarshalJSON

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

func (*NullableDlDataDeliveryStatus) Unset

func (v *NullableDlDataDeliveryStatus) Unset()

type NullableDnaiChangeType

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

func NewNullableDnaiChangeType

func NewNullableDnaiChangeType(val *DnaiChangeType) *NullableDnaiChangeType

func (NullableDnaiChangeType) Get

func (NullableDnaiChangeType) IsSet

func (v NullableDnaiChangeType) IsSet() bool

func (NullableDnaiChangeType) MarshalJSON

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

func (*NullableDnaiChangeType) Set

func (*NullableDnaiChangeType) UnmarshalJSON

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

func (*NullableDnaiChangeType) Unset

func (v *NullableDnaiChangeType) Unset()

type NullableDnnSelectionMode

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

func NewNullableDnnSelectionMode

func NewNullableDnnSelectionMode(val *DnnSelectionMode) *NullableDnnSelectionMode

func (NullableDnnSelectionMode) Get

func (NullableDnnSelectionMode) IsSet

func (v NullableDnnSelectionMode) IsSet() bool

func (NullableDnnSelectionMode) MarshalJSON

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

func (*NullableDnnSelectionMode) Set

func (*NullableDnnSelectionMode) UnmarshalJSON

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

func (*NullableDnnSelectionMode) Unset

func (v *NullableDnnSelectionMode) Unset()

type NullableDownlinkDataNotificationControl

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

func (NullableDownlinkDataNotificationControl) Get

func (NullableDownlinkDataNotificationControl) IsSet

func (NullableDownlinkDataNotificationControl) MarshalJSON

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

func (*NullableDownlinkDataNotificationControl) Set

func (*NullableDownlinkDataNotificationControl) UnmarshalJSON

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

func (*NullableDownlinkDataNotificationControl) Unset

type NullableDownlinkDataNotificationControlRm

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

func (NullableDownlinkDataNotificationControlRm) Get

func (NullableDownlinkDataNotificationControlRm) IsSet

func (NullableDownlinkDataNotificationControlRm) MarshalJSON

func (*NullableDownlinkDataNotificationControlRm) Set

func (*NullableDownlinkDataNotificationControlRm) UnmarshalJSON

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

func (*NullableDownlinkDataNotificationControlRm) Unset

type NullableEasIpReplacementInfo

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

func NewNullableEasIpReplacementInfo

func NewNullableEasIpReplacementInfo(val *EasIpReplacementInfo) *NullableEasIpReplacementInfo

func (NullableEasIpReplacementInfo) Get

func (NullableEasIpReplacementInfo) IsSet

func (NullableEasIpReplacementInfo) MarshalJSON

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

func (*NullableEasIpReplacementInfo) Set

func (*NullableEasIpReplacementInfo) UnmarshalJSON

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

func (*NullableEasIpReplacementInfo) Unset

func (v *NullableEasIpReplacementInfo) Unset()

type NullableEasServerAddress

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

func NewNullableEasServerAddress

func NewNullableEasServerAddress(val *EasServerAddress) *NullableEasServerAddress

func (NullableEasServerAddress) Get

func (NullableEasServerAddress) IsSet

func (v NullableEasServerAddress) IsSet() bool

func (NullableEasServerAddress) MarshalJSON

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

func (*NullableEasServerAddress) Set

func (*NullableEasServerAddress) UnmarshalJSON

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

func (*NullableEasServerAddress) Unset

func (v *NullableEasServerAddress) Unset()

type NullableEcgi

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

func NewNullableEcgi

func NewNullableEcgi(val *Ecgi) *NullableEcgi

func (NullableEcgi) Get

func (v NullableEcgi) Get() *Ecgi

func (NullableEcgi) IsSet

func (v NullableEcgi) IsSet() bool

func (NullableEcgi) MarshalJSON

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

func (*NullableEcgi) Set

func (v *NullableEcgi) Set(val *Ecgi)

func (*NullableEcgi) UnmarshalJSON

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

func (*NullableEcgi) Unset

func (v *NullableEcgi) Unset()

type NullableErrorReport

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

func NewNullableErrorReport

func NewNullableErrorReport(val *ErrorReport) *NullableErrorReport

func (NullableErrorReport) Get

func (NullableErrorReport) IsSet

func (v NullableErrorReport) IsSet() bool

func (NullableErrorReport) MarshalJSON

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

func (*NullableErrorReport) Set

func (v *NullableErrorReport) Set(val *ErrorReport)

func (*NullableErrorReport) UnmarshalJSON

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

func (*NullableErrorReport) Unset

func (v *NullableErrorReport) Unset()

type NullableEthFlowDescription

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

func NewNullableEthFlowDescription

func NewNullableEthFlowDescription(val *EthFlowDescription) *NullableEthFlowDescription

func (NullableEthFlowDescription) Get

func (NullableEthFlowDescription) IsSet

func (v NullableEthFlowDescription) IsSet() bool

func (NullableEthFlowDescription) MarshalJSON

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

func (*NullableEthFlowDescription) Set

func (*NullableEthFlowDescription) UnmarshalJSON

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

func (*NullableEthFlowDescription) Unset

func (v *NullableEthFlowDescription) Unset()

type NullableEutraLocation

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

func NewNullableEutraLocation

func NewNullableEutraLocation(val *EutraLocation) *NullableEutraLocation

func (NullableEutraLocation) Get

func (NullableEutraLocation) IsSet

func (v NullableEutraLocation) IsSet() bool

func (NullableEutraLocation) MarshalJSON

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

func (*NullableEutraLocation) Set

func (v *NullableEutraLocation) Set(val *EutraLocation)

func (*NullableEutraLocation) UnmarshalJSON

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

func (*NullableEutraLocation) Unset

func (v *NullableEutraLocation) Unset()

type NullableFailureCause

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

func NewNullableFailureCause

func NewNullableFailureCause(val *FailureCause) *NullableFailureCause

func (NullableFailureCause) Get

func (NullableFailureCause) IsSet

func (v NullableFailureCause) IsSet() bool

func (NullableFailureCause) MarshalJSON

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

func (*NullableFailureCause) Set

func (v *NullableFailureCause) Set(val *FailureCause)

func (*NullableFailureCause) UnmarshalJSON

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

func (*NullableFailureCause) Unset

func (v *NullableFailureCause) Unset()

type NullableFailureCode

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

func NewNullableFailureCode

func NewNullableFailureCode(val *FailureCode) *NullableFailureCode

func (NullableFailureCode) Get

func (NullableFailureCode) IsSet

func (v NullableFailureCode) IsSet() bool

func (NullableFailureCode) MarshalJSON

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

func (*NullableFailureCode) Set

func (v *NullableFailureCode) Set(val *FailureCode)

func (*NullableFailureCode) UnmarshalJSON

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

func (*NullableFailureCode) Unset

func (v *NullableFailureCode) Unset()

type NullableFinalUnitAction

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

func NewNullableFinalUnitAction

func NewNullableFinalUnitAction(val *FinalUnitAction) *NullableFinalUnitAction

func (NullableFinalUnitAction) Get

func (NullableFinalUnitAction) IsSet

func (v NullableFinalUnitAction) IsSet() bool

func (NullableFinalUnitAction) MarshalJSON

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

func (*NullableFinalUnitAction) Set

func (*NullableFinalUnitAction) UnmarshalJSON

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

func (*NullableFinalUnitAction) Unset

func (v *NullableFinalUnitAction) Unset()

type NullableFloat32

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

func NewNullableFloat32

func NewNullableFloat32(val *float32) *NullableFloat32

func (NullableFloat32) Get

func (v NullableFloat32) Get() *float32

func (NullableFloat32) IsSet

func (v NullableFloat32) IsSet() bool

func (NullableFloat32) MarshalJSON

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

func (*NullableFloat32) Set

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

func (*NullableFloat32) UnmarshalJSON

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

func (*NullableFloat32) Unset

func (v *NullableFloat32) Unset()

type NullableFloat64

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

func NewNullableFloat64

func NewNullableFloat64(val *float64) *NullableFloat64

func (NullableFloat64) Get

func (v NullableFloat64) Get() *float64

func (NullableFloat64) IsSet

func (v NullableFloat64) IsSet() bool

func (NullableFloat64) MarshalJSON

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

func (*NullableFloat64) Set

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

func (*NullableFloat64) UnmarshalJSON

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

func (*NullableFloat64) Unset

func (v *NullableFloat64) Unset()

type NullableFlowDirection

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

func NewNullableFlowDirection

func NewNullableFlowDirection(val *FlowDirection) *NullableFlowDirection

func (NullableFlowDirection) Get

func (NullableFlowDirection) IsSet

func (v NullableFlowDirection) IsSet() bool

func (NullableFlowDirection) MarshalJSON

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

func (*NullableFlowDirection) Set

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

func (*NullableFlowDirection) UnmarshalJSON

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

func (*NullableFlowDirection) Unset

func (v *NullableFlowDirection) Unset()

type NullableFlowDirectionRm

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

func NewNullableFlowDirectionRm

func NewNullableFlowDirectionRm(val *FlowDirectionRm) *NullableFlowDirectionRm

func (NullableFlowDirectionRm) Get

func (NullableFlowDirectionRm) IsSet

func (v NullableFlowDirectionRm) IsSet() bool

func (NullableFlowDirectionRm) MarshalJSON

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

func (*NullableFlowDirectionRm) Set

func (*NullableFlowDirectionRm) UnmarshalJSON

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

func (*NullableFlowDirectionRm) Unset

func (v *NullableFlowDirectionRm) Unset()

type NullableFlowInformation

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

func NewNullableFlowInformation

func NewNullableFlowInformation(val *FlowInformation) *NullableFlowInformation

func (NullableFlowInformation) Get

func (NullableFlowInformation) IsSet

func (v NullableFlowInformation) IsSet() bool

func (NullableFlowInformation) MarshalJSON

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

func (*NullableFlowInformation) Set

func (*NullableFlowInformation) UnmarshalJSON

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

func (*NullableFlowInformation) Unset

func (v *NullableFlowInformation) Unset()

type NullableFlowStatus

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

func NewNullableFlowStatus

func NewNullableFlowStatus(val *FlowStatus) *NullableFlowStatus

func (NullableFlowStatus) Get

func (v NullableFlowStatus) Get() *FlowStatus

func (NullableFlowStatus) IsSet

func (v NullableFlowStatus) IsSet() bool

func (NullableFlowStatus) MarshalJSON

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

func (*NullableFlowStatus) Set

func (v *NullableFlowStatus) Set(val *FlowStatus)

func (*NullableFlowStatus) UnmarshalJSON

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

func (*NullableFlowStatus) Unset

func (v *NullableFlowStatus) Unset()

type NullableGNbId

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

func NewNullableGNbId

func NewNullableGNbId(val *GNbId) *NullableGNbId

func (NullableGNbId) Get

func (v NullableGNbId) Get() *GNbId

func (NullableGNbId) IsSet

func (v NullableGNbId) IsSet() bool

func (NullableGNbId) MarshalJSON

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

func (*NullableGNbId) Set

func (v *NullableGNbId) Set(val *GNbId)

func (*NullableGNbId) UnmarshalJSON

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

func (*NullableGNbId) Unset

func (v *NullableGNbId) Unset()

type NullableGeraLocation

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

func NewNullableGeraLocation

func NewNullableGeraLocation(val *GeraLocation) *NullableGeraLocation

func (NullableGeraLocation) Get

func (NullableGeraLocation) IsSet

func (v NullableGeraLocation) IsSet() bool

func (NullableGeraLocation) MarshalJSON

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

func (*NullableGeraLocation) Set

func (v *NullableGeraLocation) Set(val *GeraLocation)

func (*NullableGeraLocation) UnmarshalJSON

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

func (*NullableGeraLocation) Unset

func (v *NullableGeraLocation) Unset()

type NullableGlobalRanNodeId

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

func NewNullableGlobalRanNodeId

func NewNullableGlobalRanNodeId(val *GlobalRanNodeId) *NullableGlobalRanNodeId

func (NullableGlobalRanNodeId) Get

func (NullableGlobalRanNodeId) IsSet

func (v NullableGlobalRanNodeId) IsSet() bool

func (NullableGlobalRanNodeId) MarshalJSON

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

func (*NullableGlobalRanNodeId) Set

func (*NullableGlobalRanNodeId) UnmarshalJSON

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

func (*NullableGlobalRanNodeId) Unset

func (v *NullableGlobalRanNodeId) Unset()

type NullableGuami

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

func NewNullableGuami

func NewNullableGuami(val *Guami) *NullableGuami

func (NullableGuami) Get

func (v NullableGuami) Get() *Guami

func (NullableGuami) IsSet

func (v NullableGuami) IsSet() bool

func (NullableGuami) MarshalJSON

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

func (*NullableGuami) Set

func (v *NullableGuami) Set(val *Guami)

func (*NullableGuami) UnmarshalJSON

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

func (*NullableGuami) Unset

func (v *NullableGuami) Unset()

type NullableHfcNodeId

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

func NewNullableHfcNodeId

func NewNullableHfcNodeId(val *HfcNodeId) *NullableHfcNodeId

func (NullableHfcNodeId) Get

func (v NullableHfcNodeId) Get() *HfcNodeId

func (NullableHfcNodeId) IsSet

func (v NullableHfcNodeId) IsSet() bool

func (NullableHfcNodeId) MarshalJSON

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

func (*NullableHfcNodeId) Set

func (v *NullableHfcNodeId) Set(val *HfcNodeId)

func (*NullableHfcNodeId) UnmarshalJSON

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

func (*NullableHfcNodeId) Unset

func (v *NullableHfcNodeId) Unset()

type NullableInt

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

func NewNullableInt

func NewNullableInt(val *int) *NullableInt

func (NullableInt) Get

func (v NullableInt) Get() *int

func (NullableInt) IsSet

func (v NullableInt) IsSet() bool

func (NullableInt) MarshalJSON

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

func (*NullableInt) Set

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

func (*NullableInt) UnmarshalJSON

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

func (*NullableInt) Unset

func (v *NullableInt) Unset()

type NullableInt32

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

func NewNullableInt32

func NewNullableInt32(val *int32) *NullableInt32

func (NullableInt32) Get

func (v NullableInt32) Get() *int32

func (NullableInt32) IsSet

func (v NullableInt32) IsSet() bool

func (NullableInt32) MarshalJSON

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

func (*NullableInt32) Set

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

func (*NullableInt32) UnmarshalJSON

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

func (*NullableInt32) Unset

func (v *NullableInt32) Unset()

type NullableInt64

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

func NewNullableInt64

func NewNullableInt64(val *int64) *NullableInt64

func (NullableInt64) Get

func (v NullableInt64) Get() *int64

func (NullableInt64) IsSet

func (v NullableInt64) IsSet() bool

func (NullableInt64) MarshalJSON

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

func (*NullableInt64) Set

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

func (*NullableInt64) UnmarshalJSON

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

func (*NullableInt64) Unset

func (v *NullableInt64) Unset()

type NullableInvalidParam

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

func NewNullableInvalidParam

func NewNullableInvalidParam(val *InvalidParam) *NullableInvalidParam

func (NullableInvalidParam) Get

func (NullableInvalidParam) IsSet

func (v NullableInvalidParam) IsSet() bool

func (NullableInvalidParam) MarshalJSON

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

func (*NullableInvalidParam) Set

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

func (*NullableInvalidParam) UnmarshalJSON

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

func (*NullableInvalidParam) Unset

func (v *NullableInvalidParam) Unset()

type NullableIpAddr

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

func NewNullableIpAddr

func NewNullableIpAddr(val *IpAddr) *NullableIpAddr

func (NullableIpAddr) Get

func (v NullableIpAddr) Get() *IpAddr

func (NullableIpAddr) IsSet

func (v NullableIpAddr) IsSet() bool

func (NullableIpAddr) MarshalJSON

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

func (*NullableIpAddr) Set

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

func (*NullableIpAddr) UnmarshalJSON

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

func (*NullableIpAddr) Unset

func (v *NullableIpAddr) Unset()

type NullableIpMulticastAddressInfo

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

func (NullableIpMulticastAddressInfo) Get

func (NullableIpMulticastAddressInfo) IsSet

func (NullableIpMulticastAddressInfo) MarshalJSON

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

func (*NullableIpMulticastAddressInfo) Set

func (*NullableIpMulticastAddressInfo) UnmarshalJSON

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

func (*NullableIpMulticastAddressInfo) Unset

func (v *NullableIpMulticastAddressInfo) Unset()

type NullableIpv6Addr

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

func NewNullableIpv6Addr

func NewNullableIpv6Addr(val *Ipv6Addr) *NullableIpv6Addr

func (NullableIpv6Addr) Get

func (v NullableIpv6Addr) Get() *Ipv6Addr

func (NullableIpv6Addr) IsSet

func (v NullableIpv6Addr) IsSet() bool

func (NullableIpv6Addr) MarshalJSON

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

func (*NullableIpv6Addr) Set

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

func (*NullableIpv6Addr) UnmarshalJSON

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

func (*NullableIpv6Addr) Unset

func (v *NullableIpv6Addr) Unset()

type NullableIpv6Prefix

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

func NewNullableIpv6Prefix

func NewNullableIpv6Prefix(val *Ipv6Prefix) *NullableIpv6Prefix

func (NullableIpv6Prefix) Get

func (v NullableIpv6Prefix) Get() *Ipv6Prefix

func (NullableIpv6Prefix) IsSet

func (v NullableIpv6Prefix) IsSet() bool

func (NullableIpv6Prefix) MarshalJSON

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

func (*NullableIpv6Prefix) Set

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

func (*NullableIpv6Prefix) UnmarshalJSON

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

func (*NullableIpv6Prefix) Unset

func (v *NullableIpv6Prefix) Unset()

type NullableLineType

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

func NewNullableLineType

func NewNullableLineType(val *LineType) *NullableLineType

func (NullableLineType) Get

func (v NullableLineType) Get() *LineType

func (NullableLineType) IsSet

func (v NullableLineType) IsSet() bool

func (NullableLineType) MarshalJSON

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

func (*NullableLineType) Set

func (v *NullableLineType) Set(val *LineType)

func (*NullableLineType) UnmarshalJSON

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

func (*NullableLineType) Unset

func (v *NullableLineType) Unset()

type NullableLocationAreaId

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

func NewNullableLocationAreaId

func NewNullableLocationAreaId(val *LocationAreaId) *NullableLocationAreaId

func (NullableLocationAreaId) Get

func (NullableLocationAreaId) IsSet

func (v NullableLocationAreaId) IsSet() bool

func (NullableLocationAreaId) MarshalJSON

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

func (*NullableLocationAreaId) Set

func (*NullableLocationAreaId) UnmarshalJSON

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

func (*NullableLocationAreaId) Unset

func (v *NullableLocationAreaId) Unset()

type NullableMaPduIndication

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

func NewNullableMaPduIndication

func NewNullableMaPduIndication(val *MaPduIndication) *NullableMaPduIndication

func (NullableMaPduIndication) Get

func (NullableMaPduIndication) IsSet

func (v NullableMaPduIndication) IsSet() bool

func (NullableMaPduIndication) MarshalJSON

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

func (*NullableMaPduIndication) Set

func (*NullableMaPduIndication) UnmarshalJSON

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

func (*NullableMaPduIndication) Unset

func (v *NullableMaPduIndication) Unset()

type NullableMeteringMethod

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

func NewNullableMeteringMethod

func NewNullableMeteringMethod(val *MeteringMethod) *NullableMeteringMethod

func (NullableMeteringMethod) Get

func (NullableMeteringMethod) IsSet

func (v NullableMeteringMethod) IsSet() bool

func (NullableMeteringMethod) MarshalJSON

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

func (*NullableMeteringMethod) Set

func (*NullableMeteringMethod) UnmarshalJSON

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

func (*NullableMeteringMethod) Unset

func (v *NullableMeteringMethod) Unset()

type NullableMulticastAccessControl

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

func (NullableMulticastAccessControl) Get

func (NullableMulticastAccessControl) IsSet

func (NullableMulticastAccessControl) MarshalJSON

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

func (*NullableMulticastAccessControl) Set

func (*NullableMulticastAccessControl) UnmarshalJSON

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

func (*NullableMulticastAccessControl) Unset

func (v *NullableMulticastAccessControl) Unset()

type NullableN3gaLocation

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

func NewNullableN3gaLocation

func NewNullableN3gaLocation(val *N3gaLocation) *NullableN3gaLocation

func (NullableN3gaLocation) Get

func (NullableN3gaLocation) IsSet

func (v NullableN3gaLocation) IsSet() bool

func (NullableN3gaLocation) MarshalJSON

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

func (*NullableN3gaLocation) Set

func (v *NullableN3gaLocation) Set(val *N3gaLocation)

func (*NullableN3gaLocation) UnmarshalJSON

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

func (*NullableN3gaLocation) Unset

func (v *NullableN3gaLocation) Unset()

type NullableNFType

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

func NewNullableNFType

func NewNullableNFType(val *NFType) *NullableNFType

func (NullableNFType) Get

func (v NullableNFType) Get() *NFType

func (NullableNFType) IsSet

func (v NullableNFType) IsSet() bool

func (NullableNFType) MarshalJSON

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

func (*NullableNFType) Set

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

func (*NullableNFType) UnmarshalJSON

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

func (*NullableNFType) Unset

func (v *NullableNFType) Unset()

type NullableNcgi

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

func NewNullableNcgi

func NewNullableNcgi(val *Ncgi) *NullableNcgi

func (NullableNcgi) Get

func (v NullableNcgi) Get() *Ncgi

func (NullableNcgi) IsSet

func (v NullableNcgi) IsSet() bool

func (NullableNcgi) MarshalJSON

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

func (*NullableNcgi) Set

func (v *NullableNcgi) Set(val *Ncgi)

func (*NullableNcgi) UnmarshalJSON

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

func (*NullableNcgi) Unset

func (v *NullableNcgi) Unset()

type NullableNetLocAccessSupport

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

func NewNullableNetLocAccessSupport

func NewNullableNetLocAccessSupport(val *NetLocAccessSupport) *NullableNetLocAccessSupport

func (NullableNetLocAccessSupport) Get

func (NullableNetLocAccessSupport) IsSet

func (NullableNetLocAccessSupport) MarshalJSON

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

func (*NullableNetLocAccessSupport) Set

func (*NullableNetLocAccessSupport) UnmarshalJSON

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

func (*NullableNetLocAccessSupport) Unset

func (v *NullableNetLocAccessSupport) Unset()

type NullableNgApCause

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

func NewNullableNgApCause

func NewNullableNgApCause(val *NgApCause) *NullableNgApCause

func (NullableNgApCause) Get

func (v NullableNgApCause) Get() *NgApCause

func (NullableNgApCause) IsSet

func (v NullableNgApCause) IsSet() bool

func (NullableNgApCause) MarshalJSON

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

func (*NullableNgApCause) Set

func (v *NullableNgApCause) Set(val *NgApCause)

func (*NullableNgApCause) UnmarshalJSON

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

func (*NullableNgApCause) Unset

func (v *NullableNgApCause) Unset()

type NullableNotificationControlIndication

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

func (NullableNotificationControlIndication) Get

func (NullableNotificationControlIndication) IsSet

func (NullableNotificationControlIndication) MarshalJSON

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

func (*NullableNotificationControlIndication) Set

func (*NullableNotificationControlIndication) UnmarshalJSON

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

func (*NullableNotificationControlIndication) Unset

type NullableNrLocation

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

func NewNullableNrLocation

func NewNullableNrLocation(val *NrLocation) *NullableNrLocation

func (NullableNrLocation) Get

func (v NullableNrLocation) Get() *NrLocation

func (NullableNrLocation) IsSet

func (v NullableNrLocation) IsSet() bool

func (NullableNrLocation) MarshalJSON

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

func (*NullableNrLocation) Set

func (v *NullableNrLocation) Set(val *NrLocation)

func (*NullableNrLocation) UnmarshalJSON

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

func (*NullableNrLocation) Unset

func (v *NullableNrLocation) Unset()

type NullableNullValue

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

func NewNullableNullValue

func NewNullableNullValue(val *NullValue) *NullableNullValue

func (NullableNullValue) Get

func (v NullableNullValue) Get() *NullValue

func (NullableNullValue) IsSet

func (v NullableNullValue) IsSet() bool

func (NullableNullValue) MarshalJSON

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

func (*NullableNullValue) Set

func (v *NullableNullValue) Set(val *NullValue)

func (*NullableNullValue) UnmarshalJSON

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

func (*NullableNullValue) Unset

func (v *NullableNullValue) Unset()

type NullableNwdafData

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

func NewNullableNwdafData

func NewNullableNwdafData(val *NwdafData) *NullableNwdafData

func (NullableNwdafData) Get

func (v NullableNwdafData) Get() *NwdafData

func (NullableNwdafData) IsSet

func (v NullableNwdafData) IsSet() bool

func (NullableNwdafData) MarshalJSON

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

func (*NullableNwdafData) Set

func (v *NullableNwdafData) Set(val *NwdafData)

func (*NullableNwdafData) UnmarshalJSON

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

func (*NullableNwdafData) Unset

func (v *NullableNwdafData) Unset()

type NullableNwdafEvent

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

func NewNullableNwdafEvent

func NewNullableNwdafEvent(val *NwdafEvent) *NullableNwdafEvent

func (NullableNwdafEvent) Get

func (v NullableNwdafEvent) Get() *NwdafEvent

func (NullableNwdafEvent) IsSet

func (v NullableNwdafEvent) IsSet() bool

func (NullableNwdafEvent) MarshalJSON

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

func (*NullableNwdafEvent) Set

func (v *NullableNwdafEvent) Set(val *NwdafEvent)

func (*NullableNwdafEvent) UnmarshalJSON

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

func (*NullableNwdafEvent) Unset

func (v *NullableNwdafEvent) Unset()

type NullablePacketFilterInfo

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

func NewNullablePacketFilterInfo

func NewNullablePacketFilterInfo(val *PacketFilterInfo) *NullablePacketFilterInfo

func (NullablePacketFilterInfo) Get

func (NullablePacketFilterInfo) IsSet

func (v NullablePacketFilterInfo) IsSet() bool

func (NullablePacketFilterInfo) MarshalJSON

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

func (*NullablePacketFilterInfo) Set

func (*NullablePacketFilterInfo) UnmarshalJSON

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

func (*NullablePacketFilterInfo) Unset

func (v *NullablePacketFilterInfo) Unset()

type NullablePartialSuccessReport

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

func NewNullablePartialSuccessReport

func NewNullablePartialSuccessReport(val *PartialSuccessReport) *NullablePartialSuccessReport

func (NullablePartialSuccessReport) Get

func (NullablePartialSuccessReport) IsSet

func (NullablePartialSuccessReport) MarshalJSON

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

func (*NullablePartialSuccessReport) Set

func (*NullablePartialSuccessReport) UnmarshalJSON

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

func (*NullablePartialSuccessReport) Unset

func (v *NullablePartialSuccessReport) Unset()

type NullablePccRule

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

func NewNullablePccRule

func NewNullablePccRule(val *PccRule) *NullablePccRule

func (NullablePccRule) Get

func (v NullablePccRule) Get() *PccRule

func (NullablePccRule) IsSet

func (v NullablePccRule) IsSet() bool

func (NullablePccRule) MarshalJSON

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

func (*NullablePccRule) Set

func (v *NullablePccRule) Set(val *PccRule)

func (*NullablePccRule) UnmarshalJSON

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

func (*NullablePccRule) Unset

func (v *NullablePccRule) Unset()

type NullablePcfUeCallbackInfo

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

func NewNullablePcfUeCallbackInfo

func NewNullablePcfUeCallbackInfo(val *PcfUeCallbackInfo) *NullablePcfUeCallbackInfo

func (NullablePcfUeCallbackInfo) Get

func (NullablePcfUeCallbackInfo) IsSet

func (v NullablePcfUeCallbackInfo) IsSet() bool

func (NullablePcfUeCallbackInfo) MarshalJSON

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

func (*NullablePcfUeCallbackInfo) Set

func (*NullablePcfUeCallbackInfo) UnmarshalJSON

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

func (*NullablePcfUeCallbackInfo) Unset

func (v *NullablePcfUeCallbackInfo) Unset()

type NullablePduSessionRelCause

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

func NewNullablePduSessionRelCause

func NewNullablePduSessionRelCause(val *PduSessionRelCause) *NullablePduSessionRelCause

func (NullablePduSessionRelCause) Get

func (NullablePduSessionRelCause) IsSet

func (v NullablePduSessionRelCause) IsSet() bool

func (NullablePduSessionRelCause) MarshalJSON

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

func (*NullablePduSessionRelCause) Set

func (*NullablePduSessionRelCause) UnmarshalJSON

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

func (*NullablePduSessionRelCause) Unset

func (v *NullablePduSessionRelCause) Unset()

type NullablePduSessionType

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

func NewNullablePduSessionType

func NewNullablePduSessionType(val *PduSessionType) *NullablePduSessionType

func (NullablePduSessionType) Get

func (NullablePduSessionType) IsSet

func (v NullablePduSessionType) IsSet() bool

func (NullablePduSessionType) MarshalJSON

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

func (*NullablePduSessionType) Set

func (*NullablePduSessionType) UnmarshalJSON

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

func (*NullablePduSessionType) Unset

func (v *NullablePduSessionType) Unset()

type NullablePlmnId

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

func NewNullablePlmnId

func NewNullablePlmnId(val *PlmnId) *NullablePlmnId

func (NullablePlmnId) Get

func (v NullablePlmnId) Get() *PlmnId

func (NullablePlmnId) IsSet

func (v NullablePlmnId) IsSet() bool

func (NullablePlmnId) MarshalJSON

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

func (*NullablePlmnId) Set

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

func (*NullablePlmnId) UnmarshalJSON

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

func (*NullablePlmnId) Unset

func (v *NullablePlmnId) Unset()

type NullablePlmnIdNid

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

func NewNullablePlmnIdNid

func NewNullablePlmnIdNid(val *PlmnIdNid) *NullablePlmnIdNid

func (NullablePlmnIdNid) Get

func (v NullablePlmnIdNid) Get() *PlmnIdNid

func (NullablePlmnIdNid) IsSet

func (v NullablePlmnIdNid) IsSet() bool

func (NullablePlmnIdNid) MarshalJSON

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

func (*NullablePlmnIdNid) Set

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

func (*NullablePlmnIdNid) UnmarshalJSON

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

func (*NullablePlmnIdNid) Unset

func (v *NullablePlmnIdNid) Unset()

type NullablePolicyControlRequestTrigger

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

func (NullablePolicyControlRequestTrigger) Get

func (NullablePolicyControlRequestTrigger) IsSet

func (NullablePolicyControlRequestTrigger) MarshalJSON

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

func (*NullablePolicyControlRequestTrigger) Set

func (*NullablePolicyControlRequestTrigger) UnmarshalJSON

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

func (*NullablePolicyControlRequestTrigger) Unset

type NullablePolicyDecisionFailureCode

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

func (NullablePolicyDecisionFailureCode) Get

func (NullablePolicyDecisionFailureCode) IsSet

func (NullablePolicyDecisionFailureCode) MarshalJSON

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

func (*NullablePolicyDecisionFailureCode) Set

func (*NullablePolicyDecisionFailureCode) UnmarshalJSON

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

func (*NullablePolicyDecisionFailureCode) Unset

type NullablePortManagementContainer

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

func (NullablePortManagementContainer) Get

func (NullablePortManagementContainer) IsSet

func (NullablePortManagementContainer) MarshalJSON

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

func (*NullablePortManagementContainer) Set

func (*NullablePortManagementContainer) UnmarshalJSON

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

func (*NullablePortManagementContainer) Unset

type NullablePreemptionCapability

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

func NewNullablePreemptionCapability

func NewNullablePreemptionCapability(val *PreemptionCapability) *NullablePreemptionCapability

func (NullablePreemptionCapability) Get

func (NullablePreemptionCapability) IsSet

func (NullablePreemptionCapability) MarshalJSON

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

func (*NullablePreemptionCapability) Set

func (*NullablePreemptionCapability) UnmarshalJSON

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

func (*NullablePreemptionCapability) Unset

func (v *NullablePreemptionCapability) Unset()

type NullablePreemptionVulnerability

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

func (NullablePreemptionVulnerability) Get

func (NullablePreemptionVulnerability) IsSet

func (NullablePreemptionVulnerability) MarshalJSON

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

func (*NullablePreemptionVulnerability) Set

func (*NullablePreemptionVulnerability) UnmarshalJSON

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

func (*NullablePreemptionVulnerability) Unset

type NullablePresenceInfo

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

func NewNullablePresenceInfo

func NewNullablePresenceInfo(val *PresenceInfo) *NullablePresenceInfo

func (NullablePresenceInfo) Get

func (NullablePresenceInfo) IsSet

func (v NullablePresenceInfo) IsSet() bool

func (NullablePresenceInfo) MarshalJSON

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

func (*NullablePresenceInfo) Set

func (v *NullablePresenceInfo) Set(val *PresenceInfo)

func (*NullablePresenceInfo) UnmarshalJSON

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

func (*NullablePresenceInfo) Unset

func (v *NullablePresenceInfo) Unset()

type NullablePresenceInfoRm

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

func NewNullablePresenceInfoRm

func NewNullablePresenceInfoRm(val *PresenceInfoRm) *NullablePresenceInfoRm

func (NullablePresenceInfoRm) Get

func (NullablePresenceInfoRm) IsSet

func (v NullablePresenceInfoRm) IsSet() bool

func (NullablePresenceInfoRm) MarshalJSON

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

func (*NullablePresenceInfoRm) Set

func (*NullablePresenceInfoRm) UnmarshalJSON

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

func (*NullablePresenceInfoRm) Unset

func (v *NullablePresenceInfoRm) Unset()

type NullablePresenceState

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

func NewNullablePresenceState

func NewNullablePresenceState(val *PresenceState) *NullablePresenceState

func (NullablePresenceState) Get

func (NullablePresenceState) IsSet

func (v NullablePresenceState) IsSet() bool

func (NullablePresenceState) MarshalJSON

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

func (*NullablePresenceState) Set

func (v *NullablePresenceState) Set(val *PresenceState)

func (*NullablePresenceState) UnmarshalJSON

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

func (*NullablePresenceState) Unset

func (v *NullablePresenceState) 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 NullableQosCharacteristics

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

func NewNullableQosCharacteristics

func NewNullableQosCharacteristics(val *QosCharacteristics) *NullableQosCharacteristics

func (NullableQosCharacteristics) Get

func (NullableQosCharacteristics) IsSet

func (v NullableQosCharacteristics) IsSet() bool

func (NullableQosCharacteristics) MarshalJSON

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

func (*NullableQosCharacteristics) Set

func (*NullableQosCharacteristics) UnmarshalJSON

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

func (*NullableQosCharacteristics) Unset

func (v *NullableQosCharacteristics) Unset()

type NullableQosData

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

func NewNullableQosData

func NewNullableQosData(val *QosData) *NullableQosData

func (NullableQosData) Get

func (v NullableQosData) Get() *QosData

func (NullableQosData) IsSet

func (v NullableQosData) IsSet() bool

func (NullableQosData) MarshalJSON

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

func (*NullableQosData) Set

func (v *NullableQosData) Set(val *QosData)

func (*NullableQosData) UnmarshalJSON

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

func (*NullableQosData) Unset

func (v *NullableQosData) Unset()

type NullableQosFlowUsage

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

func NewNullableQosFlowUsage

func NewNullableQosFlowUsage(val *QosFlowUsage) *NullableQosFlowUsage

func (NullableQosFlowUsage) Get

func (NullableQosFlowUsage) IsSet

func (v NullableQosFlowUsage) IsSet() bool

func (NullableQosFlowUsage) MarshalJSON

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

func (*NullableQosFlowUsage) Set

func (v *NullableQosFlowUsage) Set(val *QosFlowUsage)

func (*NullableQosFlowUsage) UnmarshalJSON

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

func (*NullableQosFlowUsage) Unset

func (v *NullableQosFlowUsage) Unset()

type NullableQosMonitoringData

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

func NewNullableQosMonitoringData

func NewNullableQosMonitoringData(val *QosMonitoringData) *NullableQosMonitoringData

func (NullableQosMonitoringData) Get

func (NullableQosMonitoringData) IsSet

func (v NullableQosMonitoringData) IsSet() bool

func (NullableQosMonitoringData) MarshalJSON

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

func (*NullableQosMonitoringData) Set

func (*NullableQosMonitoringData) UnmarshalJSON

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

func (*NullableQosMonitoringData) Unset

func (v *NullableQosMonitoringData) 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 NullableQosNotifType

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

func NewNullableQosNotifType

func NewNullableQosNotifType(val *QosNotifType) *NullableQosNotifType

func (NullableQosNotifType) Get

func (NullableQosNotifType) IsSet

func (v NullableQosNotifType) IsSet() bool

func (NullableQosNotifType) MarshalJSON

func (v NullableQosNotifType) MarshalJSON() ([]byte, error)

func (*NullableQosNotifType) Set

func (v *NullableQosNotifType) Set(val *QosNotifType)

func (*NullableQosNotifType) UnmarshalJSON

func (v *NullableQosNotifType) UnmarshalJSON(src []byte) error

func (*NullableQosNotifType) Unset

func (v *NullableQosNotifType) Unset()

type NullableQosNotificationControlInfo

type NullableQosNotificationControlInfo struct {
	// contains filtered or unexported fields
}

func (NullableQosNotificationControlInfo) Get

func (NullableQosNotificationControlInfo) IsSet

func (NullableQosNotificationControlInfo) MarshalJSON

func (v NullableQosNotificationControlInfo) MarshalJSON() ([]byte, error)

func (*NullableQosNotificationControlInfo) Set

func (*NullableQosNotificationControlInfo) UnmarshalJSON

func (v *NullableQosNotificationControlInfo) UnmarshalJSON(src []byte) error

func (*NullableQosNotificationControlInfo) Unset

type NullableQosResourceType

type NullableQosResourceType struct {
	// contains filtered or unexported fields
}

func NewNullableQosResourceType

func NewNullableQosResourceType(val *QosResourceType) *NullableQosResourceType

func (NullableQosResourceType) Get

func (NullableQosResourceType) IsSet

func (v NullableQosResourceType) IsSet() bool

func (NullableQosResourceType) MarshalJSON

func (v NullableQosResourceType) MarshalJSON() ([]byte, error)

func (*NullableQosResourceType) Set

func (*NullableQosResourceType) UnmarshalJSON

func (v *NullableQosResourceType) UnmarshalJSON(src []byte) error

func (*NullableQosResourceType) Unset

func (v *NullableQosResourceType) Unset()

type NullableRanNasRelCause

type NullableRanNasRelCause struct {
	// contains filtered or unexported fields
}

func NewNullableRanNasRelCause

func NewNullableRanNasRelCause(val *RanNasRelCause) *NullableRanNasRelCause

func (NullableRanNasRelCause) Get

func (NullableRanNasRelCause) IsSet

func (v NullableRanNasRelCause) IsSet() bool

func (NullableRanNasRelCause) MarshalJSON

func (v NullableRanNasRelCause) MarshalJSON() ([]byte, error)

func (*NullableRanNasRelCause) Set

func (*NullableRanNasRelCause) UnmarshalJSON

func (v *NullableRanNasRelCause) UnmarshalJSON(src []byte) error

func (*NullableRanNasRelCause) Unset

func (v *NullableRanNasRelCause) 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 NullableRedirectAddressType

type NullableRedirectAddressType struct {
	// contains filtered or unexported fields
}

func NewNullableRedirectAddressType

func NewNullableRedirectAddressType(val *RedirectAddressType) *NullableRedirectAddressType

func (NullableRedirectAddressType) Get

func (NullableRedirectAddressType) IsSet

func (NullableRedirectAddressType) MarshalJSON

func (v NullableRedirectAddressType) MarshalJSON() ([]byte, error)

func (*NullableRedirectAddressType) Set

func (*NullableRedirectAddressType) UnmarshalJSON

func (v *NullableRedirectAddressType) UnmarshalJSON(src []byte) error

func (*NullableRedirectAddressType) Unset

func (v *NullableRedirectAddressType) Unset()

type NullableRedirectInformation

type NullableRedirectInformation struct {
	// contains filtered or unexported fields
}

func NewNullableRedirectInformation

func NewNullableRedirectInformation(val *RedirectInformation) *NullableRedirectInformation

func (NullableRedirectInformation) Get

func (NullableRedirectInformation) IsSet

func (NullableRedirectInformation) MarshalJSON

func (v NullableRedirectInformation) MarshalJSON() ([]byte, error)

func (*NullableRedirectInformation) Set

func (*NullableRedirectInformation) UnmarshalJSON

func (v *NullableRedirectInformation) UnmarshalJSON(src []byte) error

func (*NullableRedirectInformation) Unset

func (v *NullableRedirectInformation) Unset()

type NullableRedirectResponse

type NullableRedirectResponse struct {
	// contains filtered or unexported fields
}

func NewNullableRedirectResponse

func NewNullableRedirectResponse(val *RedirectResponse) *NullableRedirectResponse

func (NullableRedirectResponse) Get

func (NullableRedirectResponse) IsSet

func (v NullableRedirectResponse) IsSet() bool

func (NullableRedirectResponse) MarshalJSON

func (v NullableRedirectResponse) MarshalJSON() ([]byte, error)

func (*NullableRedirectResponse) Set

func (*NullableRedirectResponse) UnmarshalJSON

func (v *NullableRedirectResponse) UnmarshalJSON(src []byte) error

func (*NullableRedirectResponse) Unset

func (v *NullableRedirectResponse) Unset()

type NullableReportingFrequency

type NullableReportingFrequency struct {
	// contains filtered or unexported fields
}

func NewNullableReportingFrequency

func NewNullableReportingFrequency(val *ReportingFrequency) *NullableReportingFrequency

func (NullableReportingFrequency) Get

func (NullableReportingFrequency) IsSet

func (v NullableReportingFrequency) IsSet() bool

func (NullableReportingFrequency) MarshalJSON

func (v NullableReportingFrequency) MarshalJSON() ([]byte, error)

func (*NullableReportingFrequency) Set

func (*NullableReportingFrequency) UnmarshalJSON

func (v *NullableReportingFrequency) UnmarshalJSON(src []byte) error

func (*NullableReportingFrequency) Unset

func (v *NullableReportingFrequency) Unset()

type NullableReportingLevel

type NullableReportingLevel struct {
	// contains filtered or unexported fields
}

func NewNullableReportingLevel

func NewNullableReportingLevel(val *ReportingLevel) *NullableReportingLevel

func (NullableReportingLevel) Get

func (NullableReportingLevel) IsSet

func (v NullableReportingLevel) IsSet() bool

func (NullableReportingLevel) MarshalJSON

func (v NullableReportingLevel) MarshalJSON() ([]byte, error)

func (*NullableReportingLevel) Set

func (*NullableReportingLevel) UnmarshalJSON

func (v *NullableReportingLevel) UnmarshalJSON(src []byte) error

func (*NullableReportingLevel) Unset

func (v *NullableReportingLevel) Unset()

type NullableRequestedQos

type NullableRequestedQos struct {
	// contains filtered or unexported fields
}

func NewNullableRequestedQos

func NewNullableRequestedQos(val *RequestedQos) *NullableRequestedQos

func (NullableRequestedQos) Get

func (NullableRequestedQos) IsSet

func (v NullableRequestedQos) IsSet() bool

func (NullableRequestedQos) MarshalJSON

func (v NullableRequestedQos) MarshalJSON() ([]byte, error)

func (*NullableRequestedQos) Set

func (v *NullableRequestedQos) Set(val *RequestedQos)

func (*NullableRequestedQos) UnmarshalJSON

func (v *NullableRequestedQos) UnmarshalJSON(src []byte) error

func (*NullableRequestedQos) Unset

func (v *NullableRequestedQos) 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 NullableRequestedRuleData

type NullableRequestedRuleData struct {
	// contains filtered or unexported fields
}

func NewNullableRequestedRuleData

func NewNullableRequestedRuleData(val *RequestedRuleData) *NullableRequestedRuleData

func (NullableRequestedRuleData) Get

func (NullableRequestedRuleData) IsSet

func (v NullableRequestedRuleData) IsSet() bool

func (NullableRequestedRuleData) MarshalJSON

func (v NullableRequestedRuleData) MarshalJSON() ([]byte, error)

func (*NullableRequestedRuleData) Set

func (*NullableRequestedRuleData) UnmarshalJSON

func (v *NullableRequestedRuleData) UnmarshalJSON(src []byte) error

func (*NullableRequestedRuleData) Unset

func (v *NullableRequestedRuleData) Unset()

type NullableRequestedRuleDataType

type NullableRequestedRuleDataType struct {
	// contains filtered or unexported fields
}

func (NullableRequestedRuleDataType) Get

func (NullableRequestedRuleDataType) IsSet

func (NullableRequestedRuleDataType) MarshalJSON

func (v NullableRequestedRuleDataType) MarshalJSON() ([]byte, error)

func (*NullableRequestedRuleDataType) Set

func (*NullableRequestedRuleDataType) UnmarshalJSON

func (v *NullableRequestedRuleDataType) UnmarshalJSON(src []byte) error

func (*NullableRequestedRuleDataType) Unset

func (v *NullableRequestedRuleDataType) Unset()

type NullableRequestedUsageData

type NullableRequestedUsageData struct {
	// contains filtered or unexported fields
}

func NewNullableRequestedUsageData

func NewNullableRequestedUsageData(val *RequestedUsageData) *NullableRequestedUsageData

func (NullableRequestedUsageData) Get

func (NullableRequestedUsageData) IsSet

func (v NullableRequestedUsageData) IsSet() bool

func (NullableRequestedUsageData) MarshalJSON

func (v NullableRequestedUsageData) MarshalJSON() ([]byte, error)

func (*NullableRequestedUsageData) Set

func (*NullableRequestedUsageData) UnmarshalJSON

func (v *NullableRequestedUsageData) UnmarshalJSON(src []byte) error

func (*NullableRequestedUsageData) Unset

func (v *NullableRequestedUsageData) Unset()

type NullableRouteInformation

type NullableRouteInformation struct {
	// contains filtered or unexported fields
}

func NewNullableRouteInformation

func NewNullableRouteInformation(val *RouteInformation) *NullableRouteInformation

func (NullableRouteInformation) Get

func (NullableRouteInformation) IsSet

func (v NullableRouteInformation) IsSet() bool

func (NullableRouteInformation) MarshalJSON

func (v NullableRouteInformation) MarshalJSON() ([]byte, error)

func (*NullableRouteInformation) Set

func (*NullableRouteInformation) UnmarshalJSON

func (v *NullableRouteInformation) UnmarshalJSON(src []byte) error

func (*NullableRouteInformation) Unset

func (v *NullableRouteInformation) Unset()

type NullableRouteToLocation

type NullableRouteToLocation struct {
	// contains filtered or unexported fields
}

func NewNullableRouteToLocation

func NewNullableRouteToLocation(val *RouteToLocation) *NullableRouteToLocation

func (NullableRouteToLocation) Get

func (NullableRouteToLocation) IsSet

func (v NullableRouteToLocation) IsSet() bool

func (NullableRouteToLocation) MarshalJSON

func (v NullableRouteToLocation) MarshalJSON() ([]byte, error)

func (*NullableRouteToLocation) Set

func (*NullableRouteToLocation) UnmarshalJSON

func (v *NullableRouteToLocation) UnmarshalJSON(src []byte) error

func (*NullableRouteToLocation) Unset

func (v *NullableRouteToLocation) Unset()

type NullableRoutingAreaId

type NullableRoutingAreaId struct {
	// contains filtered or unexported fields
}

func NewNullableRoutingAreaId

func NewNullableRoutingAreaId(val *RoutingAreaId) *NullableRoutingAreaId

func (NullableRoutingAreaId) Get

func (NullableRoutingAreaId) IsSet

func (v NullableRoutingAreaId) IsSet() bool

func (NullableRoutingAreaId) MarshalJSON

func (v NullableRoutingAreaId) MarshalJSON() ([]byte, error)

func (*NullableRoutingAreaId) Set

func (v *NullableRoutingAreaId) Set(val *RoutingAreaId)

func (*NullableRoutingAreaId) UnmarshalJSON

func (v *NullableRoutingAreaId) UnmarshalJSON(src []byte) error

func (*NullableRoutingAreaId) Unset

func (v *NullableRoutingAreaId) Unset()

type NullableRuleOperation

type NullableRuleOperation struct {
	// contains filtered or unexported fields
}

func NewNullableRuleOperation

func NewNullableRuleOperation(val *RuleOperation) *NullableRuleOperation

func (NullableRuleOperation) Get

func (NullableRuleOperation) IsSet

func (v NullableRuleOperation) IsSet() bool

func (NullableRuleOperation) MarshalJSON

func (v NullableRuleOperation) MarshalJSON() ([]byte, error)

func (*NullableRuleOperation) Set

func (v *NullableRuleOperation) Set(val *RuleOperation)

func (*NullableRuleOperation) UnmarshalJSON

func (v *NullableRuleOperation) UnmarshalJSON(src []byte) error

func (*NullableRuleOperation) Unset

func (v *NullableRuleOperation) Unset()

type NullableRuleReport

type NullableRuleReport struct {
	// contains filtered or unexported fields
}

func NewNullableRuleReport

func NewNullableRuleReport(val *RuleReport) *NullableRuleReport

func (NullableRuleReport) Get

func (v NullableRuleReport) Get() *RuleReport

func (NullableRuleReport) IsSet

func (v NullableRuleReport) IsSet() bool

func (NullableRuleReport) MarshalJSON

func (v NullableRuleReport) MarshalJSON() ([]byte, error)

func (*NullableRuleReport) Set

func (v *NullableRuleReport) Set(val *RuleReport)

func (*NullableRuleReport) UnmarshalJSON

func (v *NullableRuleReport) UnmarshalJSON(src []byte) error

func (*NullableRuleReport) Unset

func (v *NullableRuleReport) Unset()

type NullableRuleStatus

type NullableRuleStatus struct {
	// contains filtered or unexported fields
}

func NewNullableRuleStatus

func NewNullableRuleStatus(val *RuleStatus) *NullableRuleStatus

func (NullableRuleStatus) Get

func (v NullableRuleStatus) Get() *RuleStatus

func (NullableRuleStatus) IsSet

func (v NullableRuleStatus) IsSet() bool

func (NullableRuleStatus) MarshalJSON

func (v NullableRuleStatus) MarshalJSON() ([]byte, error)

func (*NullableRuleStatus) Set

func (v *NullableRuleStatus) Set(val *RuleStatus)

func (*NullableRuleStatus) UnmarshalJSON

func (v *NullableRuleStatus) UnmarshalJSON(src []byte) error

func (*NullableRuleStatus) Unset

func (v *NullableRuleStatus) Unset()

type NullableSatelliteBackhaulCategory

type NullableSatelliteBackhaulCategory struct {
	// contains filtered or unexported fields
}

func (NullableSatelliteBackhaulCategory) Get

func (NullableSatelliteBackhaulCategory) IsSet

func (NullableSatelliteBackhaulCategory) MarshalJSON

func (v NullableSatelliteBackhaulCategory) MarshalJSON() ([]byte, error)

func (*NullableSatelliteBackhaulCategory) Set

func (*NullableSatelliteBackhaulCategory) UnmarshalJSON

func (v *NullableSatelliteBackhaulCategory) UnmarshalJSON(src []byte) error

func (*NullableSatelliteBackhaulCategory) Unset

type NullableServerAddressingInfo

type NullableServerAddressingInfo struct {
	// contains filtered or unexported fields
}

func NewNullableServerAddressingInfo

func NewNullableServerAddressingInfo(val *ServerAddressingInfo) *NullableServerAddressingInfo

func (NullableServerAddressingInfo) Get

func (NullableServerAddressingInfo) IsSet

func (NullableServerAddressingInfo) MarshalJSON

func (v NullableServerAddressingInfo) MarshalJSON() ([]byte, error)

func (*NullableServerAddressingInfo) Set

func (*NullableServerAddressingInfo) UnmarshalJSON

func (v *NullableServerAddressingInfo) UnmarshalJSON(src []byte) error

func (*NullableServerAddressingInfo) Unset

func (v *NullableServerAddressingInfo) Unset()

type NullableServiceAreaId

type NullableServiceAreaId struct {
	// contains filtered or unexported fields
}

func NewNullableServiceAreaId

func NewNullableServiceAreaId(val *ServiceAreaId) *NullableServiceAreaId

func (NullableServiceAreaId) Get

func (NullableServiceAreaId) IsSet

func (v NullableServiceAreaId) IsSet() bool

func (NullableServiceAreaId) MarshalJSON

func (v NullableServiceAreaId) MarshalJSON() ([]byte, error)

func (*NullableServiceAreaId) Set

func (v *NullableServiceAreaId) Set(val *ServiceAreaId)

func (*NullableServiceAreaId) UnmarshalJSON

func (v *NullableServiceAreaId) UnmarshalJSON(src []byte) error

func (*NullableServiceAreaId) Unset

func (v *NullableServiceAreaId) Unset()

type NullableServingNfIdentity

type NullableServingNfIdentity struct {
	// contains filtered or unexported fields
}

func NewNullableServingNfIdentity

func NewNullableServingNfIdentity(val *ServingNfIdentity) *NullableServingNfIdentity

func (NullableServingNfIdentity) Get

func (NullableServingNfIdentity) IsSet

func (v NullableServingNfIdentity) IsSet() bool

func (NullableServingNfIdentity) MarshalJSON

func (v NullableServingNfIdentity) MarshalJSON() ([]byte, error)

func (*NullableServingNfIdentity) Set

func (*NullableServingNfIdentity) UnmarshalJSON

func (v *NullableServingNfIdentity) UnmarshalJSON(src []byte) error

func (*NullableServingNfIdentity) Unset

func (v *NullableServingNfIdentity) Unset()

type NullableSessionRule

type NullableSessionRule struct {
	// contains filtered or unexported fields
}

func NewNullableSessionRule

func NewNullableSessionRule(val *SessionRule) *NullableSessionRule

func (NullableSessionRule) Get

func (NullableSessionRule) IsSet

func (v NullableSessionRule) IsSet() bool

func (NullableSessionRule) MarshalJSON

func (v NullableSessionRule) MarshalJSON() ([]byte, error)

func (*NullableSessionRule) Set

func (v *NullableSessionRule) Set(val *SessionRule)

func (*NullableSessionRule) UnmarshalJSON

func (v *NullableSessionRule) UnmarshalJSON(src []byte) error

func (*NullableSessionRule) Unset

func (v *NullableSessionRule) Unset()

type NullableSessionRuleFailureCode

type NullableSessionRuleFailureCode struct {
	// contains filtered or unexported fields
}

func (NullableSessionRuleFailureCode) Get

func (NullableSessionRuleFailureCode) IsSet

func (NullableSessionRuleFailureCode) MarshalJSON

func (v NullableSessionRuleFailureCode) MarshalJSON() ([]byte, error)

func (*NullableSessionRuleFailureCode) Set

func (*NullableSessionRuleFailureCode) UnmarshalJSON

func (v *NullableSessionRuleFailureCode) UnmarshalJSON(src []byte) error

func (*NullableSessionRuleFailureCode) Unset

func (v *NullableSessionRuleFailureCode) Unset()

type NullableSessionRuleReport

type NullableSessionRuleReport struct {
	// contains filtered or unexported fields
}

func NewNullableSessionRuleReport

func NewNullableSessionRuleReport(val *SessionRuleReport) *NullableSessionRuleReport

func (NullableSessionRuleReport) Get

func (NullableSessionRuleReport) IsSet

func (v NullableSessionRuleReport) IsSet() bool

func (NullableSessionRuleReport) MarshalJSON

func (v NullableSessionRuleReport) MarshalJSON() ([]byte, error)

func (*NullableSessionRuleReport) Set

func (*NullableSessionRuleReport) UnmarshalJSON

func (v *NullableSessionRuleReport) UnmarshalJSON(src []byte) error

func (*NullableSessionRuleReport) Unset

func (v *NullableSessionRuleReport) Unset()

type NullableSgsnAddress

type NullableSgsnAddress struct {
	// contains filtered or unexported fields
}

func NewNullableSgsnAddress

func NewNullableSgsnAddress(val *SgsnAddress) *NullableSgsnAddress

func (NullableSgsnAddress) Get

func (NullableSgsnAddress) IsSet

func (v NullableSgsnAddress) IsSet() bool

func (NullableSgsnAddress) MarshalJSON

func (v NullableSgsnAddress) MarshalJSON() ([]byte, error)

func (*NullableSgsnAddress) Set

func (v *NullableSgsnAddress) Set(val *SgsnAddress)

func (*NullableSgsnAddress) UnmarshalJSON

func (v *NullableSgsnAddress) UnmarshalJSON(src []byte) error

func (*NullableSgsnAddress) Unset

func (v *NullableSgsnAddress) Unset()

type NullableSmPolicyAssociationReleaseCause

type NullableSmPolicyAssociationReleaseCause struct {
	// contains filtered or unexported fields
}

func (NullableSmPolicyAssociationReleaseCause) Get

func (NullableSmPolicyAssociationReleaseCause) IsSet

func (NullableSmPolicyAssociationReleaseCause) MarshalJSON

func (v NullableSmPolicyAssociationReleaseCause) MarshalJSON() ([]byte, error)

func (*NullableSmPolicyAssociationReleaseCause) Set

func (*NullableSmPolicyAssociationReleaseCause) UnmarshalJSON

func (v *NullableSmPolicyAssociationReleaseCause) UnmarshalJSON(src []byte) error

func (*NullableSmPolicyAssociationReleaseCause) Unset

type NullableSmPolicyContextData

type NullableSmPolicyContextData struct {
	// contains filtered or unexported fields
}

func NewNullableSmPolicyContextData

func NewNullableSmPolicyContextData(val *SmPolicyContextData) *NullableSmPolicyContextData

func (NullableSmPolicyContextData) Get

func (NullableSmPolicyContextData) IsSet

func (NullableSmPolicyContextData) MarshalJSON

func (v NullableSmPolicyContextData) MarshalJSON() ([]byte, error)

func (*NullableSmPolicyContextData) Set

func (*NullableSmPolicyContextData) UnmarshalJSON

func (v *NullableSmPolicyContextData) UnmarshalJSON(src []byte) error

func (*NullableSmPolicyContextData) Unset

func (v *NullableSmPolicyContextData) Unset()

type NullableSmPolicyControl

type NullableSmPolicyControl struct {
	// contains filtered or unexported fields
}

func NewNullableSmPolicyControl

func NewNullableSmPolicyControl(val *SmPolicyControl) *NullableSmPolicyControl

func (NullableSmPolicyControl) Get

func (NullableSmPolicyControl) IsSet

func (v NullableSmPolicyControl) IsSet() bool

func (NullableSmPolicyControl) MarshalJSON

func (v NullableSmPolicyControl) MarshalJSON() ([]byte, error)

func (*NullableSmPolicyControl) Set

func (*NullableSmPolicyControl) UnmarshalJSON

func (v *NullableSmPolicyControl) UnmarshalJSON(src []byte) error

func (*NullableSmPolicyControl) Unset

func (v *NullableSmPolicyControl) Unset()

type NullableSmPolicyDecision

type NullableSmPolicyDecision struct {
	// contains filtered or unexported fields
}

func NewNullableSmPolicyDecision

func NewNullableSmPolicyDecision(val *SmPolicyDecision) *NullableSmPolicyDecision

func (NullableSmPolicyDecision) Get

func (NullableSmPolicyDecision) IsSet

func (v NullableSmPolicyDecision) IsSet() bool

func (NullableSmPolicyDecision) MarshalJSON

func (v NullableSmPolicyDecision) MarshalJSON() ([]byte, error)

func (*NullableSmPolicyDecision) Set

func (*NullableSmPolicyDecision) UnmarshalJSON

func (v *NullableSmPolicyDecision) UnmarshalJSON(src []byte) error

func (*NullableSmPolicyDecision) Unset

func (v *NullableSmPolicyDecision) Unset()

type NullableSmPolicyDeleteData

type NullableSmPolicyDeleteData struct {
	// contains filtered or unexported fields
}

func NewNullableSmPolicyDeleteData

func NewNullableSmPolicyDeleteData(val *SmPolicyDeleteData) *NullableSmPolicyDeleteData

func (NullableSmPolicyDeleteData) Get

func (NullableSmPolicyDeleteData) IsSet

func (v NullableSmPolicyDeleteData) IsSet() bool

func (NullableSmPolicyDeleteData) MarshalJSON

func (v NullableSmPolicyDeleteData) MarshalJSON() ([]byte, error)

func (*NullableSmPolicyDeleteData) Set

func (*NullableSmPolicyDeleteData) UnmarshalJSON

func (v *NullableSmPolicyDeleteData) UnmarshalJSON(src []byte) error

func (*NullableSmPolicyDeleteData) Unset

func (v *NullableSmPolicyDeleteData) Unset()

type NullableSmPolicyNotification

type NullableSmPolicyNotification struct {
	// contains filtered or unexported fields
}

func NewNullableSmPolicyNotification

func NewNullableSmPolicyNotification(val *SmPolicyNotification) *NullableSmPolicyNotification

func (NullableSmPolicyNotification) Get

func (NullableSmPolicyNotification) IsSet

func (NullableSmPolicyNotification) MarshalJSON

func (v NullableSmPolicyNotification) MarshalJSON() ([]byte, error)

func (*NullableSmPolicyNotification) Set

func (*NullableSmPolicyNotification) UnmarshalJSON

func (v *NullableSmPolicyNotification) UnmarshalJSON(src []byte) error

func (*NullableSmPolicyNotification) Unset

func (v *NullableSmPolicyNotification) Unset()

type NullableSmPolicyUpdateContextData

type NullableSmPolicyUpdateContextData struct {
	// contains filtered or unexported fields
}

func (NullableSmPolicyUpdateContextData) Get

func (NullableSmPolicyUpdateContextData) IsSet

func (NullableSmPolicyUpdateContextData) MarshalJSON

func (v NullableSmPolicyUpdateContextData) MarshalJSON() ([]byte, error)

func (*NullableSmPolicyUpdateContextData) Set

func (*NullableSmPolicyUpdateContextData) UnmarshalJSON

func (v *NullableSmPolicyUpdateContextData) UnmarshalJSON(src []byte) error

func (*NullableSmPolicyUpdateContextData) 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 NullableSteerModeIndicator

type NullableSteerModeIndicator struct {
	// contains filtered or unexported fields
}

func NewNullableSteerModeIndicator

func NewNullableSteerModeIndicator(val *SteerModeIndicator) *NullableSteerModeIndicator

func (NullableSteerModeIndicator) Get

func (NullableSteerModeIndicator) IsSet

func (v NullableSteerModeIndicator) IsSet() bool

func (NullableSteerModeIndicator) MarshalJSON

func (v NullableSteerModeIndicator) MarshalJSON() ([]byte, error)

func (*NullableSteerModeIndicator) Set

func (*NullableSteerModeIndicator) UnmarshalJSON

func (v *NullableSteerModeIndicator) UnmarshalJSON(src []byte) error

func (*NullableSteerModeIndicator) Unset

func (v *NullableSteerModeIndicator) Unset()

type NullableSteerModeValue

type NullableSteerModeValue struct {
	// contains filtered or unexported fields
}

func NewNullableSteerModeValue

func NewNullableSteerModeValue(val *SteerModeValue) *NullableSteerModeValue

func (NullableSteerModeValue) Get

func (NullableSteerModeValue) IsSet

func (v NullableSteerModeValue) IsSet() bool

func (NullableSteerModeValue) MarshalJSON

func (v NullableSteerModeValue) MarshalJSON() ([]byte, error)

func (*NullableSteerModeValue) Set

func (*NullableSteerModeValue) UnmarshalJSON

func (v *NullableSteerModeValue) UnmarshalJSON(src []byte) error

func (*NullableSteerModeValue) Unset

func (v *NullableSteerModeValue) Unset()

type NullableSteeringFunctionality

type NullableSteeringFunctionality struct {
	// contains filtered or unexported fields
}

func (NullableSteeringFunctionality) Get

func (NullableSteeringFunctionality) IsSet

func (NullableSteeringFunctionality) MarshalJSON

func (v NullableSteeringFunctionality) MarshalJSON() ([]byte, error)

func (*NullableSteeringFunctionality) Set

func (*NullableSteeringFunctionality) UnmarshalJSON

func (v *NullableSteeringFunctionality) UnmarshalJSON(src []byte) error

func (*NullableSteeringFunctionality) Unset

func (v *NullableSteeringFunctionality) Unset()

type NullableSteeringMode

type NullableSteeringMode struct {
	// contains filtered or unexported fields
}

func NewNullableSteeringMode

func NewNullableSteeringMode(val *SteeringMode) *NullableSteeringMode

func (NullableSteeringMode) Get

func (NullableSteeringMode) IsSet

func (v NullableSteeringMode) IsSet() bool

func (NullableSteeringMode) MarshalJSON

func (v NullableSteeringMode) MarshalJSON() ([]byte, error)

func (*NullableSteeringMode) Set

func (v *NullableSteeringMode) Set(val *SteeringMode)

func (*NullableSteeringMode) UnmarshalJSON

func (v *NullableSteeringMode) UnmarshalJSON(src []byte) error

func (*NullableSteeringMode) Unset

func (v *NullableSteeringMode) 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 NullableSubscribedDefaultQos

type NullableSubscribedDefaultQos struct {
	// contains filtered or unexported fields
}

func NewNullableSubscribedDefaultQos

func NewNullableSubscribedDefaultQos(val *SubscribedDefaultQos) *NullableSubscribedDefaultQos

func (NullableSubscribedDefaultQos) Get

func (NullableSubscribedDefaultQos) IsSet

func (NullableSubscribedDefaultQos) MarshalJSON

func (v NullableSubscribedDefaultQos) MarshalJSON() ([]byte, error)

func (*NullableSubscribedDefaultQos) Set

func (*NullableSubscribedDefaultQos) UnmarshalJSON

func (v *NullableSubscribedDefaultQos) UnmarshalJSON(src []byte) error

func (*NullableSubscribedDefaultQos) Unset

func (v *NullableSubscribedDefaultQos) Unset()

type NullableTai

type NullableTai struct {
	// contains filtered or unexported fields
}

func NewNullableTai

func NewNullableTai(val *Tai) *NullableTai

func (NullableTai) Get

func (v NullableTai) Get() *Tai

func (NullableTai) IsSet

func (v NullableTai) IsSet() bool

func (NullableTai) MarshalJSON

func (v NullableTai) MarshalJSON() ([]byte, error)

func (*NullableTai) Set

func (v *NullableTai) Set(val *Tai)

func (*NullableTai) UnmarshalJSON

func (v *NullableTai) UnmarshalJSON(src []byte) error

func (*NullableTai) Unset

func (v *NullableTai) Unset()

type NullableTerminationNotification

type NullableTerminationNotification struct {
	// contains filtered or unexported fields
}

func (NullableTerminationNotification) Get

func (NullableTerminationNotification) IsSet

func (NullableTerminationNotification) MarshalJSON

func (v NullableTerminationNotification) MarshalJSON() ([]byte, error)

func (*NullableTerminationNotification) Set

func (*NullableTerminationNotification) UnmarshalJSON

func (v *NullableTerminationNotification) UnmarshalJSON(src []byte) error

func (*NullableTerminationNotification) Unset

type NullableThresholdValue

type NullableThresholdValue struct {
	// contains filtered or unexported fields
}

func NewNullableThresholdValue

func NewNullableThresholdValue(val *ThresholdValue) *NullableThresholdValue

func (NullableThresholdValue) Get

func (NullableThresholdValue) IsSet

func (v NullableThresholdValue) IsSet() bool

func (NullableThresholdValue) MarshalJSON

func (v NullableThresholdValue) MarshalJSON() ([]byte, error)

func (*NullableThresholdValue) Set

func (*NullableThresholdValue) UnmarshalJSON

func (v *NullableThresholdValue) UnmarshalJSON(src []byte) error

func (*NullableThresholdValue) Unset

func (v *NullableThresholdValue) 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 NullableTnapId

type NullableTnapId struct {
	// contains filtered or unexported fields
}

func NewNullableTnapId

func NewNullableTnapId(val *TnapId) *NullableTnapId

func (NullableTnapId) Get

func (v NullableTnapId) Get() *TnapId

func (NullableTnapId) IsSet

func (v NullableTnapId) IsSet() bool

func (NullableTnapId) MarshalJSON

func (v NullableTnapId) MarshalJSON() ([]byte, error)

func (*NullableTnapId) Set

func (v *NullableTnapId) Set(val *TnapId)

func (*NullableTnapId) UnmarshalJSON

func (v *NullableTnapId) UnmarshalJSON(src []byte) error

func (*NullableTnapId) Unset

func (v *NullableTnapId) Unset()

type NullableTraceData

type NullableTraceData struct {
	// contains filtered or unexported fields
}

func NewNullableTraceData

func NewNullableTraceData(val *TraceData) *NullableTraceData

func (NullableTraceData) Get

func (v NullableTraceData) Get() *TraceData

func (NullableTraceData) IsSet

func (v NullableTraceData) IsSet() bool

func (NullableTraceData) MarshalJSON

func (v NullableTraceData) MarshalJSON() ([]byte, error)

func (*NullableTraceData) Set

func (v *NullableTraceData) Set(val *TraceData)

func (*NullableTraceData) UnmarshalJSON

func (v *NullableTraceData) UnmarshalJSON(src []byte) error

func (*NullableTraceData) Unset

func (v *NullableTraceData) Unset()

type NullableTraceDepth

type NullableTraceDepth struct {
	// contains filtered or unexported fields
}

func NewNullableTraceDepth

func NewNullableTraceDepth(val *TraceDepth) *NullableTraceDepth

func (NullableTraceDepth) Get

func (v NullableTraceDepth) Get() *TraceDepth

func (NullableTraceDepth) IsSet

func (v NullableTraceDepth) IsSet() bool

func (NullableTraceDepth) MarshalJSON

func (v NullableTraceDepth) MarshalJSON() ([]byte, error)

func (*NullableTraceDepth) Set

func (v *NullableTraceDepth) Set(val *TraceDepth)

func (*NullableTraceDepth) UnmarshalJSON

func (v *NullableTraceDepth) UnmarshalJSON(src []byte) error

func (*NullableTraceDepth) Unset

func (v *NullableTraceDepth) Unset()

type NullableTrafficControlData

type NullableTrafficControlData struct {
	// contains filtered or unexported fields
}

func NewNullableTrafficControlData

func NewNullableTrafficControlData(val *TrafficControlData) *NullableTrafficControlData

func (NullableTrafficControlData) Get

func (NullableTrafficControlData) IsSet

func (v NullableTrafficControlData) IsSet() bool

func (NullableTrafficControlData) MarshalJSON

func (v NullableTrafficControlData) MarshalJSON() ([]byte, error)

func (*NullableTrafficControlData) Set

func (*NullableTrafficControlData) UnmarshalJSON

func (v *NullableTrafficControlData) UnmarshalJSON(src []byte) error

func (*NullableTrafficControlData) Unset

func (v *NullableTrafficControlData) Unset()

type NullableTransportProtocol

type NullableTransportProtocol struct {
	// contains filtered or unexported fields
}

func NewNullableTransportProtocol

func NewNullableTransportProtocol(val *TransportProtocol) *NullableTransportProtocol

func (NullableTransportProtocol) Get

func (NullableTransportProtocol) IsSet

func (v NullableTransportProtocol) IsSet() bool

func (NullableTransportProtocol) MarshalJSON

func (v NullableTransportProtocol) MarshalJSON() ([]byte, error)

func (*NullableTransportProtocol) Set

func (*NullableTransportProtocol) UnmarshalJSON

func (v *NullableTransportProtocol) UnmarshalJSON(src []byte) error

func (*NullableTransportProtocol) Unset

func (v *NullableTransportProtocol) Unset()

type NullableTscaiInputContainer

type NullableTscaiInputContainer struct {
	// contains filtered or unexported fields
}

func NewNullableTscaiInputContainer

func NewNullableTscaiInputContainer(val *TscaiInputContainer) *NullableTscaiInputContainer

func (NullableTscaiInputContainer) Get

func (NullableTscaiInputContainer) IsSet

func (NullableTscaiInputContainer) MarshalJSON

func (v NullableTscaiInputContainer) MarshalJSON() ([]byte, error)

func (*NullableTscaiInputContainer) Set

func (*NullableTscaiInputContainer) UnmarshalJSON

func (v *NullableTscaiInputContainer) UnmarshalJSON(src []byte) error

func (*NullableTscaiInputContainer) Unset

func (v *NullableTscaiInputContainer) Unset()

type NullableTsnBridgeInfo

type NullableTsnBridgeInfo struct {
	// contains filtered or unexported fields
}

func NewNullableTsnBridgeInfo

func NewNullableTsnBridgeInfo(val *TsnBridgeInfo) *NullableTsnBridgeInfo

func (NullableTsnBridgeInfo) Get

func (NullableTsnBridgeInfo) IsSet

func (v NullableTsnBridgeInfo) IsSet() bool

func (NullableTsnBridgeInfo) MarshalJSON

func (v NullableTsnBridgeInfo) MarshalJSON() ([]byte, error)

func (*NullableTsnBridgeInfo) Set

func (v *NullableTsnBridgeInfo) Set(val *TsnBridgeInfo)

func (*NullableTsnBridgeInfo) UnmarshalJSON

func (v *NullableTsnBridgeInfo) UnmarshalJSON(src []byte) error

func (*NullableTsnBridgeInfo) Unset

func (v *NullableTsnBridgeInfo) Unset()

type NullableTwapId

type NullableTwapId struct {
	// contains filtered or unexported fields
}

func NewNullableTwapId

func NewNullableTwapId(val *TwapId) *NullableTwapId

func (NullableTwapId) Get

func (v NullableTwapId) Get() *TwapId

func (NullableTwapId) IsSet

func (v NullableTwapId) IsSet() bool

func (NullableTwapId) MarshalJSON

func (v NullableTwapId) MarshalJSON() ([]byte, error)

func (*NullableTwapId) Set

func (v *NullableTwapId) Set(val *TwapId)

func (*NullableTwapId) UnmarshalJSON

func (v *NullableTwapId) UnmarshalJSON(src []byte) error

func (*NullableTwapId) Unset

func (v *NullableTwapId) Unset()

type NullableUeCampingRep

type NullableUeCampingRep struct {
	// contains filtered or unexported fields
}

func NewNullableUeCampingRep

func NewNullableUeCampingRep(val *UeCampingRep) *NullableUeCampingRep

func (NullableUeCampingRep) Get

func (NullableUeCampingRep) IsSet

func (v NullableUeCampingRep) IsSet() bool

func (NullableUeCampingRep) MarshalJSON

func (v NullableUeCampingRep) MarshalJSON() ([]byte, error)

func (*NullableUeCampingRep) Set

func (v *NullableUeCampingRep) Set(val *UeCampingRep)

func (*NullableUeCampingRep) UnmarshalJSON

func (v *NullableUeCampingRep) UnmarshalJSON(src []byte) error

func (*NullableUeCampingRep) Unset

func (v *NullableUeCampingRep) Unset()

type NullableUeInitiatedResourceRequest

type NullableUeInitiatedResourceRequest struct {
	// contains filtered or unexported fields
}

func (NullableUeInitiatedResourceRequest) Get

func (NullableUeInitiatedResourceRequest) IsSet

func (NullableUeInitiatedResourceRequest) MarshalJSON

func (v NullableUeInitiatedResourceRequest) MarshalJSON() ([]byte, error)

func (*NullableUeInitiatedResourceRequest) Set

func (*NullableUeInitiatedResourceRequest) UnmarshalJSON

func (v *NullableUeInitiatedResourceRequest) UnmarshalJSON(src []byte) error

func (*NullableUeInitiatedResourceRequest) Unset

type NullableUpPathChgEvent

type NullableUpPathChgEvent struct {
	// contains filtered or unexported fields
}

func NewNullableUpPathChgEvent

func NewNullableUpPathChgEvent(val *UpPathChgEvent) *NullableUpPathChgEvent

func (NullableUpPathChgEvent) Get

func (NullableUpPathChgEvent) IsSet

func (v NullableUpPathChgEvent) IsSet() bool

func (NullableUpPathChgEvent) MarshalJSON

func (v NullableUpPathChgEvent) MarshalJSON() ([]byte, error)

func (*NullableUpPathChgEvent) Set

func (*NullableUpPathChgEvent) UnmarshalJSON

func (v *NullableUpPathChgEvent) UnmarshalJSON(src []byte) error

func (*NullableUpPathChgEvent) Unset

func (v *NullableUpPathChgEvent) Unset()

type NullableUsageMonitoringData

type NullableUsageMonitoringData struct {
	// contains filtered or unexported fields
}

func NewNullableUsageMonitoringData

func NewNullableUsageMonitoringData(val *UsageMonitoringData) *NullableUsageMonitoringData

func (NullableUsageMonitoringData) Get

func (NullableUsageMonitoringData) IsSet

func (NullableUsageMonitoringData) MarshalJSON

func (v NullableUsageMonitoringData) MarshalJSON() ([]byte, error)

func (*NullableUsageMonitoringData) Set

func (*NullableUsageMonitoringData) UnmarshalJSON

func (v *NullableUsageMonitoringData) UnmarshalJSON(src []byte) error

func (*NullableUsageMonitoringData) Unset

func (v *NullableUsageMonitoringData) Unset()

type NullableUserLocation

type NullableUserLocation struct {
	// contains filtered or unexported fields
}

func NewNullableUserLocation

func NewNullableUserLocation(val *UserLocation) *NullableUserLocation

func (NullableUserLocation) Get

func (NullableUserLocation) IsSet

func (v NullableUserLocation) IsSet() bool

func (NullableUserLocation) MarshalJSON

func (v NullableUserLocation) MarshalJSON() ([]byte, error)

func (*NullableUserLocation) Set

func (v *NullableUserLocation) Set(val *UserLocation)

func (*NullableUserLocation) UnmarshalJSON

func (v *NullableUserLocation) UnmarshalJSON(src []byte) error

func (*NullableUserLocation) Unset

func (v *NullableUserLocation) Unset()

type NullableUtraLocation

type NullableUtraLocation struct {
	// contains filtered or unexported fields
}

func NewNullableUtraLocation

func NewNullableUtraLocation(val *UtraLocation) *NullableUtraLocation

func (NullableUtraLocation) Get

func (NullableUtraLocation) IsSet

func (v NullableUtraLocation) IsSet() bool

func (NullableUtraLocation) MarshalJSON

func (v NullableUtraLocation) MarshalJSON() ([]byte, error)

func (*NullableUtraLocation) Set

func (v *NullableUtraLocation) Set(val *UtraLocation)

func (*NullableUtraLocation) UnmarshalJSON

func (v *NullableUtraLocation) UnmarshalJSON(src []byte) error

func (*NullableUtraLocation) Unset

func (v *NullableUtraLocation) Unset()

type NullableVplmnQos

type NullableVplmnQos struct {
	// contains filtered or unexported fields
}

func NewNullableVplmnQos

func NewNullableVplmnQos(val *VplmnQos) *NullableVplmnQos

func (NullableVplmnQos) Get

func (v NullableVplmnQos) Get() *VplmnQos

func (NullableVplmnQos) IsSet

func (v NullableVplmnQos) IsSet() bool

func (NullableVplmnQos) MarshalJSON

func (v NullableVplmnQos) MarshalJSON() ([]byte, error)

func (*NullableVplmnQos) Set

func (v *NullableVplmnQos) Set(val *VplmnQos)

func (*NullableVplmnQos) UnmarshalJSON

func (v *NullableVplmnQos) UnmarshalJSON(src []byte) error

func (*NullableVplmnQos) Unset

func (v *NullableVplmnQos) Unset()

type NwdafData

type NwdafData struct {
	// String uniquely identifying a NF instance. The format of the NF Instance ID shall be a  Universally Unique Identifier (UUID) version 4, as described in IETF RFC 4122.
	NwdafInstanceId string       `json:"nwdafInstanceId"`
	NwdafEvents     []NwdafEvent `json:"nwdafEvents,omitempty"`
}

NwdafData Indicates the list of Analytic ID(s) per NWDAF instance ID used for the PDU Session consumed by the SMF.

func NewNwdafData

func NewNwdafData(nwdafInstanceId string) *NwdafData

NewNwdafData instantiates a new NwdafData object This constructor will assign default values to properties that have it defined, 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 NewNwdafDataWithDefaults

func NewNwdafDataWithDefaults() *NwdafData

NewNwdafDataWithDefaults instantiates a new NwdafData object This 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 (*NwdafData) GetNwdafEvents

func (o *NwdafData) GetNwdafEvents() []NwdafEvent

GetNwdafEvents returns the NwdafEvents field value if set, zero value otherwise.

func (*NwdafData) GetNwdafEventsOk

func (o *NwdafData) GetNwdafEventsOk() ([]NwdafEvent, bool)

GetNwdafEventsOk returns a tuple with the NwdafEvents field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NwdafData) GetNwdafInstanceId

func (o *NwdafData) GetNwdafInstanceId() string

GetNwdafInstanceId returns the NwdafInstanceId field value

func (*NwdafData) GetNwdafInstanceIdOk

func (o *NwdafData) GetNwdafInstanceIdOk() (*string, bool)

GetNwdafInstanceIdOk returns a tuple with the NwdafInstanceId field value and a boolean to check if the value has been set.

func (*NwdafData) HasNwdafEvents

func (o *NwdafData) HasNwdafEvents() bool

HasNwdafEvents returns a boolean if a field has been set.

func (NwdafData) MarshalJSON

func (o NwdafData) MarshalJSON() ([]byte, error)

func (*NwdafData) SetNwdafEvents

func (o *NwdafData) SetNwdafEvents(v []NwdafEvent)

SetNwdafEvents gets a reference to the given []NwdafEvent and assigns it to the NwdafEvents field.

func (*NwdafData) SetNwdafInstanceId

func (o *NwdafData) SetNwdafInstanceId(v string)

SetNwdafInstanceId sets field value

func (NwdafData) ToMap

func (o NwdafData) ToMap() (map[string]interface{}, error)

type NwdafEvent

type NwdafEvent struct {
	String *string
}

NwdafEvent Possible values are: - SLICE_LOAD_LEVEL: Indicates that the event subscribed is load level information of Network Slice - NETWORK_PERFORMANCE: Indicates that the event subscribed is network performance information. - NF_LOAD: Indicates that the event subscribed is load level and status of one or several Network Functions. - SERVICE_EXPERIENCE: Indicates that the event subscribed is service experience. - UE_MOBILITY: Indicates that the event subscribed is UE mobility information. - UE_COMMUNICATION: Indicates that the event subscribed is UE communication information. - QOS_SUSTAINABILITY: Indicates that the event subscribed is QoS sustainability. - ABNORMAL_BEHAVIOUR: Indicates that the event subscribed is abnormal behaviour. - USER_DATA_CONGESTION: Indicates that the event subscribed is user data congestion information. - NSI_LOAD_LEVEL: Indicates that the event subscribed is load level information of Network Slice and the optionally associated Network Slice Instance - DN_PERFORMANCE: Indicates that the event subscribed is DN performance information. - DISPERSION: Indicates that the event subscribed is dispersion information. - RED_TRANS_EXP: Indicates that the event subscribed is redundant transmission experience. - WLAN_PERFORMANCE: Indicates that the event subscribed is WLAN performance. - SM_CONGESTION: Indicates the Session Management Congestion Control Experience information for specific DNN and/or S-NSSAI.

func (*NwdafEvent) MarshalJSON

func (src *NwdafEvent) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*NwdafEvent) UnmarshalJSON

func (dst *NwdafEvent) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type PacketFilterInfo

type PacketFilterInfo struct {
	// An identifier of packet filter.
	PackFiltId *string `json:"packFiltId,omitempty"`
	// Defines a packet filter for an IP flow.
	PackFiltCont *string `json:"packFiltCont,omitempty"`
	// Contains the Ipv4 Type-of-Service and mask field or the Ipv6 Traffic-Class field and  mask field.
	TosTrafficClass *string `json:"tosTrafficClass,omitempty"`
	// The security parameter index of the IPSec packet.
	Spi *string `json:"spi,omitempty"`
	// The Ipv6 flow label header field.
	FlowLabel     *string        `json:"flowLabel,omitempty"`
	FlowDirection *FlowDirection `json:"flowDirection,omitempty"`
}

PacketFilterInfo Contains the information from a single packet filter sent from the SMF to the PCF.

func NewPacketFilterInfo

func NewPacketFilterInfo() *PacketFilterInfo

NewPacketFilterInfo instantiates a new PacketFilterInfo object This constructor will assign default values to properties that have it defined, 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 NewPacketFilterInfoWithDefaults

func NewPacketFilterInfoWithDefaults() *PacketFilterInfo

NewPacketFilterInfoWithDefaults instantiates a new PacketFilterInfo object This 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 (*PacketFilterInfo) GetFlowDirection

func (o *PacketFilterInfo) GetFlowDirection() FlowDirection

GetFlowDirection returns the FlowDirection field value if set, zero value otherwise.

func (*PacketFilterInfo) GetFlowDirectionOk

func (o *PacketFilterInfo) GetFlowDirectionOk() (*FlowDirection, bool)

GetFlowDirectionOk returns a tuple with the FlowDirection field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PacketFilterInfo) GetFlowLabel

func (o *PacketFilterInfo) GetFlowLabel() string

GetFlowLabel returns the FlowLabel field value if set, zero value otherwise.

func (*PacketFilterInfo) GetFlowLabelOk

func (o *PacketFilterInfo) GetFlowLabelOk() (*string, bool)

GetFlowLabelOk returns a tuple with the FlowLabel field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PacketFilterInfo) GetPackFiltCont

func (o *PacketFilterInfo) GetPackFiltCont() string

GetPackFiltCont returns the PackFiltCont field value if set, zero value otherwise.

func (*PacketFilterInfo) GetPackFiltContOk

func (o *PacketFilterInfo) GetPackFiltContOk() (*string, bool)

GetPackFiltContOk returns a tuple with the PackFiltCont field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PacketFilterInfo) GetPackFiltId

func (o *PacketFilterInfo) GetPackFiltId() string

GetPackFiltId returns the PackFiltId field value if set, zero value otherwise.

func (*PacketFilterInfo) GetPackFiltIdOk

func (o *PacketFilterInfo) GetPackFiltIdOk() (*string, bool)

GetPackFiltIdOk returns a tuple with the PackFiltId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PacketFilterInfo) GetSpi

func (o *PacketFilterInfo) GetSpi() string

GetSpi returns the Spi field value if set, zero value otherwise.

func (*PacketFilterInfo) GetSpiOk

func (o *PacketFilterInfo) GetSpiOk() (*string, bool)

GetSpiOk returns a tuple with the Spi field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PacketFilterInfo) GetTosTrafficClass

func (o *PacketFilterInfo) GetTosTrafficClass() string

GetTosTrafficClass returns the TosTrafficClass field value if set, zero value otherwise.

func (*PacketFilterInfo) GetTosTrafficClassOk

func (o *PacketFilterInfo) GetTosTrafficClassOk() (*string, bool)

GetTosTrafficClassOk returns a tuple with the TosTrafficClass field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PacketFilterInfo) HasFlowDirection

func (o *PacketFilterInfo) HasFlowDirection() bool

HasFlowDirection returns a boolean if a field has been set.

func (*PacketFilterInfo) HasFlowLabel

func (o *PacketFilterInfo) HasFlowLabel() bool

HasFlowLabel returns a boolean if a field has been set.

func (*PacketFilterInfo) HasPackFiltCont

func (o *PacketFilterInfo) HasPackFiltCont() bool

HasPackFiltCont returns a boolean if a field has been set.

func (*PacketFilterInfo) HasPackFiltId

func (o *PacketFilterInfo) HasPackFiltId() bool

HasPackFiltId returns a boolean if a field has been set.

func (*PacketFilterInfo) HasSpi

func (o *PacketFilterInfo) HasSpi() bool

HasSpi returns a boolean if a field has been set.

func (*PacketFilterInfo) HasTosTrafficClass

func (o *PacketFilterInfo) HasTosTrafficClass() bool

HasTosTrafficClass returns a boolean if a field has been set.

func (PacketFilterInfo) MarshalJSON

func (o PacketFilterInfo) MarshalJSON() ([]byte, error)

func (*PacketFilterInfo) SetFlowDirection

func (o *PacketFilterInfo) SetFlowDirection(v FlowDirection)

SetFlowDirection gets a reference to the given FlowDirection and assigns it to the FlowDirection field.

func (*PacketFilterInfo) SetFlowLabel

func (o *PacketFilterInfo) SetFlowLabel(v string)

SetFlowLabel gets a reference to the given string and assigns it to the FlowLabel field.

func (*PacketFilterInfo) SetPackFiltCont

func (o *PacketFilterInfo) SetPackFiltCont(v string)

SetPackFiltCont gets a reference to the given string and assigns it to the PackFiltCont field.

func (*PacketFilterInfo) SetPackFiltId

func (o *PacketFilterInfo) SetPackFiltId(v string)

SetPackFiltId gets a reference to the given string and assigns it to the PackFiltId field.

func (*PacketFilterInfo) SetSpi

func (o *PacketFilterInfo) SetSpi(v string)

SetSpi gets a reference to the given string and assigns it to the Spi field.

func (*PacketFilterInfo) SetTosTrafficClass

func (o *PacketFilterInfo) SetTosTrafficClass(v string)

SetTosTrafficClass gets a reference to the given string and assigns it to the TosTrafficClass field.

func (PacketFilterInfo) ToMap

func (o PacketFilterInfo) ToMap() (map[string]interface{}, error)

type PartialSuccessReport

type PartialSuccessReport struct {
	FailureCause FailureCause `json:"failureCause"`
	// Information about the PCC rules provisioned by the PCF not successfully installed/activated.
	RuleReports []RuleReport `json:"ruleReports,omitempty"`
	// Information about the session rules provisioned by the PCF not successfully installed.
	SessRuleReports []SessionRuleReport `json:"sessRuleReports,omitempty"`
	UeCampingRep    *UeCampingRep       `json:"ueCampingRep,omitempty"`
	// Contains the type(s) of failed policy decision and/or condition data.
	PolicyDecFailureReports []PolicyDecisionFailureCode `json:"policyDecFailureReports,omitempty"`
	// Indicates the invalid parameters for the reported type(s) of the failed policy decision  and/or condition data.
	InvalidPolicyDecs []InvalidParam `json:"invalidPolicyDecs,omitempty"`
}

PartialSuccessReport Includes the information reported by the SMF when some of the PCC rules and/or session rules and/or policy decision and/or condition data are not successfully installed/activated or stored.

func NewPartialSuccessReport

func NewPartialSuccessReport(failureCause FailureCause) *PartialSuccessReport

NewPartialSuccessReport instantiates a new PartialSuccessReport object This constructor will assign default values to properties that have it defined, 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 NewPartialSuccessReportWithDefaults

func NewPartialSuccessReportWithDefaults() *PartialSuccessReport

NewPartialSuccessReportWithDefaults instantiates a new PartialSuccessReport object This 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 (*PartialSuccessReport) GetFailureCause

func (o *PartialSuccessReport) GetFailureCause() FailureCause

GetFailureCause returns the FailureCause field value

func (*PartialSuccessReport) GetFailureCauseOk

func (o *PartialSuccessReport) GetFailureCauseOk() (*FailureCause, bool)

GetFailureCauseOk returns a tuple with the FailureCause field value and a boolean to check if the value has been set.

func (*PartialSuccessReport) GetInvalidPolicyDecs

func (o *PartialSuccessReport) GetInvalidPolicyDecs() []InvalidParam

GetInvalidPolicyDecs returns the InvalidPolicyDecs field value if set, zero value otherwise.

func (*PartialSuccessReport) GetInvalidPolicyDecsOk

func (o *PartialSuccessReport) GetInvalidPolicyDecsOk() ([]InvalidParam, bool)

GetInvalidPolicyDecsOk returns a tuple with the InvalidPolicyDecs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PartialSuccessReport) GetPolicyDecFailureReports

func (o *PartialSuccessReport) GetPolicyDecFailureReports() []PolicyDecisionFailureCode

GetPolicyDecFailureReports returns the PolicyDecFailureReports field value if set, zero value otherwise.

func (*PartialSuccessReport) GetPolicyDecFailureReportsOk

func (o *PartialSuccessReport) GetPolicyDecFailureReportsOk() ([]PolicyDecisionFailureCode, bool)

GetPolicyDecFailureReportsOk returns a tuple with the PolicyDecFailureReports field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PartialSuccessReport) GetRuleReports

func (o *PartialSuccessReport) GetRuleReports() []RuleReport

GetRuleReports returns the RuleReports field value if set, zero value otherwise.

func (*PartialSuccessReport) GetRuleReportsOk

func (o *PartialSuccessReport) GetRuleReportsOk() ([]RuleReport, bool)

GetRuleReportsOk returns a tuple with the RuleReports field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PartialSuccessReport) GetSessRuleReports

func (o *PartialSuccessReport) GetSessRuleReports() []SessionRuleReport

GetSessRuleReports returns the SessRuleReports field value if set, zero value otherwise.

func (*PartialSuccessReport) GetSessRuleReportsOk

func (o *PartialSuccessReport) GetSessRuleReportsOk() ([]SessionRuleReport, bool)

GetSessRuleReportsOk returns a tuple with the SessRuleReports field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PartialSuccessReport) GetUeCampingRep

func (o *PartialSuccessReport) GetUeCampingRep() UeCampingRep

GetUeCampingRep returns the UeCampingRep field value if set, zero value otherwise.

func (*PartialSuccessReport) GetUeCampingRepOk

func (o *PartialSuccessReport) GetUeCampingRepOk() (*UeCampingRep, bool)

GetUeCampingRepOk returns a tuple with the UeCampingRep field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PartialSuccessReport) HasInvalidPolicyDecs

func (o *PartialSuccessReport) HasInvalidPolicyDecs() bool

HasInvalidPolicyDecs returns a boolean if a field has been set.

func (*PartialSuccessReport) HasPolicyDecFailureReports

func (o *PartialSuccessReport) HasPolicyDecFailureReports() bool

HasPolicyDecFailureReports returns a boolean if a field has been set.

func (*PartialSuccessReport) HasRuleReports

func (o *PartialSuccessReport) HasRuleReports() bool

HasRuleReports returns a boolean if a field has been set.

func (*PartialSuccessReport) HasSessRuleReports

func (o *PartialSuccessReport) HasSessRuleReports() bool

HasSessRuleReports returns a boolean if a field has been set.

func (*PartialSuccessReport) HasUeCampingRep

func (o *PartialSuccessReport) HasUeCampingRep() bool

HasUeCampingRep returns a boolean if a field has been set.

func (PartialSuccessReport) MarshalJSON

func (o PartialSuccessReport) MarshalJSON() ([]byte, error)

func (*PartialSuccessReport) SetFailureCause

func (o *PartialSuccessReport) SetFailureCause(v FailureCause)

SetFailureCause sets field value

func (*PartialSuccessReport) SetInvalidPolicyDecs

func (o *PartialSuccessReport) SetInvalidPolicyDecs(v []InvalidParam)

SetInvalidPolicyDecs gets a reference to the given []InvalidParam and assigns it to the InvalidPolicyDecs field.

func (*PartialSuccessReport) SetPolicyDecFailureReports

func (o *PartialSuccessReport) SetPolicyDecFailureReports(v []PolicyDecisionFailureCode)

SetPolicyDecFailureReports gets a reference to the given []PolicyDecisionFailureCode and assigns it to the PolicyDecFailureReports field.

func (*PartialSuccessReport) SetRuleReports

func (o *PartialSuccessReport) SetRuleReports(v []RuleReport)

SetRuleReports gets a reference to the given []RuleReport and assigns it to the RuleReports field.

func (*PartialSuccessReport) SetSessRuleReports

func (o *PartialSuccessReport) SetSessRuleReports(v []SessionRuleReport)

SetSessRuleReports gets a reference to the given []SessionRuleReport and assigns it to the SessRuleReports field.

func (*PartialSuccessReport) SetUeCampingRep

func (o *PartialSuccessReport) SetUeCampingRep(v UeCampingRep)

SetUeCampingRep gets a reference to the given UeCampingRep and assigns it to the UeCampingRep field.

func (PartialSuccessReport) ToMap

func (o PartialSuccessReport) ToMap() (map[string]interface{}, error)

type PccRule

type PccRule struct {
	// An array of IP flow packet filter information.
	FlowInfos []FlowInformation `json:"flowInfos,omitempty"`
	// A reference to the application detection filter configured at the UPF.
	AppId *string `json:"appId,omitempty"`
	// string with format 'bytes' as defined in OpenAPI
	AppDescriptor *string `json:"appDescriptor,omitempty"`
	// Represents the content version of some content.
	ContVer *int32 `json:"contVer,omitempty"`
	// Univocally identifies the PCC rule within a PDU session.
	PccRuleId string `json:"pccRuleId"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	Precedence    *int32         `json:"precedence,omitempty"`
	AfSigProtocol *AfSigProtocol `json:"afSigProtocol,omitempty"`
	// Indication of application relocation possibility.
	AppReloc *bool `json:"appReloc,omitempty"`
	// Indicates the EAS rediscovery is required.
	EasRedisInd *bool `json:"easRedisInd,omitempty"`
	// A reference to the QosData policy decision type. It is the qosId described in  clause 5.6.2.8.
	RefQosData []string `json:"refQosData,omitempty"`
	// A Reference to the QosData policy decision type for the Alternative QoS parameter sets  of the service data flow.
	RefAltQosParams []string `json:"refAltQosParams,omitempty"`
	// A reference to the TrafficControlData policy decision type. It is the tcId described in  clause 5.6.2.10.
	RefTcData []string `json:"refTcData,omitempty"`
	// A reference to the ChargingData policy decision type. It is the chgId described in  clause 5.6.2.11.
	RefChgData []string `json:"refChgData,omitempty"`
	// A reference to the ChargingData policy decision type only applicable to Non-3GPP access if \"ATSSS\" feature is supported. It is the chgId described in clause 5.6.2.11.
	RefChgN3gData []string `json:"refChgN3gData,omitempty"`
	// A reference to UsageMonitoringData policy decision type. It is the umId described in  clause 5.6.2.12.
	RefUmData []string `json:"refUmData,omitempty"`
	// A reference to UsageMonitoringData policy decision type only applicable to Non-3GPP access if \"ATSSS\" feature is supported. It is the umId described in clause 5.6.2.12.
	RefUmN3gData []string `json:"refUmN3gData,omitempty"`
	// A reference to the condition data. It is the condId described in clause 5.6.2.9.
	RefCondData NullableString `json:"refCondData,omitempty"`
	// A reference to the QosMonitoringData policy decision type. It is the qmId described in  clause 5.6.2.40.
	RefQosMon     []string                    `json:"refQosMon,omitempty"`
	AddrPreserInd NullableBool                `json:"addrPreserInd,omitempty"`
	TscaiInputDl  NullableTscaiInputContainer `json:"tscaiInputDl,omitempty"`
	TscaiInputUl  NullableTscaiInputContainer `json:"tscaiInputUl,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	TscaiTimeDom *int32                                    `json:"tscaiTimeDom,omitempty"`
	DdNotifCtrl  *DownlinkDataNotificationControl          `json:"ddNotifCtrl,omitempty"`
	DdNotifCtrl2 NullableDownlinkDataNotificationControlRm `json:"ddNotifCtrl2,omitempty"`
	DisUeNotif   NullableBool                              `json:"disUeNotif,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	PackFiltAllPrec *int32 `json:"packFiltAllPrec,omitempty"`
}

PccRule Contains a PCC rule information.

func NewPccRule

func NewPccRule(pccRuleId string) *PccRule

NewPccRule instantiates a new PccRule object This constructor will assign default values to properties that have it defined, 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 NewPccRuleWithDefaults

func NewPccRuleWithDefaults() *PccRule

NewPccRuleWithDefaults instantiates a new PccRule object This 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 (*PccRule) GetAddrPreserInd

func (o *PccRule) GetAddrPreserInd() bool

GetAddrPreserInd returns the AddrPreserInd field value if set, zero value otherwise (both if not set or set to explicit null).

func (*PccRule) GetAddrPreserIndOk

func (o *PccRule) GetAddrPreserIndOk() (*bool, bool)

GetAddrPreserIndOk returns a tuple with the AddrPreserInd 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 (*PccRule) GetAfSigProtocol

func (o *PccRule) GetAfSigProtocol() AfSigProtocol

GetAfSigProtocol returns the AfSigProtocol field value if set, zero value otherwise.

func (*PccRule) GetAfSigProtocolOk

func (o *PccRule) GetAfSigProtocolOk() (*AfSigProtocol, bool)

GetAfSigProtocolOk returns a tuple with the AfSigProtocol field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PccRule) GetAppDescriptor

func (o *PccRule) GetAppDescriptor() string

GetAppDescriptor returns the AppDescriptor field value if set, zero value otherwise.

func (*PccRule) GetAppDescriptorOk

func (o *PccRule) GetAppDescriptorOk() (*string, bool)

GetAppDescriptorOk returns a tuple with the AppDescriptor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PccRule) GetAppId

func (o *PccRule) GetAppId() string

GetAppId returns the AppId field value if set, zero value otherwise.

func (*PccRule) GetAppIdOk

func (o *PccRule) GetAppIdOk() (*string, bool)

GetAppIdOk returns a tuple with the AppId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PccRule) GetAppReloc

func (o *PccRule) GetAppReloc() bool

GetAppReloc returns the AppReloc field value if set, zero value otherwise.

func (*PccRule) GetAppRelocOk

func (o *PccRule) GetAppRelocOk() (*bool, bool)

GetAppRelocOk returns a tuple with the AppReloc field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PccRule) GetContVer

func (o *PccRule) GetContVer() int32

GetContVer returns the ContVer field value if set, zero value otherwise.

func (*PccRule) GetContVerOk

func (o *PccRule) GetContVerOk() (*int32, bool)

GetContVerOk returns a tuple with the ContVer field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PccRule) GetDdNotifCtrl

func (o *PccRule) GetDdNotifCtrl() DownlinkDataNotificationControl

GetDdNotifCtrl returns the DdNotifCtrl field value if set, zero value otherwise.

func (*PccRule) GetDdNotifCtrl2

func (o *PccRule) GetDdNotifCtrl2() DownlinkDataNotificationControlRm

GetDdNotifCtrl2 returns the DdNotifCtrl2 field value if set, zero value otherwise (both if not set or set to explicit null).

func (*PccRule) GetDdNotifCtrl2Ok

func (o *PccRule) GetDdNotifCtrl2Ok() (*DownlinkDataNotificationControlRm, bool)

GetDdNotifCtrl2Ok returns a tuple with the DdNotifCtrl2 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 (*PccRule) GetDdNotifCtrlOk

func (o *PccRule) GetDdNotifCtrlOk() (*DownlinkDataNotificationControl, bool)

GetDdNotifCtrlOk returns a tuple with the DdNotifCtrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PccRule) GetDisUeNotif

func (o *PccRule) GetDisUeNotif() bool

GetDisUeNotif returns the DisUeNotif field value if set, zero value otherwise (both if not set or set to explicit null).

func (*PccRule) GetDisUeNotifOk

func (o *PccRule) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*PccRule) GetEasRedisInd

func (o *PccRule) GetEasRedisInd() bool

GetEasRedisInd returns the EasRedisInd field value if set, zero value otherwise.

func (*PccRule) GetEasRedisIndOk

func (o *PccRule) GetEasRedisIndOk() (*bool, bool)

GetEasRedisIndOk returns a tuple with the EasRedisInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PccRule) GetFlowInfos

func (o *PccRule) GetFlowInfos() []FlowInformation

GetFlowInfos returns the FlowInfos field value if set, zero value otherwise.

func (*PccRule) GetFlowInfosOk

func (o *PccRule) GetFlowInfosOk() ([]FlowInformation, bool)

GetFlowInfosOk returns a tuple with the FlowInfos field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PccRule) GetPackFiltAllPrec

func (o *PccRule) GetPackFiltAllPrec() int32

GetPackFiltAllPrec returns the PackFiltAllPrec field value if set, zero value otherwise.

func (*PccRule) GetPackFiltAllPrecOk

func (o *PccRule) GetPackFiltAllPrecOk() (*int32, bool)

GetPackFiltAllPrecOk returns a tuple with the PackFiltAllPrec field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PccRule) GetPccRuleId

func (o *PccRule) GetPccRuleId() string

GetPccRuleId returns the PccRuleId field value

func (*PccRule) GetPccRuleIdOk

func (o *PccRule) GetPccRuleIdOk() (*string, bool)

GetPccRuleIdOk returns a tuple with the PccRuleId field value and a boolean to check if the value has been set.

func (*PccRule) GetPrecedence

func (o *PccRule) GetPrecedence() int32

GetPrecedence returns the Precedence field value if set, zero value otherwise.

func (*PccRule) GetPrecedenceOk

func (o *PccRule) GetPrecedenceOk() (*int32, bool)

GetPrecedenceOk returns a tuple with the Precedence field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PccRule) GetRefAltQosParams

func (o *PccRule) GetRefAltQosParams() []string

GetRefAltQosParams returns the RefAltQosParams field value if set, zero value otherwise.

func (*PccRule) GetRefAltQosParamsOk

func (o *PccRule) GetRefAltQosParamsOk() ([]string, bool)

GetRefAltQosParamsOk returns a tuple with the RefAltQosParams field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PccRule) GetRefChgData

func (o *PccRule) GetRefChgData() []string

GetRefChgData returns the RefChgData field value if set, zero value otherwise (both if not set or set to explicit null).

func (*PccRule) GetRefChgDataOk

func (o *PccRule) GetRefChgDataOk() ([]string, bool)

GetRefChgDataOk returns a tuple with the RefChgData 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 (*PccRule) GetRefChgN3gData

func (o *PccRule) GetRefChgN3gData() []string

GetRefChgN3gData returns the RefChgN3gData field value if set, zero value otherwise (both if not set or set to explicit null).

func (*PccRule) GetRefChgN3gDataOk

func (o *PccRule) GetRefChgN3gDataOk() ([]string, bool)

GetRefChgN3gDataOk returns a tuple with the RefChgN3gData 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 (*PccRule) GetRefCondData

func (o *PccRule) GetRefCondData() string

GetRefCondData returns the RefCondData field value if set, zero value otherwise (both if not set or set to explicit null).

func (*PccRule) GetRefCondDataOk

func (o *PccRule) GetRefCondDataOk() (*string, bool)

GetRefCondDataOk returns a tuple with the RefCondData 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 (*PccRule) GetRefQosData

func (o *PccRule) GetRefQosData() []string

GetRefQosData returns the RefQosData field value if set, zero value otherwise.

func (*PccRule) GetRefQosDataOk

func (o *PccRule) GetRefQosDataOk() ([]string, bool)

GetRefQosDataOk returns a tuple with the RefQosData field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PccRule) GetRefQosMon

func (o *PccRule) GetRefQosMon() []string

GetRefQosMon returns the RefQosMon field value if set, zero value otherwise (both if not set or set to explicit null).

func (*PccRule) GetRefQosMonOk

func (o *PccRule) GetRefQosMonOk() ([]string, bool)

GetRefQosMonOk returns a tuple with the RefQosMon 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 (*PccRule) GetRefTcData

func (o *PccRule) GetRefTcData() []string

GetRefTcData returns the RefTcData field value if set, zero value otherwise.

func (*PccRule) GetRefTcDataOk

func (o *PccRule) GetRefTcDataOk() ([]string, bool)

GetRefTcDataOk returns a tuple with the RefTcData field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PccRule) GetRefUmData

func (o *PccRule) GetRefUmData() []string

GetRefUmData returns the RefUmData field value if set, zero value otherwise (both if not set or set to explicit null).

func (*PccRule) GetRefUmDataOk

func (o *PccRule) GetRefUmDataOk() ([]string, bool)

GetRefUmDataOk returns a tuple with the RefUmData 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 (*PccRule) GetRefUmN3gData

func (o *PccRule) GetRefUmN3gData() []string

GetRefUmN3gData returns the RefUmN3gData field value if set, zero value otherwise (both if not set or set to explicit null).

func (*PccRule) GetRefUmN3gDataOk

func (o *PccRule) GetRefUmN3gDataOk() ([]string, bool)

GetRefUmN3gDataOk returns a tuple with the RefUmN3gData 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 (*PccRule) GetTscaiInputDl

func (o *PccRule) GetTscaiInputDl() TscaiInputContainer

GetTscaiInputDl returns the TscaiInputDl field value if set, zero value otherwise (both if not set or set to explicit null).

func (*PccRule) GetTscaiInputDlOk

func (o *PccRule) GetTscaiInputDlOk() (*TscaiInputContainer, bool)

GetTscaiInputDlOk returns a tuple with the TscaiInputDl field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*PccRule) GetTscaiInputUl

func (o *PccRule) GetTscaiInputUl() TscaiInputContainer

GetTscaiInputUl returns the TscaiInputUl field value if set, zero value otherwise (both if not set or set to explicit null).

func (*PccRule) GetTscaiInputUlOk

func (o *PccRule) GetTscaiInputUlOk() (*TscaiInputContainer, bool)

GetTscaiInputUlOk returns a tuple with the TscaiInputUl field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*PccRule) GetTscaiTimeDom

func (o *PccRule) GetTscaiTimeDom() int32

GetTscaiTimeDom returns the TscaiTimeDom field value if set, zero value otherwise.

func (*PccRule) GetTscaiTimeDomOk

func (o *PccRule) GetTscaiTimeDomOk() (*int32, bool)

GetTscaiTimeDomOk returns a tuple with the TscaiTimeDom field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PccRule) HasAddrPreserInd

func (o *PccRule) HasAddrPreserInd() bool

HasAddrPreserInd returns a boolean if a field has been set.

func (*PccRule) HasAfSigProtocol

func (o *PccRule) HasAfSigProtocol() bool

HasAfSigProtocol returns a boolean if a field has been set.

func (*PccRule) HasAppDescriptor

func (o *PccRule) HasAppDescriptor() bool

HasAppDescriptor returns a boolean if a field has been set.

func (*PccRule) HasAppId

func (o *PccRule) HasAppId() bool

HasAppId returns a boolean if a field has been set.

func (*PccRule) HasAppReloc

func (o *PccRule) HasAppReloc() bool

HasAppReloc returns a boolean if a field has been set.

func (*PccRule) HasContVer

func (o *PccRule) HasContVer() bool

HasContVer returns a boolean if a field has been set.

func (*PccRule) HasDdNotifCtrl

func (o *PccRule) HasDdNotifCtrl() bool

HasDdNotifCtrl returns a boolean if a field has been set.

func (*PccRule) HasDdNotifCtrl2

func (o *PccRule) HasDdNotifCtrl2() bool

HasDdNotifCtrl2 returns a boolean if a field has been set.

func (*PccRule) HasDisUeNotif

func (o *PccRule) HasDisUeNotif() bool

HasDisUeNotif returns a boolean if a field has been set.

func (*PccRule) HasEasRedisInd

func (o *PccRule) HasEasRedisInd() bool

HasEasRedisInd returns a boolean if a field has been set.

func (*PccRule) HasFlowInfos

func (o *PccRule) HasFlowInfos() bool

HasFlowInfos returns a boolean if a field has been set.

func (*PccRule) HasPackFiltAllPrec

func (o *PccRule) HasPackFiltAllPrec() bool

HasPackFiltAllPrec returns a boolean if a field has been set.

func (*PccRule) HasPrecedence

func (o *PccRule) HasPrecedence() bool

HasPrecedence returns a boolean if a field has been set.

func (*PccRule) HasRefAltQosParams

func (o *PccRule) HasRefAltQosParams() bool

HasRefAltQosParams returns a boolean if a field has been set.

func (*PccRule) HasRefChgData

func (o *PccRule) HasRefChgData() bool

HasRefChgData returns a boolean if a field has been set.

func (*PccRule) HasRefChgN3gData

func (o *PccRule) HasRefChgN3gData() bool

HasRefChgN3gData returns a boolean if a field has been set.

func (*PccRule) HasRefCondData

func (o *PccRule) HasRefCondData() bool

HasRefCondData returns a boolean if a field has been set.

func (*PccRule) HasRefQosData

func (o *PccRule) HasRefQosData() bool

HasRefQosData returns a boolean if a field has been set.

func (*PccRule) HasRefQosMon

func (o *PccRule) HasRefQosMon() bool

HasRefQosMon returns a boolean if a field has been set.

func (*PccRule) HasRefTcData

func (o *PccRule) HasRefTcData() bool

HasRefTcData returns a boolean if a field has been set.

func (*PccRule) HasRefUmData

func (o *PccRule) HasRefUmData() bool

HasRefUmData returns a boolean if a field has been set.

func (*PccRule) HasRefUmN3gData

func (o *PccRule) HasRefUmN3gData() bool

HasRefUmN3gData returns a boolean if a field has been set.

func (*PccRule) HasTscaiInputDl

func (o *PccRule) HasTscaiInputDl() bool

HasTscaiInputDl returns a boolean if a field has been set.

func (*PccRule) HasTscaiInputUl

func (o *PccRule) HasTscaiInputUl() bool

HasTscaiInputUl returns a boolean if a field has been set.

func (*PccRule) HasTscaiTimeDom

func (o *PccRule) HasTscaiTimeDom() bool

HasTscaiTimeDom returns a boolean if a field has been set.

func (PccRule) MarshalJSON

func (o PccRule) MarshalJSON() ([]byte, error)

func (*PccRule) SetAddrPreserInd

func (o *PccRule) SetAddrPreserInd(v bool)

SetAddrPreserInd gets a reference to the given NullableBool and assigns it to the AddrPreserInd field.

func (*PccRule) SetAddrPreserIndNil

func (o *PccRule) SetAddrPreserIndNil()

SetAddrPreserIndNil sets the value for AddrPreserInd to be an explicit nil

func (*PccRule) SetAfSigProtocol

func (o *PccRule) SetAfSigProtocol(v AfSigProtocol)

SetAfSigProtocol gets a reference to the given AfSigProtocol and assigns it to the AfSigProtocol field.

func (*PccRule) SetAppDescriptor

func (o *PccRule) SetAppDescriptor(v string)

SetAppDescriptor gets a reference to the given string and assigns it to the AppDescriptor field.

func (*PccRule) SetAppId

func (o *PccRule) SetAppId(v string)

SetAppId gets a reference to the given string and assigns it to the AppId field.

func (*PccRule) SetAppReloc

func (o *PccRule) SetAppReloc(v bool)

SetAppReloc gets a reference to the given bool and assigns it to the AppReloc field.

func (*PccRule) SetContVer

func (o *PccRule) SetContVer(v int32)

SetContVer gets a reference to the given int32 and assigns it to the ContVer field.

func (*PccRule) SetDdNotifCtrl

func (o *PccRule) SetDdNotifCtrl(v DownlinkDataNotificationControl)

SetDdNotifCtrl gets a reference to the given DownlinkDataNotificationControl and assigns it to the DdNotifCtrl field.

func (*PccRule) SetDdNotifCtrl2

func (o *PccRule) SetDdNotifCtrl2(v DownlinkDataNotificationControlRm)

SetDdNotifCtrl2 gets a reference to the given NullableDownlinkDataNotificationControlRm and assigns it to the DdNotifCtrl2 field.

func (*PccRule) SetDdNotifCtrl2Nil

func (o *PccRule) SetDdNotifCtrl2Nil()

SetDdNotifCtrl2Nil sets the value for DdNotifCtrl2 to be an explicit nil

func (*PccRule) SetDisUeNotif

func (o *PccRule) SetDisUeNotif(v bool)

SetDisUeNotif gets a reference to the given NullableBool and assigns it to the DisUeNotif field.

func (*PccRule) SetDisUeNotifNil

func (o *PccRule) SetDisUeNotifNil()

SetDisUeNotifNil sets the value for DisUeNotif to be an explicit nil

func (*PccRule) SetEasRedisInd

func (o *PccRule) SetEasRedisInd(v bool)

SetEasRedisInd gets a reference to the given bool and assigns it to the EasRedisInd field.

func (*PccRule) SetFlowInfos

func (o *PccRule) SetFlowInfos(v []FlowInformation)

SetFlowInfos gets a reference to the given []FlowInformation and assigns it to the FlowInfos field.

func (*PccRule) SetPackFiltAllPrec

func (o *PccRule) SetPackFiltAllPrec(v int32)

SetPackFiltAllPrec gets a reference to the given int32 and assigns it to the PackFiltAllPrec field.

func (*PccRule) SetPccRuleId

func (o *PccRule) SetPccRuleId(v string)

SetPccRuleId sets field value

func (*PccRule) SetPrecedence

func (o *PccRule) SetPrecedence(v int32)

SetPrecedence gets a reference to the given int32 and assigns it to the Precedence field.

func (*PccRule) SetRefAltQosParams

func (o *PccRule) SetRefAltQosParams(v []string)

SetRefAltQosParams gets a reference to the given []string and assigns it to the RefAltQosParams field.

func (*PccRule) SetRefChgData

func (o *PccRule) SetRefChgData(v []string)

SetRefChgData gets a reference to the given []string and assigns it to the RefChgData field.

func (*PccRule) SetRefChgN3gData

func (o *PccRule) SetRefChgN3gData(v []string)

SetRefChgN3gData gets a reference to the given []string and assigns it to the RefChgN3gData field.

func (*PccRule) SetRefCondData

func (o *PccRule) SetRefCondData(v string)

SetRefCondData gets a reference to the given NullableString and assigns it to the RefCondData field.

func (*PccRule) SetRefCondDataNil

func (o *PccRule) SetRefCondDataNil()

SetRefCondDataNil sets the value for RefCondData to be an explicit nil

func (*PccRule) SetRefQosData

func (o *PccRule) SetRefQosData(v []string)

SetRefQosData gets a reference to the given []string and assigns it to the RefQosData field.

func (*PccRule) SetRefQosMon

func (o *PccRule) SetRefQosMon(v []string)

SetRefQosMon gets a reference to the given []string and assigns it to the RefQosMon field.

func (*PccRule) SetRefTcData

func (o *PccRule) SetRefTcData(v []string)

SetRefTcData gets a reference to the given []string and assigns it to the RefTcData field.

func (*PccRule) SetRefUmData

func (o *PccRule) SetRefUmData(v []string)

SetRefUmData gets a reference to the given []string and assigns it to the RefUmData field.

func (*PccRule) SetRefUmN3gData

func (o *PccRule) SetRefUmN3gData(v []string)

SetRefUmN3gData gets a reference to the given []string and assigns it to the RefUmN3gData field.

func (*PccRule) SetTscaiInputDl

func (o *PccRule) SetTscaiInputDl(v TscaiInputContainer)

SetTscaiInputDl gets a reference to the given NullableTscaiInputContainer and assigns it to the TscaiInputDl field.

func (*PccRule) SetTscaiInputDlNil

func (o *PccRule) SetTscaiInputDlNil()

SetTscaiInputDlNil sets the value for TscaiInputDl to be an explicit nil

func (*PccRule) SetTscaiInputUl

func (o *PccRule) SetTscaiInputUl(v TscaiInputContainer)

SetTscaiInputUl gets a reference to the given NullableTscaiInputContainer and assigns it to the TscaiInputUl field.

func (*PccRule) SetTscaiInputUlNil

func (o *PccRule) SetTscaiInputUlNil()

SetTscaiInputUlNil sets the value for TscaiInputUl to be an explicit nil

func (*PccRule) SetTscaiTimeDom

func (o *PccRule) SetTscaiTimeDom(v int32)

SetTscaiTimeDom gets a reference to the given int32 and assigns it to the TscaiTimeDom field.

func (PccRule) ToMap

func (o PccRule) ToMap() (map[string]interface{}, error)

func (*PccRule) UnsetAddrPreserInd

func (o *PccRule) UnsetAddrPreserInd()

UnsetAddrPreserInd ensures that no value is present for AddrPreserInd, not even an explicit nil

func (*PccRule) UnsetDdNotifCtrl2

func (o *PccRule) UnsetDdNotifCtrl2()

UnsetDdNotifCtrl2 ensures that no value is present for DdNotifCtrl2, not even an explicit nil

func (*PccRule) UnsetDisUeNotif

func (o *PccRule) UnsetDisUeNotif()

UnsetDisUeNotif ensures that no value is present for DisUeNotif, not even an explicit nil

func (*PccRule) UnsetRefCondData

func (o *PccRule) UnsetRefCondData()

UnsetRefCondData ensures that no value is present for RefCondData, not even an explicit nil

func (*PccRule) UnsetTscaiInputDl

func (o *PccRule) UnsetTscaiInputDl()

UnsetTscaiInputDl ensures that no value is present for TscaiInputDl, not even an explicit nil

func (*PccRule) UnsetTscaiInputUl

func (o *PccRule) UnsetTscaiInputUl()

UnsetTscaiInputUl ensures that no value is present for TscaiInputUl, not even an explicit nil

type PcfUeCallbackInfo

type PcfUeCallbackInfo struct {
	// String providing an URI formatted according to RFC 3986.
	CallbackUri string  `json:"callbackUri"`
	BindingInfo *string `json:"bindingInfo,omitempty"`
}

PcfUeCallbackInfo Contains the PCF for the UE information necessary for the PCF for the PDU session to send SM Policy Association Establishment and Termination events.

func NewPcfUeCallbackInfo

func NewPcfUeCallbackInfo(callbackUri string) *PcfUeCallbackInfo

NewPcfUeCallbackInfo instantiates a new PcfUeCallbackInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPcfUeCallbackInfoWithDefaults

func NewPcfUeCallbackInfoWithDefaults() *PcfUeCallbackInfo

NewPcfUeCallbackInfoWithDefaults instantiates a new PcfUeCallbackInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PcfUeCallbackInfo) GetBindingInfo

func (o *PcfUeCallbackInfo) GetBindingInfo() string

GetBindingInfo returns the BindingInfo field value if set, zero value otherwise.

func (*PcfUeCallbackInfo) GetBindingInfoOk

func (o *PcfUeCallbackInfo) GetBindingInfoOk() (*string, bool)

GetBindingInfoOk returns a tuple with the BindingInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PcfUeCallbackInfo) GetCallbackUri

func (o *PcfUeCallbackInfo) GetCallbackUri() string

GetCallbackUri returns the CallbackUri field value

func (*PcfUeCallbackInfo) GetCallbackUriOk

func (o *PcfUeCallbackInfo) GetCallbackUriOk() (*string, bool)

GetCallbackUriOk returns a tuple with the CallbackUri field value and a boolean to check if the value has been set.

func (*PcfUeCallbackInfo) HasBindingInfo

func (o *PcfUeCallbackInfo) HasBindingInfo() bool

HasBindingInfo returns a boolean if a field has been set.

func (PcfUeCallbackInfo) MarshalJSON

func (o PcfUeCallbackInfo) MarshalJSON() ([]byte, error)

func (*PcfUeCallbackInfo) SetBindingInfo

func (o *PcfUeCallbackInfo) SetBindingInfo(v string)

SetBindingInfo gets a reference to the given string and assigns it to the BindingInfo field.

func (*PcfUeCallbackInfo) SetCallbackUri

func (o *PcfUeCallbackInfo) SetCallbackUri(v string)

SetCallbackUri sets field value

func (PcfUeCallbackInfo) ToMap

func (o PcfUeCallbackInfo) ToMap() (map[string]interface{}, error)

type PduSessionRelCause

type PduSessionRelCause struct {
	String *string
}

PduSessionRelCause Contains the SMF PDU Session release cause.

func (*PduSessionRelCause) MarshalJSON

func (src *PduSessionRelCause) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*PduSessionRelCause) UnmarshalJSON

func (dst *PduSessionRelCause) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type PduSessionType

type PduSessionType struct {
	String *string
}

PduSessionType PduSessionType indicates the type of a PDU session. It shall comply with the provisions defined in table 5.4.3.3-1.

func (*PduSessionType) MarshalJSON

func (src *PduSessionType) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*PduSessionType) UnmarshalJSON

func (dst *PduSessionType) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type PlmnId

type PlmnId struct {
	// Mobile Country Code part of the PLMN, comprising 3 digits, as defined in clause 9.3.3.5 of 3GPP TS 38.413.
	Mcc string `json:"mcc"`
	// Mobile Network Code part of the PLMN, comprising 2 or 3 digits, as defined in clause 9.3.3.5 of 3GPP TS 38.413.
	Mnc string `json:"mnc"`
}

PlmnId When PlmnId needs to be converted to string (e.g. when used in maps as key), the string shall be composed of three digits \"mcc\" followed by \"-\" and two or three digits \"mnc\".

func NewPlmnId

func NewPlmnId(mcc string, mnc string) *PlmnId

NewPlmnId instantiates a new PlmnId object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPlmnIdWithDefaults

func NewPlmnIdWithDefaults() *PlmnId

NewPlmnIdWithDefaults instantiates a new PlmnId object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PlmnId) GetMcc

func (o *PlmnId) GetMcc() string

GetMcc returns the Mcc field value

func (*PlmnId) GetMccOk

func (o *PlmnId) GetMccOk() (*string, bool)

GetMccOk returns a tuple with the Mcc field value and a boolean to check if the value has been set.

func (*PlmnId) GetMnc

func (o *PlmnId) GetMnc() string

GetMnc returns the Mnc field value

func (*PlmnId) GetMncOk

func (o *PlmnId) GetMncOk() (*string, bool)

GetMncOk returns a tuple with the Mnc field value and a boolean to check if the value has been set.

func (PlmnId) MarshalJSON

func (o PlmnId) MarshalJSON() ([]byte, error)

func (*PlmnId) SetMcc

func (o *PlmnId) SetMcc(v string)

SetMcc sets field value

func (*PlmnId) SetMnc

func (o *PlmnId) SetMnc(v string)

SetMnc sets field value

func (PlmnId) ToMap

func (o PlmnId) ToMap() (map[string]interface{}, error)

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 PolicyControlRequestTrigger

type PolicyControlRequestTrigger struct {
	String *string
}

PolicyControlRequestTrigger Possible values are: - PLMN_CH: PLMN Change - RES_MO_RE: A request for resource modification has been received by the SMF. The SMF always reports to the PCF. - AC_TY_CH: Access Type Change - UE_IP_CH: UE IP address change. The SMF always reports to the PCF. - UE_MAC_CH: A new UE MAC address is detected or a used UE MAC address is inactive for a specific period - AN_CH_COR: Access Network Charging Correlation Information - US_RE: The PDU Session or the Monitoring key specific resources consumed by a UE either reached the threshold or needs to be reported for other reasons. - APP_STA: The start of application traffic has been detected. - APP_STO: The stop of application traffic has been detected. - AN_INFO: Access Network Information report - CM_SES_FAIL: Credit management session failure - PS_DA_OFF: The SMF reports when the 3GPP PS Data Off status changes. The SMF always reports to the PCF. - DEF_QOS_CH: Default QoS Change. The SMF always reports to the PCF. - SE_AMBR_CH: Session-AMBR Change. The SMF always reports to the PCF. - QOS_NOTIF: The SMF notify the PCF when receiving notification from RAN that QoS targets of the QoS Flow cannot be guranteed or gurateed again. - NO_CREDIT: Out of credit - REALLO_OF_CREDIT: Reallocation of credit - PRA_CH: Change of UE presence in Presence Reporting Area - SAREA_CH: Location Change with respect to the Serving Area - SCNN_CH: Location Change with respect to the Serving CN node - RE_TIMEOUT: Indicates the SMF generated the request because there has been a PCC revalidation timeout - RES_RELEASE: Indicate that the SMF can inform the PCF of the outcome of the release of resources for those rules that require so. - SUCC_RES_ALLO: Indicates that the requested rule data is the successful resource allocation. - RAI_CH: Location Change with respect to the RAI of GERAN and UTRAN. - RAT_TY_CH: RAT Type Change. - REF_QOS_IND_CH: Reflective QoS indication Change - NUM_OF_PACKET_FILTER: Indicates that the SMF shall report the number of supported packet filter for signalled QoS rules - UE_STATUS_RESUME: Indicates that the UE's status is resumed. - UE_TZ_CH: UE Time Zone Change - AUTH_PROF_CH: The DN-AAA authorization profile index has changed - QOS_MONITORING: Indicate that the SMF notifies the PCF of the QoS Monitoring information. - SCELL_CH: Location Change with respect to the Serving Cell. - USER_LOCATION_CH: Indicate that user location has been changed, applicable to serving area change and serving cell change. - EPS_FALLBACK: EPS Fallback report is enabled in the SMF. - MA_PDU: UE Indicates that the SMF notifies the PCF of the MA PDU session request - TSN_BRIDGE_INFO: TSC user plane node information available - 5G_RG_JOIN: The 5G-RG has joined to an IP Multicast Group. - 5G_RG_LEAVE: The 5G-RG has left an IP Multicast Group. - DDN_FAILURE: Event subscription for DDN Failure event received. - DDN_DELIVERY_STATUS: Event subscription for DDN Delivery Status received. - GROUP_ID_LIST_CHG: UE Internal Group Identifier(s) has changed: the SMF reports that UDM provided list of group Ids has changed. - DDN_FAILURE_CANCELLATION: The event subscription for DDN Failure event is cancelled. - DDN_DELIVERY_STATUS_CANCELLATION: The event subscription for DDD STATUS is cancelled. - VPLMN_QOS_CH: Change of the QoS supported in the VPLMN. - SUCC_QOS_UPDATE: Indicates that the requested MPS Action is successful. - SAT_CATEGORY_CHG: Indicates that the SMF has detected a change between different satellite backhaul categories, or between a satellite backhaul and a non-satellite backhaul. - PCF_UE_NOTIF_IND: Indicates the SMF has detected the AMF forwarded the PCF for the UE indication to receive/stop receiving notifications of SM Policy association established/terminated events. - NWDAF_DATA_CHG: Indicates that the NWDAF instance IDs used for the PDU session and/or associated Analytics IDs used for the PDU session and available in the SMF have changed.

func (*PolicyControlRequestTrigger) MarshalJSON

func (src *PolicyControlRequestTrigger) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*PolicyControlRequestTrigger) UnmarshalJSON

func (dst *PolicyControlRequestTrigger) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type PolicyDecisionFailureCode

type PolicyDecisionFailureCode struct {
	String *string
}

PolicyDecisionFailureCode Indicates the type of the failed policy decision and/or condition data.

func (*PolicyDecisionFailureCode) MarshalJSON

func (src *PolicyDecisionFailureCode) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*PolicyDecisionFailureCode) UnmarshalJSON

func (dst *PolicyDecisionFailureCode) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type PortManagementContainer

type PortManagementContainer struct {
	// string with format 'bytes' as defined in OpenAPI
	PortManCont string `json:"portManCont"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	PortNum int32 `json:"portNum"`
}

PortManagementContainer Contains the port management information container for a port.

func NewPortManagementContainer

func NewPortManagementContainer(portManCont string, portNum int32) *PortManagementContainer

NewPortManagementContainer instantiates a new PortManagementContainer object This constructor will assign default values to properties that have it defined, 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 NewPortManagementContainerWithDefaults

func NewPortManagementContainerWithDefaults() *PortManagementContainer

NewPortManagementContainerWithDefaults instantiates a new PortManagementContainer object This 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 (*PortManagementContainer) GetPortManCont

func (o *PortManagementContainer) GetPortManCont() string

GetPortManCont returns the PortManCont field value

func (*PortManagementContainer) GetPortManContOk

func (o *PortManagementContainer) GetPortManContOk() (*string, bool)

GetPortManContOk returns a tuple with the PortManCont field value and a boolean to check if the value has been set.

func (*PortManagementContainer) GetPortNum

func (o *PortManagementContainer) GetPortNum() int32

GetPortNum returns the PortNum field value

func (*PortManagementContainer) GetPortNumOk

func (o *PortManagementContainer) GetPortNumOk() (*int32, bool)

GetPortNumOk returns a tuple with the PortNum field value and a boolean to check if the value has been set.

func (PortManagementContainer) MarshalJSON

func (o PortManagementContainer) MarshalJSON() ([]byte, error)

func (*PortManagementContainer) SetPortManCont

func (o *PortManagementContainer) SetPortManCont(v string)

SetPortManCont sets field value

func (*PortManagementContainer) SetPortNum

func (o *PortManagementContainer) SetPortNum(v int32)

SetPortNum sets field value

func (PortManagementContainer) ToMap

func (o PortManagementContainer) ToMap() (map[string]interface{}, error)

type PreemptionCapability

type PreemptionCapability struct {
	String *string
}

PreemptionCapability The enumeration PreemptionCapability indicates the pre-emption capability of a request on other QoS flows. See clause 5.7.2.2 of 3GPP TS 23.501. It shall comply with the provisions defined in table 5.5.3.1-1.

func (*PreemptionCapability) MarshalJSON

func (src *PreemptionCapability) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*PreemptionCapability) UnmarshalJSON

func (dst *PreemptionCapability) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type PreemptionVulnerability

type PreemptionVulnerability struct {
	String *string
}

PreemptionVulnerability The enumeration PreemptionVulnerability indicates the pre-emption vulnerability of the QoS flow to pre-emption from other QoS flows. See clause 5.7.2.2 of 3GPP TS 23.501. It shall comply with the provisions defined in table 5.5.3.2-1

func (*PreemptionVulnerability) MarshalJSON

func (src *PreemptionVulnerability) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*PreemptionVulnerability) UnmarshalJSON

func (dst *PreemptionVulnerability) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type PresenceInfo

type PresenceInfo struct {
	// Represents an identifier of the Presence Reporting Area (see clause 28.10 of 3GPP  TS 23.003.  This IE shall be present  if the Area of Interest subscribed or reported is a Presence Reporting Area or a Set of Core Network predefined Presence Reporting Areas. When present, it shall be encoded as a string representing an integer in the following ranges: 0 to 8 388 607 for UE-dedicated PRA 8 388 608 to 16 777 215 for Core Network predefined PRA Examples: PRA ID 123 is encoded as \"123\" PRA ID 11 238 660 is encoded as \"11238660\"
	PraId *string `json:"praId,omitempty"`
	// This IE may be present if the praId IE is present and if it contains a PRA identifier referring to a set of Core Network predefined Presence Reporting Areas. When present, this IE shall contain a PRA Identifier of an individual PRA within the Set of Core Network predefined Presence Reporting Areas indicated by the praId IE.
	AdditionalPraId *string        `json:"additionalPraId,omitempty"`
	PresenceState   *PresenceState `json:"presenceState,omitempty"`
	// Represents the list of tracking areas that constitutes the area. This IE shall be present if the subscription or  the event report is for tracking UE presence in the tracking areas. For non 3GPP access the TAI shall be the N3GPP TAI.
	TrackingAreaList []Tai `json:"trackingAreaList,omitempty"`
	// Represents the list of EUTRAN cell Ids that constitutes the area. This IE shall be present if the Area of Interest subscribed is a list of EUTRAN cell Ids.
	EcgiList []Ecgi `json:"ecgiList,omitempty"`
	// Represents the list of NR cell Ids that constitutes the area. This IE shall be present if the Area of Interest subscribed is a list of NR cell Ids.
	NcgiList []Ncgi `json:"ncgiList,omitempty"`
	// Represents the list of NG RAN node identifiers that constitutes the area. This IE shall be present if the Area of Interest subscribed is a list of NG RAN node identifiers.
	GlobalRanNodeIdList []GlobalRanNodeId `json:"globalRanNodeIdList,omitempty"`
	// Represents the list of eNodeB identifiers that constitutes the area. This IE shall be  present if the Area of Interest subscribed is a list of eNodeB identifiers.
	GlobaleNbIdList []GlobalRanNodeId `json:"globaleNbIdList,omitempty"`
}

PresenceInfo If the additionalPraId IE is present, this IE shall state the presence information of the UE for the individual PRA identified by the additionalPraId IE; If the additionalPraId IE is not present, this IE shall state the presence information of the UE for the PRA identified by the praId IE.

func NewPresenceInfo

func NewPresenceInfo() *PresenceInfo

NewPresenceInfo instantiates a new PresenceInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPresenceInfoWithDefaults

func NewPresenceInfoWithDefaults() *PresenceInfo

NewPresenceInfoWithDefaults instantiates a new PresenceInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PresenceInfo) GetAdditionalPraId

func (o *PresenceInfo) GetAdditionalPraId() string

GetAdditionalPraId returns the AdditionalPraId field value if set, zero value otherwise.

func (*PresenceInfo) GetAdditionalPraIdOk

func (o *PresenceInfo) GetAdditionalPraIdOk() (*string, bool)

GetAdditionalPraIdOk returns a tuple with the AdditionalPraId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PresenceInfo) GetEcgiList

func (o *PresenceInfo) GetEcgiList() []Ecgi

GetEcgiList returns the EcgiList field value if set, zero value otherwise.

func (*PresenceInfo) GetEcgiListOk

func (o *PresenceInfo) GetEcgiListOk() ([]Ecgi, bool)

GetEcgiListOk returns a tuple with the EcgiList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PresenceInfo) GetGlobalRanNodeIdList

func (o *PresenceInfo) GetGlobalRanNodeIdList() []GlobalRanNodeId

GetGlobalRanNodeIdList returns the GlobalRanNodeIdList field value if set, zero value otherwise.

func (*PresenceInfo) GetGlobalRanNodeIdListOk

func (o *PresenceInfo) GetGlobalRanNodeIdListOk() ([]GlobalRanNodeId, bool)

GetGlobalRanNodeIdListOk returns a tuple with the GlobalRanNodeIdList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PresenceInfo) GetGlobaleNbIdList

func (o *PresenceInfo) GetGlobaleNbIdList() []GlobalRanNodeId

GetGlobaleNbIdList returns the GlobaleNbIdList field value if set, zero value otherwise.

func (*PresenceInfo) GetGlobaleNbIdListOk

func (o *PresenceInfo) GetGlobaleNbIdListOk() ([]GlobalRanNodeId, bool)

GetGlobaleNbIdListOk returns a tuple with the GlobaleNbIdList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PresenceInfo) GetNcgiList

func (o *PresenceInfo) GetNcgiList() []Ncgi

GetNcgiList returns the NcgiList field value if set, zero value otherwise.

func (*PresenceInfo) GetNcgiListOk

func (o *PresenceInfo) GetNcgiListOk() ([]Ncgi, bool)

GetNcgiListOk returns a tuple with the NcgiList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PresenceInfo) GetPraId

func (o *PresenceInfo) GetPraId() string

GetPraId returns the PraId field value if set, zero value otherwise.

func (*PresenceInfo) GetPraIdOk

func (o *PresenceInfo) GetPraIdOk() (*string, bool)

GetPraIdOk returns a tuple with the PraId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PresenceInfo) GetPresenceState

func (o *PresenceInfo) GetPresenceState() PresenceState

GetPresenceState returns the PresenceState field value if set, zero value otherwise.

func (*PresenceInfo) GetPresenceStateOk

func (o *PresenceInfo) GetPresenceStateOk() (*PresenceState, bool)

GetPresenceStateOk returns a tuple with the PresenceState field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PresenceInfo) GetTrackingAreaList

func (o *PresenceInfo) GetTrackingAreaList() []Tai

GetTrackingAreaList returns the TrackingAreaList field value if set, zero value otherwise.

func (*PresenceInfo) GetTrackingAreaListOk

func (o *PresenceInfo) GetTrackingAreaListOk() ([]Tai, bool)

GetTrackingAreaListOk returns a tuple with the TrackingAreaList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PresenceInfo) HasAdditionalPraId

func (o *PresenceInfo) HasAdditionalPraId() bool

HasAdditionalPraId returns a boolean if a field has been set.

func (*PresenceInfo) HasEcgiList

func (o *PresenceInfo) HasEcgiList() bool

HasEcgiList returns a boolean if a field has been set.

func (*PresenceInfo) HasGlobalRanNodeIdList

func (o *PresenceInfo) HasGlobalRanNodeIdList() bool

HasGlobalRanNodeIdList returns a boolean if a field has been set.

func (*PresenceInfo) HasGlobaleNbIdList

func (o *PresenceInfo) HasGlobaleNbIdList() bool

HasGlobaleNbIdList returns a boolean if a field has been set.

func (*PresenceInfo) HasNcgiList

func (o *PresenceInfo) HasNcgiList() bool

HasNcgiList returns a boolean if a field has been set.

func (*PresenceInfo) HasPraId

func (o *PresenceInfo) HasPraId() bool

HasPraId returns a boolean if a field has been set.

func (*PresenceInfo) HasPresenceState

func (o *PresenceInfo) HasPresenceState() bool

HasPresenceState returns a boolean if a field has been set.

func (*PresenceInfo) HasTrackingAreaList

func (o *PresenceInfo) HasTrackingAreaList() bool

HasTrackingAreaList returns a boolean if a field has been set.

func (PresenceInfo) MarshalJSON

func (o PresenceInfo) MarshalJSON() ([]byte, error)

func (*PresenceInfo) SetAdditionalPraId

func (o *PresenceInfo) SetAdditionalPraId(v string)

SetAdditionalPraId gets a reference to the given string and assigns it to the AdditionalPraId field.

func (*PresenceInfo) SetEcgiList

func (o *PresenceInfo) SetEcgiList(v []Ecgi)

SetEcgiList gets a reference to the given []Ecgi and assigns it to the EcgiList field.

func (*PresenceInfo) SetGlobalRanNodeIdList

func (o *PresenceInfo) SetGlobalRanNodeIdList(v []GlobalRanNodeId)

SetGlobalRanNodeIdList gets a reference to the given []GlobalRanNodeId and assigns it to the GlobalRanNodeIdList field.

func (*PresenceInfo) SetGlobaleNbIdList

func (o *PresenceInfo) SetGlobaleNbIdList(v []GlobalRanNodeId)

SetGlobaleNbIdList gets a reference to the given []GlobalRanNodeId and assigns it to the GlobaleNbIdList field.

func (*PresenceInfo) SetNcgiList

func (o *PresenceInfo) SetNcgiList(v []Ncgi)

SetNcgiList gets a reference to the given []Ncgi and assigns it to the NcgiList field.

func (*PresenceInfo) SetPraId

func (o *PresenceInfo) SetPraId(v string)

SetPraId gets a reference to the given string and assigns it to the PraId field.

func (*PresenceInfo) SetPresenceState

func (o *PresenceInfo) SetPresenceState(v PresenceState)

SetPresenceState gets a reference to the given PresenceState and assigns it to the PresenceState field.

func (*PresenceInfo) SetTrackingAreaList

func (o *PresenceInfo) SetTrackingAreaList(v []Tai)

SetTrackingAreaList gets a reference to the given []Tai and assigns it to the TrackingAreaList field.

func (PresenceInfo) ToMap

func (o PresenceInfo) ToMap() (map[string]interface{}, error)

type PresenceInfoRm

type PresenceInfoRm struct {
	// Represents an identifier of the Presence Reporting Area (see clause 28.10 of  3GPP TS 23.003. This IE shall be present  if the Area of Interest subscribed or reported is a Presence Reporting Area or a Set of Core Network predefined Presence Reporting Areas. When present, it shall be encoded as a string representing an integer in the following ranges: - 0 to 8 388 607 for UE-dedicated PRA - 8 388 608 to 16 777 215 for Core Network predefined PRA Examples: PRA ID 123 is encoded as \"123\" PRA ID 11 238 660 is encoded as \"11238660\"
	PraId *string `json:"praId,omitempty"`
	// This IE may be present if the praId IE is present and if it contains a PRA identifier referring to a set of Core Network predefined Presence Reporting Areas. When present, this IE shall contain a PRA Identifier of an individual PRA within the Set of Core Network predefined Presence Reporting Areas indicated by the praId IE.
	AdditionalPraId *string        `json:"additionalPraId,omitempty"`
	PresenceState   *PresenceState `json:"presenceState,omitempty"`
	// Represents the list of tracking areas that constitutes the area. This IE shall be present if the subscription or the event report  is for tracking UE presence in the tracking areas. For non 3GPP access the TAI shall be the N3GPP TAI.
	TrackingAreaList []Tai `json:"trackingAreaList,omitempty"`
	// Represents the list of EUTRAN cell Ids that constitutes the area. This IE shall be present if the Area of Interest subscribed is a list of EUTRAN cell Ids.
	EcgiList []Ecgi `json:"ecgiList,omitempty"`
	// Represents the list of NR cell Ids that constitutes the area. This IE shall be present if the Area of Interest subscribed is a list of NR cell Ids.
	NcgiList []Ncgi `json:"ncgiList,omitempty"`
	// Represents the list of NG RAN node identifiers that constitutes the area. This IE shall be present if the Area of Interest subscribed is a list of NG RAN node identifiers.
	GlobalRanNodeIdList []GlobalRanNodeId `json:"globalRanNodeIdList,omitempty"`
	// Represents the list of eNodeB identifiers that constitutes the area. This IE shall be present if the Area of Interest subscribed is a list of eNodeB identifiers.
	GlobaleNbIdList []GlobalRanNodeId `json:"globaleNbIdList,omitempty"`
}

PresenceInfoRm This data type is defined in the same way as the 'PresenceInfo' data type, but with the OpenAPI 'nullable: true' property. If the additionalPraId IE is present, this IE shall state the presence information of the UE for the individual PRA identified by the additionalPraId IE; If the additionalPraId IE is not present, this IE shall state the presence information of the UE for the PRA identified by the praId IE.

func NewPresenceInfoRm

func NewPresenceInfoRm() *PresenceInfoRm

NewPresenceInfoRm instantiates a new PresenceInfoRm object This constructor will assign default values to properties that have it defined, 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 NewPresenceInfoRmWithDefaults

func NewPresenceInfoRmWithDefaults() *PresenceInfoRm

NewPresenceInfoRmWithDefaults instantiates a new PresenceInfoRm object This 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 (*PresenceInfoRm) GetAdditionalPraId

func (o *PresenceInfoRm) GetAdditionalPraId() string

GetAdditionalPraId returns the AdditionalPraId field value if set, zero value otherwise.

func (*PresenceInfoRm) GetAdditionalPraIdOk

func (o *PresenceInfoRm) GetAdditionalPraIdOk() (*string, bool)

GetAdditionalPraIdOk returns a tuple with the AdditionalPraId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PresenceInfoRm) GetEcgiList

func (o *PresenceInfoRm) GetEcgiList() []Ecgi

GetEcgiList returns the EcgiList field value if set, zero value otherwise.

func (*PresenceInfoRm) GetEcgiListOk

func (o *PresenceInfoRm) GetEcgiListOk() ([]Ecgi, bool)

GetEcgiListOk returns a tuple with the EcgiList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PresenceInfoRm) GetGlobalRanNodeIdList

func (o *PresenceInfoRm) GetGlobalRanNodeIdList() []GlobalRanNodeId

GetGlobalRanNodeIdList returns the GlobalRanNodeIdList field value if set, zero value otherwise.

func (*PresenceInfoRm) GetGlobalRanNodeIdListOk

func (o *PresenceInfoRm) GetGlobalRanNodeIdListOk() ([]GlobalRanNodeId, bool)

GetGlobalRanNodeIdListOk returns a tuple with the GlobalRanNodeIdList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PresenceInfoRm) GetGlobaleNbIdList

func (o *PresenceInfoRm) GetGlobaleNbIdList() []GlobalRanNodeId

GetGlobaleNbIdList returns the GlobaleNbIdList field value if set, zero value otherwise.

func (*PresenceInfoRm) GetGlobaleNbIdListOk

func (o *PresenceInfoRm) GetGlobaleNbIdListOk() ([]GlobalRanNodeId, bool)

GetGlobaleNbIdListOk returns a tuple with the GlobaleNbIdList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PresenceInfoRm) GetNcgiList

func (o *PresenceInfoRm) GetNcgiList() []Ncgi

GetNcgiList returns the NcgiList field value if set, zero value otherwise.

func (*PresenceInfoRm) GetNcgiListOk

func (o *PresenceInfoRm) GetNcgiListOk() ([]Ncgi, bool)

GetNcgiListOk returns a tuple with the NcgiList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PresenceInfoRm) GetPraId

func (o *PresenceInfoRm) GetPraId() string

GetPraId returns the PraId field value if set, zero value otherwise.

func (*PresenceInfoRm) GetPraIdOk

func (o *PresenceInfoRm) GetPraIdOk() (*string, bool)

GetPraIdOk returns a tuple with the PraId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PresenceInfoRm) GetPresenceState

func (o *PresenceInfoRm) GetPresenceState() PresenceState

GetPresenceState returns the PresenceState field value if set, zero value otherwise.

func (*PresenceInfoRm) GetPresenceStateOk

func (o *PresenceInfoRm) GetPresenceStateOk() (*PresenceState, bool)

GetPresenceStateOk returns a tuple with the PresenceState field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PresenceInfoRm) GetTrackingAreaList

func (o *PresenceInfoRm) GetTrackingAreaList() []Tai

GetTrackingAreaList returns the TrackingAreaList field value if set, zero value otherwise.

func (*PresenceInfoRm) GetTrackingAreaListOk

func (o *PresenceInfoRm) GetTrackingAreaListOk() ([]Tai, bool)

GetTrackingAreaListOk returns a tuple with the TrackingAreaList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PresenceInfoRm) HasAdditionalPraId

func (o *PresenceInfoRm) HasAdditionalPraId() bool

HasAdditionalPraId returns a boolean if a field has been set.

func (*PresenceInfoRm) HasEcgiList

func (o *PresenceInfoRm) HasEcgiList() bool

HasEcgiList returns a boolean if a field has been set.

func (*PresenceInfoRm) HasGlobalRanNodeIdList

func (o *PresenceInfoRm) HasGlobalRanNodeIdList() bool

HasGlobalRanNodeIdList returns a boolean if a field has been set.

func (*PresenceInfoRm) HasGlobaleNbIdList

func (o *PresenceInfoRm) HasGlobaleNbIdList() bool

HasGlobaleNbIdList returns a boolean if a field has been set.

func (*PresenceInfoRm) HasNcgiList

func (o *PresenceInfoRm) HasNcgiList() bool

HasNcgiList returns a boolean if a field has been set.

func (*PresenceInfoRm) HasPraId

func (o *PresenceInfoRm) HasPraId() bool

HasPraId returns a boolean if a field has been set.

func (*PresenceInfoRm) HasPresenceState

func (o *PresenceInfoRm) HasPresenceState() bool

HasPresenceState returns a boolean if a field has been set.

func (*PresenceInfoRm) HasTrackingAreaList

func (o *PresenceInfoRm) HasTrackingAreaList() bool

HasTrackingAreaList returns a boolean if a field has been set.

func (PresenceInfoRm) MarshalJSON

func (o PresenceInfoRm) MarshalJSON() ([]byte, error)

func (*PresenceInfoRm) SetAdditionalPraId

func (o *PresenceInfoRm) SetAdditionalPraId(v string)

SetAdditionalPraId gets a reference to the given string and assigns it to the AdditionalPraId field.

func (*PresenceInfoRm) SetEcgiList

func (o *PresenceInfoRm) SetEcgiList(v []Ecgi)

SetEcgiList gets a reference to the given []Ecgi and assigns it to the EcgiList field.

func (*PresenceInfoRm) SetGlobalRanNodeIdList

func (o *PresenceInfoRm) SetGlobalRanNodeIdList(v []GlobalRanNodeId)

SetGlobalRanNodeIdList gets a reference to the given []GlobalRanNodeId and assigns it to the GlobalRanNodeIdList field.

func (*PresenceInfoRm) SetGlobaleNbIdList

func (o *PresenceInfoRm) SetGlobaleNbIdList(v []GlobalRanNodeId)

SetGlobaleNbIdList gets a reference to the given []GlobalRanNodeId and assigns it to the GlobaleNbIdList field.

func (*PresenceInfoRm) SetNcgiList

func (o *PresenceInfoRm) SetNcgiList(v []Ncgi)

SetNcgiList gets a reference to the given []Ncgi and assigns it to the NcgiList field.

func (*PresenceInfoRm) SetPraId

func (o *PresenceInfoRm) SetPraId(v string)

SetPraId gets a reference to the given string and assigns it to the PraId field.

func (*PresenceInfoRm) SetPresenceState

func (o *PresenceInfoRm) SetPresenceState(v PresenceState)

SetPresenceState gets a reference to the given PresenceState and assigns it to the PresenceState field.

func (*PresenceInfoRm) SetTrackingAreaList

func (o *PresenceInfoRm) SetTrackingAreaList(v []Tai)

SetTrackingAreaList gets a reference to the given []Tai and assigns it to the TrackingAreaList field.

func (PresenceInfoRm) ToMap

func (o PresenceInfoRm) ToMap() (map[string]interface{}, error)

type PresenceState

type PresenceState struct {
	String *string
}

PresenceState Possible values are: -IN_AREA: Indicates that the UE is inside or enters the presence reporting area. -OUT_OF_AREA: Indicates that the UE is outside or leaves the presence reporting area -UNKNOW: Indicates it is unknown whether the UE is in the presence reporting area or not -INACTIVE: Indicates that the presence reporting area is inactive in the serving node.

func (*PresenceState) MarshalJSON

func (src *PresenceState) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*PresenceState) UnmarshalJSON

func (dst *PresenceState) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type ProblemDetails

type ProblemDetails struct {
	// String providing an URI formatted according to RFC 3986.
	Type   *string `json:"type,omitempty"`
	Title  *string `json:"title,omitempty"`
	Status *int32  `json:"status,omitempty"`
	// A human-readable explanation specific to this occurrence of the problem.
	Detail *string `json:"detail,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	Instance *string `json:"instance,omitempty"`
	// A machine-readable application error cause specific to this occurrence of the problem.  This IE should be present and provide application-related error information, if available.
	Cause         *string        `json:"cause,omitempty"`
	InvalidParams []InvalidParam `json:"invalidParams,omitempty"`
	// A string used to indicate the features supported by an API that is used as defined in clause  6.6 in 3GPP TS 29.500. The string shall contain a bitmask indicating supported features in  hexadecimal representation Each character in the string shall take a value of \"0\" to \"9\",  \"a\" to \"f\" or \"A\" to \"F\" and shall represent the support of 4 features as described in  table 5.2.2-3. The most significant character representing the highest-numbered features shall  appear first in the string, and the character representing features 1 to 4 shall appear last  in the string. The list of features and their numbering (starting with 1) are defined  separately for each API. If the string contains a lower number of characters than there are  defined features for an API, all features that would be represented by characters that are not  present in the string are not supported.
	SupportedFeatures  *string         `json:"supportedFeatures,omitempty"`
	AccessTokenError   *AccessTokenErr `json:"accessTokenError,omitempty"`
	AccessTokenRequest *AccessTokenReq `json:"accessTokenRequest,omitempty"`
	// Fully Qualified Domain Name
	NrfId                *string  `json:"nrfId,omitempty"`
	SupportedApiVersions []string `json:"supportedApiVersions,omitempty"`
}

ProblemDetails Provides additional information in an error response.

func NewProblemDetails

func NewProblemDetails() *ProblemDetails

NewProblemDetails instantiates a new ProblemDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewProblemDetailsWithDefaults

func NewProblemDetailsWithDefaults() *ProblemDetails

NewProblemDetailsWithDefaults instantiates a new ProblemDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ProblemDetails) GetAccessTokenError

func (o *ProblemDetails) GetAccessTokenError() AccessTokenErr

GetAccessTokenError returns the AccessTokenError field value if set, zero value otherwise.

func (*ProblemDetails) GetAccessTokenErrorOk

func (o *ProblemDetails) GetAccessTokenErrorOk() (*AccessTokenErr, bool)

GetAccessTokenErrorOk returns a tuple with the AccessTokenError field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProblemDetails) GetAccessTokenRequest

func (o *ProblemDetails) GetAccessTokenRequest() AccessTokenReq

GetAccessTokenRequest returns the AccessTokenRequest field value if set, zero value otherwise.

func (*ProblemDetails) GetAccessTokenRequestOk

func (o *ProblemDetails) GetAccessTokenRequestOk() (*AccessTokenReq, bool)

GetAccessTokenRequestOk returns a tuple with the AccessTokenRequest field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProblemDetails) GetCause

func (o *ProblemDetails) GetCause() string

GetCause returns the Cause field value if set, zero value otherwise.

func (*ProblemDetails) GetCauseOk

func (o *ProblemDetails) GetCauseOk() (*string, bool)

GetCauseOk returns a tuple with the Cause field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProblemDetails) GetDetail

func (o *ProblemDetails) GetDetail() string

GetDetail returns the Detail field value if set, zero value otherwise.

func (*ProblemDetails) GetDetailOk

func (o *ProblemDetails) GetDetailOk() (*string, bool)

GetDetailOk returns a tuple with the Detail field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProblemDetails) GetInstance

func (o *ProblemDetails) GetInstance() string

GetInstance returns the Instance field value if set, zero value otherwise.

func (*ProblemDetails) GetInstanceOk

func (o *ProblemDetails) GetInstanceOk() (*string, bool)

GetInstanceOk returns a tuple with the Instance field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProblemDetails) GetInvalidParams

func (o *ProblemDetails) GetInvalidParams() []InvalidParam

GetInvalidParams returns the InvalidParams field value if set, zero value otherwise.

func (*ProblemDetails) GetInvalidParamsOk

func (o *ProblemDetails) GetInvalidParamsOk() ([]InvalidParam, bool)

GetInvalidParamsOk returns a tuple with the InvalidParams field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProblemDetails) GetNrfId

func (o *ProblemDetails) GetNrfId() string

GetNrfId returns the NrfId field value if set, zero value otherwise.

func (*ProblemDetails) GetNrfIdOk

func (o *ProblemDetails) GetNrfIdOk() (*string, bool)

GetNrfIdOk returns a tuple with the NrfId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProblemDetails) GetStatus

func (o *ProblemDetails) GetStatus() int32

GetStatus returns the Status field value if set, zero value otherwise.

func (*ProblemDetails) GetStatusOk

func (o *ProblemDetails) GetStatusOk() (*int32, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProblemDetails) GetSupportedApiVersions

func (o *ProblemDetails) GetSupportedApiVersions() []string

GetSupportedApiVersions returns the SupportedApiVersions field value if set, zero value otherwise.

func (*ProblemDetails) GetSupportedApiVersionsOk

func (o *ProblemDetails) GetSupportedApiVersionsOk() ([]string, bool)

GetSupportedApiVersionsOk returns a tuple with the SupportedApiVersions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProblemDetails) GetSupportedFeatures

func (o *ProblemDetails) GetSupportedFeatures() string

GetSupportedFeatures returns the SupportedFeatures field value if set, zero value otherwise.

func (*ProblemDetails) GetSupportedFeaturesOk

func (o *ProblemDetails) GetSupportedFeaturesOk() (*string, bool)

GetSupportedFeaturesOk returns a tuple with the SupportedFeatures field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProblemDetails) GetTitle

func (o *ProblemDetails) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*ProblemDetails) GetTitleOk

func (o *ProblemDetails) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProblemDetails) GetType

func (o *ProblemDetails) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*ProblemDetails) GetTypeOk

func (o *ProblemDetails) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProblemDetails) HasAccessTokenError

func (o *ProblemDetails) HasAccessTokenError() bool

HasAccessTokenError returns a boolean if a field has been set.

func (*ProblemDetails) HasAccessTokenRequest

func (o *ProblemDetails) HasAccessTokenRequest() bool

HasAccessTokenRequest returns a boolean if a field has been set.

func (*ProblemDetails) HasCause

func (o *ProblemDetails) HasCause() bool

HasCause returns a boolean if a field has been set.

func (*ProblemDetails) HasDetail

func (o *ProblemDetails) HasDetail() bool

HasDetail returns a boolean if a field has been set.

func (*ProblemDetails) HasInstance

func (o *ProblemDetails) HasInstance() bool

HasInstance returns a boolean if a field has been set.

func (*ProblemDetails) HasInvalidParams

func (o *ProblemDetails) HasInvalidParams() bool

HasInvalidParams returns a boolean if a field has been set.

func (*ProblemDetails) HasNrfId

func (o *ProblemDetails) HasNrfId() bool

HasNrfId returns a boolean if a field has been set.

func (*ProblemDetails) HasStatus

func (o *ProblemDetails) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*ProblemDetails) HasSupportedApiVersions

func (o *ProblemDetails) HasSupportedApiVersions() bool

HasSupportedApiVersions returns a boolean if a field has been set.

func (*ProblemDetails) HasSupportedFeatures

func (o *ProblemDetails) HasSupportedFeatures() bool

HasSupportedFeatures returns a boolean if a field has been set.

func (*ProblemDetails) HasTitle

func (o *ProblemDetails) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*ProblemDetails) HasType

func (o *ProblemDetails) HasType() bool

HasType returns a boolean if a field has been set.

func (ProblemDetails) MarshalJSON

func (o ProblemDetails) MarshalJSON() ([]byte, error)

func (*ProblemDetails) SetAccessTokenError

func (o *ProblemDetails) SetAccessTokenError(v AccessTokenErr)

SetAccessTokenError gets a reference to the given AccessTokenErr and assigns it to the AccessTokenError field.

func (*ProblemDetails) SetAccessTokenRequest

func (o *ProblemDetails) SetAccessTokenRequest(v AccessTokenReq)

SetAccessTokenRequest gets a reference to the given AccessTokenReq and assigns it to the AccessTokenRequest field.

func (*ProblemDetails) SetCause

func (o *ProblemDetails) SetCause(v string)

SetCause gets a reference to the given string and assigns it to the Cause field.

func (*ProblemDetails) SetDetail

func (o *ProblemDetails) SetDetail(v string)

SetDetail gets a reference to the given string and assigns it to the Detail field.

func (*ProblemDetails) SetInstance

func (o *ProblemDetails) SetInstance(v string)

SetInstance gets a reference to the given string and assigns it to the Instance field.

func (*ProblemDetails) SetInvalidParams

func (o *ProblemDetails) SetInvalidParams(v []InvalidParam)

SetInvalidParams gets a reference to the given []InvalidParam and assigns it to the InvalidParams field.

func (*ProblemDetails) SetNrfId

func (o *ProblemDetails) SetNrfId(v string)

SetNrfId gets a reference to the given string and assigns it to the NrfId field.

func (*ProblemDetails) SetStatus

func (o *ProblemDetails) SetStatus(v int32)

SetStatus gets a reference to the given int32 and assigns it to the Status field.

func (*ProblemDetails) SetSupportedApiVersions

func (o *ProblemDetails) SetSupportedApiVersions(v []string)

SetSupportedApiVersions gets a reference to the given []string and assigns it to the SupportedApiVersions 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 QosCharacteristics

type QosCharacteristics struct {
	// Unsigned integer representing a 5G QoS Identifier (see clause 5.7.2.1 of 3GPP TS 23.501, within the range 0 to 255.
	Var5qi       int32           `json:"5qi"`
	ResourceType QosResourceType `json:"resourceType"`
	// Unsigned integer indicating the 5QI Priority Level (see clauses 5.7.3.3 and 5.7.4 of 3GPP TS 23.501, within the range 1 to 127.Values are ordered in decreasing order of priority,  i.e. with 1 as the highest priority and 127 as the lowest priority.
	PriorityLevel int32 `json:"priorityLevel"`
	// Unsigned integer indicating Packet Delay Budget (see clauses 5.7.3.4 and 5.7.4 of 3GPP TS 23.501), expressed in milliseconds.
	PacketDelayBudget int32 `json:"packetDelayBudget"`
	// String representing Packet Error Rate (see clause 5.7.3.5 and 5.7.4 of 3GPP TS 23.501, expressed as a \"scalar x 10-k\" where the scalar and the exponent k are each encoded as one decimal digit.
	PacketErrorRate string `json:"packetErrorRate"`
	// Unsigned integer indicating Averaging Window (see clause 5.7.3.6 and 5.7.4 of 3GPP TS 23.501), expressed in milliseconds.
	AveragingWindow *int32 `json:"averagingWindow,omitempty"`
	// Unsigned integer indicating Maximum Data Burst Volume (see clauses 5.7.3.7 and 5.7.4 of 3GPP TS 23.501), expressed in Bytes.
	MaxDataBurstVol *int32 `json:"maxDataBurstVol,omitempty"`
	// Unsigned integer indicating Maximum Data Burst Volume (see clauses 5.7.3.7 and 5.7.4 of 3GPP TS 23.501), expressed in Bytes.
	ExtMaxDataBurstVol *int32 `json:"extMaxDataBurstVol,omitempty"`
}

QosCharacteristics Contains QoS characteristics for a non-standardized or a non-configured 5QI.

func NewQosCharacteristics

func NewQosCharacteristics(var5qi int32, resourceType QosResourceType, priorityLevel int32, packetDelayBudget int32, packetErrorRate string) *QosCharacteristics

NewQosCharacteristics instantiates a new QosCharacteristics object This constructor will assign default values to properties that have it defined, 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 NewQosCharacteristicsWithDefaults

func NewQosCharacteristicsWithDefaults() *QosCharacteristics

NewQosCharacteristicsWithDefaults instantiates a new QosCharacteristics object This 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 (*QosCharacteristics) GetAveragingWindow

func (o *QosCharacteristics) GetAveragingWindow() int32

GetAveragingWindow returns the AveragingWindow field value if set, zero value otherwise.

func (*QosCharacteristics) GetAveragingWindowOk

func (o *QosCharacteristics) GetAveragingWindowOk() (*int32, bool)

GetAveragingWindowOk returns a tuple with the AveragingWindow field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QosCharacteristics) GetExtMaxDataBurstVol

func (o *QosCharacteristics) GetExtMaxDataBurstVol() int32

GetExtMaxDataBurstVol returns the ExtMaxDataBurstVol field value if set, zero value otherwise.

func (*QosCharacteristics) GetExtMaxDataBurstVolOk

func (o *QosCharacteristics) GetExtMaxDataBurstVolOk() (*int32, bool)

GetExtMaxDataBurstVolOk returns a tuple with the ExtMaxDataBurstVol field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QosCharacteristics) GetMaxDataBurstVol

func (o *QosCharacteristics) GetMaxDataBurstVol() int32

GetMaxDataBurstVol returns the MaxDataBurstVol field value if set, zero value otherwise.

func (*QosCharacteristics) GetMaxDataBurstVolOk

func (o *QosCharacteristics) GetMaxDataBurstVolOk() (*int32, bool)

GetMaxDataBurstVolOk returns a tuple with the MaxDataBurstVol field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QosCharacteristics) GetPacketDelayBudget

func (o *QosCharacteristics) GetPacketDelayBudget() int32

GetPacketDelayBudget returns the PacketDelayBudget field value

func (*QosCharacteristics) GetPacketDelayBudgetOk

func (o *QosCharacteristics) GetPacketDelayBudgetOk() (*int32, bool)

GetPacketDelayBudgetOk returns a tuple with the PacketDelayBudget field value and a boolean to check if the value has been set.

func (*QosCharacteristics) GetPacketErrorRate

func (o *QosCharacteristics) GetPacketErrorRate() string

GetPacketErrorRate returns the PacketErrorRate field value

func (*QosCharacteristics) GetPacketErrorRateOk

func (o *QosCharacteristics) GetPacketErrorRateOk() (*string, bool)

GetPacketErrorRateOk returns a tuple with the PacketErrorRate field value and a boolean to check if the value has been set.

func (*QosCharacteristics) GetPriorityLevel

func (o *QosCharacteristics) GetPriorityLevel() int32

GetPriorityLevel returns the PriorityLevel field value

func (*QosCharacteristics) GetPriorityLevelOk

func (o *QosCharacteristics) GetPriorityLevelOk() (*int32, bool)

GetPriorityLevelOk returns a tuple with the PriorityLevel field value and a boolean to check if the value has been set.

func (*QosCharacteristics) GetResourceType

func (o *QosCharacteristics) GetResourceType() QosResourceType

GetResourceType returns the ResourceType field value

func (*QosCharacteristics) GetResourceTypeOk

func (o *QosCharacteristics) GetResourceTypeOk() (*QosResourceType, bool)

GetResourceTypeOk returns a tuple with the ResourceType field value and a boolean to check if the value has been set.

func (*QosCharacteristics) GetVar5qi

func (o *QosCharacteristics) GetVar5qi() int32

GetVar5qi returns the Var5qi field value

func (*QosCharacteristics) GetVar5qiOk

func (o *QosCharacteristics) GetVar5qiOk() (*int32, bool)

GetVar5qiOk returns a tuple with the Var5qi field value and a boolean to check if the value has been set.

func (*QosCharacteristics) HasAveragingWindow

func (o *QosCharacteristics) HasAveragingWindow() bool

HasAveragingWindow returns a boolean if a field has been set.

func (*QosCharacteristics) HasExtMaxDataBurstVol

func (o *QosCharacteristics) HasExtMaxDataBurstVol() bool

HasExtMaxDataBurstVol returns a boolean if a field has been set.

func (*QosCharacteristics) HasMaxDataBurstVol

func (o *QosCharacteristics) HasMaxDataBurstVol() bool

HasMaxDataBurstVol returns a boolean if a field has been set.

func (QosCharacteristics) MarshalJSON

func (o QosCharacteristics) MarshalJSON() ([]byte, error)

func (*QosCharacteristics) SetAveragingWindow

func (o *QosCharacteristics) SetAveragingWindow(v int32)

SetAveragingWindow gets a reference to the given int32 and assigns it to the AveragingWindow field.

func (*QosCharacteristics) SetExtMaxDataBurstVol

func (o *QosCharacteristics) SetExtMaxDataBurstVol(v int32)

SetExtMaxDataBurstVol gets a reference to the given int32 and assigns it to the ExtMaxDataBurstVol field.

func (*QosCharacteristics) SetMaxDataBurstVol

func (o *QosCharacteristics) SetMaxDataBurstVol(v int32)

SetMaxDataBurstVol gets a reference to the given int32 and assigns it to the MaxDataBurstVol field.

func (*QosCharacteristics) SetPacketDelayBudget

func (o *QosCharacteristics) SetPacketDelayBudget(v int32)

SetPacketDelayBudget sets field value

func (*QosCharacteristics) SetPacketErrorRate

func (o *QosCharacteristics) SetPacketErrorRate(v string)

SetPacketErrorRate sets field value

func (*QosCharacteristics) SetPriorityLevel

func (o *QosCharacteristics) SetPriorityLevel(v int32)

SetPriorityLevel sets field value

func (*QosCharacteristics) SetResourceType

func (o *QosCharacteristics) SetResourceType(v QosResourceType)

SetResourceType sets field value

func (*QosCharacteristics) SetVar5qi

func (o *QosCharacteristics) SetVar5qi(v int32)

SetVar5qi sets field value

func (QosCharacteristics) ToMap

func (o QosCharacteristics) ToMap() (map[string]interface{}, error)

type QosData

type QosData struct {
	// Univocally identifies the QoS control policy data within a PDU session.
	QosId string `json:"qosId"`
	// Unsigned integer representing a 5G QoS Identifier (see clause 5.7.2.1 of 3GPP TS 23.501, within the range 0 to 255.
	Var5qi *int32 `json:"5qi,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"`
	// This data type is defined in the same way as the 'BitRate' data type, but with the OpenAPI 'nullable: true' property.
	GbrUl NullableString `json:"gbrUl,omitempty"`
	// This data type is defined in the same way as the 'BitRate' data type, but with the OpenAPI 'nullable: true' property.
	GbrDl NullableString `json:"gbrDl,omitempty"`
	Arp   *Arp           `json:"arp,omitempty"`
	// Indicates whether notifications are requested from 3GPP NG-RAN when the GFBR can no longer (or again) be guaranteed for a QoS Flow during the lifetime of the QoS Flow.
	Qnc *bool `json:"qnc,omitempty"`
	// This data type is defined in the same way as the '5QiPriorityLevel' data type, but with the OpenAPI 'nullable: true' property.
	PriorityLevel NullableInt32 `json:"priorityLevel,omitempty"`
	// This data type is defined in the same way as the 'AverWindow' data type, but with the OpenAPI 'nullable: true' property.
	AverWindow NullableInt32 `json:"averWindow,omitempty"`
	// This data type is defined in the same way as the 'MaxDataBurstVol' data type, but with the OpenAPI 'nullable: true' property.
	MaxDataBurstVol NullableInt32 `json:"maxDataBurstVol,omitempty"`
	// Indicates whether the QoS information is reflective for the corresponding service data  flow.
	ReflectiveQos *bool `json:"reflectiveQos,omitempty"`
	// Indicates, by containing the same value, what PCC rules may share resource in downlink  direction.
	SharingKeyDl *string `json:"sharingKeyDl,omitempty"`
	// Indicates, by containing the same value, what PCC rules may share resource in uplink  direction.
	SharingKeyUl *string `json:"sharingKeyUl,omitempty"`
	// This data type is defined in the same way as the 'PacketLossRate' data type, but with the OpenAPI 'nullable: true' property.
	MaxPacketLossRateDl NullableInt32 `json:"maxPacketLossRateDl,omitempty"`
	// This data type is defined in the same way as the 'PacketLossRate' data type, but with the OpenAPI 'nullable: true' property.
	MaxPacketLossRateUl NullableInt32 `json:"maxPacketLossRateUl,omitempty"`
	// Indicates that the dynamic PCC rule shall always have its binding with the QoS Flow  associated with the default QoS rule
	DefQosFlowIndication *bool `json:"defQosFlowIndication,omitempty"`
	// This data type is defined in the same way as the 'ExtMaxDataBurstVol' data type, but with the OpenAPI 'nullable: true' property.
	ExtMaxDataBurstVol NullableInt32 `json:"extMaxDataBurstVol,omitempty"`
	// Unsigned integer indicating Packet Delay Budget (see clauses 5.7.3.4 and 5.7.4 of 3GPP TS 23.501), expressed in milliseconds.
	PacketDelayBudget *int32 `json:"packetDelayBudget,omitempty"`
	// String representing Packet Error Rate (see clause 5.7.3.5 and 5.7.4 of 3GPP TS 23.501, expressed as a \"scalar x 10-k\" where the scalar and the exponent k are each encoded as one decimal digit.
	PacketErrorRate *string `json:"packetErrorRate,omitempty"`
}

QosData Contains the QoS parameters.

func NewQosData

func NewQosData(qosId string) *QosData

NewQosData instantiates a new QosData object This constructor will assign default values to properties that have it defined, 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 NewQosDataWithDefaults

func NewQosDataWithDefaults() *QosData

NewQosDataWithDefaults instantiates a new QosData object This 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 (*QosData) GetArp

func (o *QosData) GetArp() Arp

GetArp returns the Arp field value if set, zero value otherwise.

func (*QosData) GetArpOk

func (o *QosData) GetArpOk() (*Arp, bool)

GetArpOk returns a tuple with the Arp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QosData) GetAverWindow

func (o *QosData) GetAverWindow() int32

GetAverWindow returns the AverWindow field value if set, zero value otherwise (both if not set or set to explicit null).

func (*QosData) GetAverWindowOk

func (o *QosData) GetAverWindowOk() (*int32, bool)

GetAverWindowOk returns a tuple with the AverWindow 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 (*QosData) GetDefQosFlowIndication

func (o *QosData) GetDefQosFlowIndication() bool

GetDefQosFlowIndication returns the DefQosFlowIndication field value if set, zero value otherwise.

func (*QosData) GetDefQosFlowIndicationOk

func (o *QosData) GetDefQosFlowIndicationOk() (*bool, bool)

GetDefQosFlowIndicationOk returns a tuple with the DefQosFlowIndication field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QosData) GetExtMaxDataBurstVol

func (o *QosData) GetExtMaxDataBurstVol() int32

GetExtMaxDataBurstVol returns the ExtMaxDataBurstVol field value if set, zero value otherwise (both if not set or set to explicit null).

func (*QosData) GetExtMaxDataBurstVolOk

func (o *QosData) GetExtMaxDataBurstVolOk() (*int32, bool)

GetExtMaxDataBurstVolOk returns a tuple with the ExtMaxDataBurstVol 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 (*QosData) GetGbrDl

func (o *QosData) GetGbrDl() string

GetGbrDl returns the GbrDl field value if set, zero value otherwise (both if not set or set to explicit null).

func (*QosData) GetGbrDlOk

func (o *QosData) GetGbrDlOk() (*string, bool)

GetGbrDlOk returns a tuple with the GbrDl field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*QosData) GetGbrUl

func (o *QosData) GetGbrUl() string

GetGbrUl returns the GbrUl field value if set, zero value otherwise (both if not set or set to explicit null).

func (*QosData) GetGbrUlOk

func (o *QosData) GetGbrUlOk() (*string, bool)

GetGbrUlOk returns a tuple with the GbrUl field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*QosData) GetMaxDataBurstVol

func (o *QosData) GetMaxDataBurstVol() int32

GetMaxDataBurstVol returns the MaxDataBurstVol field value if set, zero value otherwise (both if not set or set to explicit null).

func (*QosData) GetMaxDataBurstVolOk

func (o *QosData) GetMaxDataBurstVolOk() (*int32, bool)

GetMaxDataBurstVolOk returns a tuple with the MaxDataBurstVol 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 (*QosData) GetMaxPacketLossRateDl

func (o *QosData) GetMaxPacketLossRateDl() int32

GetMaxPacketLossRateDl returns the MaxPacketLossRateDl field value if set, zero value otherwise (both if not set or set to explicit null).

func (*QosData) GetMaxPacketLossRateDlOk

func (o *QosData) GetMaxPacketLossRateDlOk() (*int32, bool)

GetMaxPacketLossRateDlOk returns a tuple with the MaxPacketLossRateDl 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 (*QosData) GetMaxPacketLossRateUl

func (o *QosData) GetMaxPacketLossRateUl() int32

GetMaxPacketLossRateUl returns the MaxPacketLossRateUl field value if set, zero value otherwise (both if not set or set to explicit null).

func (*QosData) GetMaxPacketLossRateUlOk

func (o *QosData) GetMaxPacketLossRateUlOk() (*int32, bool)

GetMaxPacketLossRateUlOk returns a tuple with the MaxPacketLossRateUl 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 (*QosData) GetMaxbrDl

func (o *QosData) GetMaxbrDl() string

GetMaxbrDl returns the MaxbrDl field value if set, zero value otherwise (both if not set or set to explicit null).

func (*QosData) GetMaxbrDlOk

func (o *QosData) 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 (*QosData) GetMaxbrUl

func (o *QosData) GetMaxbrUl() string

GetMaxbrUl returns the MaxbrUl field value if set, zero value otherwise (both if not set or set to explicit null).

func (*QosData) GetMaxbrUlOk

func (o *QosData) 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 (*QosData) GetPacketDelayBudget

func (o *QosData) GetPacketDelayBudget() int32

GetPacketDelayBudget returns the PacketDelayBudget field value if set, zero value otherwise.

func (*QosData) GetPacketDelayBudgetOk

func (o *QosData) GetPacketDelayBudgetOk() (*int32, bool)

GetPacketDelayBudgetOk returns a tuple with the PacketDelayBudget field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QosData) GetPacketErrorRate

func (o *QosData) GetPacketErrorRate() string

GetPacketErrorRate returns the PacketErrorRate field value if set, zero value otherwise.

func (*QosData) GetPacketErrorRateOk

func (o *QosData) GetPacketErrorRateOk() (*string, bool)

GetPacketErrorRateOk returns a tuple with the PacketErrorRate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QosData) GetPriorityLevel

func (o *QosData) GetPriorityLevel() int32

GetPriorityLevel returns the PriorityLevel field value if set, zero value otherwise (both if not set or set to explicit null).

func (*QosData) GetPriorityLevelOk

func (o *QosData) GetPriorityLevelOk() (*int32, bool)

GetPriorityLevelOk returns a tuple with the PriorityLevel 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 (*QosData) GetQnc

func (o *QosData) GetQnc() bool

GetQnc returns the Qnc field value if set, zero value otherwise.

func (*QosData) GetQncOk

func (o *QosData) GetQncOk() (*bool, bool)

GetQncOk returns a tuple with the Qnc field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QosData) GetQosId

func (o *QosData) GetQosId() string

GetQosId returns the QosId field value

func (*QosData) GetQosIdOk

func (o *QosData) GetQosIdOk() (*string, bool)

GetQosIdOk returns a tuple with the QosId field value and a boolean to check if the value has been set.

func (*QosData) GetReflectiveQos

func (o *QosData) GetReflectiveQos() bool

GetReflectiveQos returns the ReflectiveQos field value if set, zero value otherwise.

func (*QosData) GetReflectiveQosOk

func (o *QosData) GetReflectiveQosOk() (*bool, bool)

GetReflectiveQosOk returns a tuple with the ReflectiveQos field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QosData) GetSharingKeyDl

func (o *QosData) GetSharingKeyDl() string

GetSharingKeyDl returns the SharingKeyDl field value if set, zero value otherwise.

func (*QosData) GetSharingKeyDlOk

func (o *QosData) GetSharingKeyDlOk() (*string, bool)

GetSharingKeyDlOk returns a tuple with the SharingKeyDl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QosData) GetSharingKeyUl

func (o *QosData) GetSharingKeyUl() string

GetSharingKeyUl returns the SharingKeyUl field value if set, zero value otherwise.

func (*QosData) GetSharingKeyUlOk

func (o *QosData) GetSharingKeyUlOk() (*string, bool)

GetSharingKeyUlOk returns a tuple with the SharingKeyUl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QosData) GetVar5qi

func (o *QosData) GetVar5qi() int32

GetVar5qi returns the Var5qi field value if set, zero value otherwise.

func (*QosData) GetVar5qiOk

func (o *QosData) GetVar5qiOk() (*int32, bool)

GetVar5qiOk returns a tuple with the Var5qi field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QosData) HasArp

func (o *QosData) HasArp() bool

HasArp returns a boolean if a field has been set.

func (*QosData) HasAverWindow

func (o *QosData) HasAverWindow() bool

HasAverWindow returns a boolean if a field has been set.

func (*QosData) HasDefQosFlowIndication

func (o *QosData) HasDefQosFlowIndication() bool

HasDefQosFlowIndication returns a boolean if a field has been set.

func (*QosData) HasExtMaxDataBurstVol

func (o *QosData) HasExtMaxDataBurstVol() bool

HasExtMaxDataBurstVol returns a boolean if a field has been set.

func (*QosData) HasGbrDl

func (o *QosData) HasGbrDl() bool

HasGbrDl returns a boolean if a field has been set.

func (*QosData) HasGbrUl

func (o *QosData) HasGbrUl() bool

HasGbrUl returns a boolean if a field has been set.

func (*QosData) HasMaxDataBurstVol

func (o *QosData) HasMaxDataBurstVol() bool

HasMaxDataBurstVol returns a boolean if a field has been set.

func (*QosData) HasMaxPacketLossRateDl

func (o *QosData) HasMaxPacketLossRateDl() bool

HasMaxPacketLossRateDl returns a boolean if a field has been set.

func (*QosData) HasMaxPacketLossRateUl

func (o *QosData) HasMaxPacketLossRateUl() bool

HasMaxPacketLossRateUl returns a boolean if a field has been set.

func (*QosData) HasMaxbrDl

func (o *QosData) HasMaxbrDl() bool

HasMaxbrDl returns a boolean if a field has been set.

func (*QosData) HasMaxbrUl

func (o *QosData) HasMaxbrUl() bool

HasMaxbrUl returns a boolean if a field has been set.

func (*QosData) HasPacketDelayBudget

func (o *QosData) HasPacketDelayBudget() bool

HasPacketDelayBudget returns a boolean if a field has been set.

func (*QosData) HasPacketErrorRate

func (o *QosData) HasPacketErrorRate() bool

HasPacketErrorRate returns a boolean if a field has been set.

func (*QosData) HasPriorityLevel

func (o *QosData) HasPriorityLevel() bool

HasPriorityLevel returns a boolean if a field has been set.

func (*QosData) HasQnc

func (o *QosData) HasQnc() bool

HasQnc returns a boolean if a field has been set.

func (*QosData) HasReflectiveQos

func (o *QosData) HasReflectiveQos() bool

HasReflectiveQos returns a boolean if a field has been set.

func (*QosData) HasSharingKeyDl

func (o *QosData) HasSharingKeyDl() bool

HasSharingKeyDl returns a boolean if a field has been set.

func (*QosData) HasSharingKeyUl

func (o *QosData) HasSharingKeyUl() bool

HasSharingKeyUl returns a boolean if a field has been set.

func (*QosData) HasVar5qi

func (o *QosData) HasVar5qi() bool

HasVar5qi returns a boolean if a field has been set.

func (QosData) MarshalJSON

func (o QosData) MarshalJSON() ([]byte, error)

func (*QosData) SetArp

func (o *QosData) SetArp(v Arp)

SetArp gets a reference to the given Arp and assigns it to the Arp field.

func (*QosData) SetAverWindow

func (o *QosData) SetAverWindow(v int32)

SetAverWindow gets a reference to the given NullableInt32 and assigns it to the AverWindow field.

func (*QosData) SetAverWindowNil

func (o *QosData) SetAverWindowNil()

SetAverWindowNil sets the value for AverWindow to be an explicit nil

func (*QosData) SetDefQosFlowIndication

func (o *QosData) SetDefQosFlowIndication(v bool)

SetDefQosFlowIndication gets a reference to the given bool and assigns it to the DefQosFlowIndication field.

func (*QosData) SetExtMaxDataBurstVol

func (o *QosData) SetExtMaxDataBurstVol(v int32)

SetExtMaxDataBurstVol gets a reference to the given NullableInt32 and assigns it to the ExtMaxDataBurstVol field.

func (*QosData) SetExtMaxDataBurstVolNil

func (o *QosData) SetExtMaxDataBurstVolNil()

SetExtMaxDataBurstVolNil sets the value for ExtMaxDataBurstVol to be an explicit nil

func (*QosData) SetGbrDl

func (o *QosData) SetGbrDl(v string)

SetGbrDl gets a reference to the given NullableString and assigns it to the GbrDl field.

func (*QosData) SetGbrDlNil

func (o *QosData) SetGbrDlNil()

SetGbrDlNil sets the value for GbrDl to be an explicit nil

func (*QosData) SetGbrUl

func (o *QosData) SetGbrUl(v string)

SetGbrUl gets a reference to the given NullableString and assigns it to the GbrUl field.

func (*QosData) SetGbrUlNil

func (o *QosData) SetGbrUlNil()

SetGbrUlNil sets the value for GbrUl to be an explicit nil

func (*QosData) SetMaxDataBurstVol

func (o *QosData) SetMaxDataBurstVol(v int32)

SetMaxDataBurstVol gets a reference to the given NullableInt32 and assigns it to the MaxDataBurstVol field.

func (*QosData) SetMaxDataBurstVolNil

func (o *QosData) SetMaxDataBurstVolNil()

SetMaxDataBurstVolNil sets the value for MaxDataBurstVol to be an explicit nil

func (*QosData) SetMaxPacketLossRateDl

func (o *QosData) SetMaxPacketLossRateDl(v int32)

SetMaxPacketLossRateDl gets a reference to the given NullableInt32 and assigns it to the MaxPacketLossRateDl field.

func (*QosData) SetMaxPacketLossRateDlNil

func (o *QosData) SetMaxPacketLossRateDlNil()

SetMaxPacketLossRateDlNil sets the value for MaxPacketLossRateDl to be an explicit nil

func (*QosData) SetMaxPacketLossRateUl

func (o *QosData) SetMaxPacketLossRateUl(v int32)

SetMaxPacketLossRateUl gets a reference to the given NullableInt32 and assigns it to the MaxPacketLossRateUl field.

func (*QosData) SetMaxPacketLossRateUlNil

func (o *QosData) SetMaxPacketLossRateUlNil()

SetMaxPacketLossRateUlNil sets the value for MaxPacketLossRateUl to be an explicit nil

func (*QosData) SetMaxbrDl

func (o *QosData) SetMaxbrDl(v string)

SetMaxbrDl gets a reference to the given NullableString and assigns it to the MaxbrDl field.

func (*QosData) SetMaxbrDlNil

func (o *QosData) SetMaxbrDlNil()

SetMaxbrDlNil sets the value for MaxbrDl to be an explicit nil

func (*QosData) SetMaxbrUl

func (o *QosData) SetMaxbrUl(v string)

SetMaxbrUl gets a reference to the given NullableString and assigns it to the MaxbrUl field.

func (*QosData) SetMaxbrUlNil

func (o *QosData) SetMaxbrUlNil()

SetMaxbrUlNil sets the value for MaxbrUl to be an explicit nil

func (*QosData) SetPacketDelayBudget

func (o *QosData) SetPacketDelayBudget(v int32)

SetPacketDelayBudget gets a reference to the given int32 and assigns it to the PacketDelayBudget field.

func (*QosData) SetPacketErrorRate

func (o *QosData) SetPacketErrorRate(v string)

SetPacketErrorRate gets a reference to the given string and assigns it to the PacketErrorRate field.

func (*QosData) SetPriorityLevel

func (o *QosData) SetPriorityLevel(v int32)

SetPriorityLevel gets a reference to the given NullableInt32 and assigns it to the PriorityLevel field.

func (*QosData) SetPriorityLevelNil

func (o *QosData) SetPriorityLevelNil()

SetPriorityLevelNil sets the value for PriorityLevel to be an explicit nil

func (*QosData) SetQnc

func (o *QosData) SetQnc(v bool)

SetQnc gets a reference to the given bool and assigns it to the Qnc field.

func (*QosData) SetQosId

func (o *QosData) SetQosId(v string)

SetQosId sets field value

func (*QosData) SetReflectiveQos

func (o *QosData) SetReflectiveQos(v bool)

SetReflectiveQos gets a reference to the given bool and assigns it to the ReflectiveQos field.

func (*QosData) SetSharingKeyDl

func (o *QosData) SetSharingKeyDl(v string)

SetSharingKeyDl gets a reference to the given string and assigns it to the SharingKeyDl field.

func (*QosData) SetSharingKeyUl

func (o *QosData) SetSharingKeyUl(v string)

SetSharingKeyUl gets a reference to the given string and assigns it to the SharingKeyUl field.

func (*QosData) SetVar5qi

func (o *QosData) SetVar5qi(v int32)

SetVar5qi gets a reference to the given int32 and assigns it to the Var5qi field.

func (QosData) ToMap

func (o QosData) ToMap() (map[string]interface{}, error)

func (*QosData) UnsetAverWindow

func (o *QosData) UnsetAverWindow()

UnsetAverWindow ensures that no value is present for AverWindow, not even an explicit nil

func (*QosData) UnsetExtMaxDataBurstVol

func (o *QosData) UnsetExtMaxDataBurstVol()

UnsetExtMaxDataBurstVol ensures that no value is present for ExtMaxDataBurstVol, not even an explicit nil

func (*QosData) UnsetGbrDl

func (o *QosData) UnsetGbrDl()

UnsetGbrDl ensures that no value is present for GbrDl, not even an explicit nil

func (*QosData) UnsetGbrUl

func (o *QosData) UnsetGbrUl()

UnsetGbrUl ensures that no value is present for GbrUl, not even an explicit nil

func (*QosData) UnsetMaxDataBurstVol

func (o *QosData) UnsetMaxDataBurstVol()

UnsetMaxDataBurstVol ensures that no value is present for MaxDataBurstVol, not even an explicit nil

func (*QosData) UnsetMaxPacketLossRateDl

func (o *QosData) UnsetMaxPacketLossRateDl()

UnsetMaxPacketLossRateDl ensures that no value is present for MaxPacketLossRateDl, not even an explicit nil

func (*QosData) UnsetMaxPacketLossRateUl

func (o *QosData) UnsetMaxPacketLossRateUl()

UnsetMaxPacketLossRateUl ensures that no value is present for MaxPacketLossRateUl, not even an explicit nil

func (*QosData) UnsetMaxbrDl

func (o *QosData) UnsetMaxbrDl()

UnsetMaxbrDl ensures that no value is present for MaxbrDl, not even an explicit nil

func (*QosData) UnsetMaxbrUl

func (o *QosData) UnsetMaxbrUl()

UnsetMaxbrUl ensures that no value is present for MaxbrUl, not even an explicit nil

func (*QosData) UnsetPriorityLevel

func (o *QosData) UnsetPriorityLevel()

UnsetPriorityLevel ensures that no value is present for PriorityLevel, not even an explicit nil

type QosFlowUsage

type QosFlowUsage struct {
	String *string
}

QosFlowUsage Possible values are - GENERAL: Indicate no specific QoS flow usage information is available. - IMS_SIG: Indicate that the QoS flow is used for IMS signalling only.

func (*QosFlowUsage) MarshalJSON

func (src *QosFlowUsage) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*QosFlowUsage) UnmarshalJSON

func (dst *QosFlowUsage) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type QosMonitoringData

type QosMonitoringData struct {
	// Univocally identifies the QoS monitoring policy data within a PDU session.
	QmId string `json:"qmId"`
	// indicates the UL packet delay, DL packet delay and/or round trip packet delay between the UE and the UPF is to be monitored when the QoS Monitoring for URLLC is enabled for the service data flow.
	ReqQosMonParams []RequestedQosMonitoringParameter `json:"reqQosMonParams"`
	RepFreqs        []ReportingFrequency              `json:"repFreqs"`
	// Indicates the period of time in units of miliiseconds for DL packet delay.
	RepThreshDl NullableInt32 `json:"repThreshDl,omitempty"`
	// Indicates the period of time in units of miliiseconds for UL packet delay.
	RepThreshUl NullableInt32 `json:"repThreshUl,omitempty"`
	// Indicates the period of time in units of miliiseconds for round trip packet delay.
	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"`
	// String providing an URI formatted according to RFC 3986 with the OpenAPI 'nullable: true' property.
	NotifyUri     NullableString `json:"notifyUri,omitempty"`
	NotifyCorreId NullableString `json:"notifyCorreId,omitempty"`
	// Indicates that the direct event notification sent by UPF to the Local NEF or AF is  requested if it is included and set to true.
	DirectNotifInd *bool `json:"directNotifInd,omitempty"`
}

QosMonitoringData Contains QoS monitoring related control information.

func NewQosMonitoringData

func NewQosMonitoringData(qmId string, reqQosMonParams []RequestedQosMonitoringParameter, repFreqs []ReportingFrequency) *QosMonitoringData

NewQosMonitoringData instantiates a new QosMonitoringData object This constructor will assign default values to properties that have it defined, 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 NewQosMonitoringDataWithDefaults

func NewQosMonitoringDataWithDefaults() *QosMonitoringData

NewQosMonitoringDataWithDefaults instantiates a new QosMonitoringData object This 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 (*QosMonitoringData) GetDirectNotifInd

func (o *QosMonitoringData) GetDirectNotifInd() bool

GetDirectNotifInd returns the DirectNotifInd field value if set, zero value otherwise.

func (*QosMonitoringData) GetDirectNotifIndOk

func (o *QosMonitoringData) GetDirectNotifIndOk() (*bool, bool)

GetDirectNotifIndOk returns a tuple with the DirectNotifInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QosMonitoringData) GetNotifyCorreId

func (o *QosMonitoringData) GetNotifyCorreId() string

GetNotifyCorreId returns the NotifyCorreId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*QosMonitoringData) GetNotifyCorreIdOk

func (o *QosMonitoringData) GetNotifyCorreIdOk() (*string, bool)

GetNotifyCorreIdOk returns a tuple with the NotifyCorreId 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 (*QosMonitoringData) GetNotifyUri

func (o *QosMonitoringData) GetNotifyUri() string

GetNotifyUri returns the NotifyUri field value if set, zero value otherwise (both if not set or set to explicit null).

func (*QosMonitoringData) GetNotifyUriOk

func (o *QosMonitoringData) GetNotifyUriOk() (*string, bool)

GetNotifyUriOk returns a tuple with the NotifyUri 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 (*QosMonitoringData) GetQmId

func (o *QosMonitoringData) GetQmId() string

GetQmId returns the QmId field value

func (*QosMonitoringData) GetQmIdOk

func (o *QosMonitoringData) GetQmIdOk() (*string, bool)

GetQmIdOk returns a tuple with the QmId field value and a boolean to check if the value has been set.

func (*QosMonitoringData) GetRepFreqs

func (o *QosMonitoringData) GetRepFreqs() []ReportingFrequency

GetRepFreqs returns the RepFreqs field value

func (*QosMonitoringData) GetRepFreqsOk

func (o *QosMonitoringData) GetRepFreqsOk() ([]ReportingFrequency, bool)

GetRepFreqsOk returns a tuple with the RepFreqs field value and a boolean to check if the value has been set.

func (*QosMonitoringData) GetRepPeriod

func (o *QosMonitoringData) GetRepPeriod() int32

GetRepPeriod returns the RepPeriod field value if set, zero value otherwise (both if not set or set to explicit null).

func (*QosMonitoringData) GetRepPeriodOk

func (o *QosMonitoringData) 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 (*QosMonitoringData) GetRepThreshDl

func (o *QosMonitoringData) GetRepThreshDl() int32

GetRepThreshDl returns the RepThreshDl field value if set, zero value otherwise (both if not set or set to explicit null).

func (*QosMonitoringData) GetRepThreshDlOk

func (o *QosMonitoringData) 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 (*QosMonitoringData) GetRepThreshRp

func (o *QosMonitoringData) GetRepThreshRp() int32

GetRepThreshRp returns the RepThreshRp field value if set, zero value otherwise (both if not set or set to explicit null).

func (*QosMonitoringData) GetRepThreshRpOk

func (o *QosMonitoringData) 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 (*QosMonitoringData) GetRepThreshUl

func (o *QosMonitoringData) GetRepThreshUl() int32

GetRepThreshUl returns the RepThreshUl field value if set, zero value otherwise (both if not set or set to explicit null).

func (*QosMonitoringData) GetRepThreshUlOk

func (o *QosMonitoringData) 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 (*QosMonitoringData) GetReqQosMonParams

func (o *QosMonitoringData) GetReqQosMonParams() []RequestedQosMonitoringParameter

GetReqQosMonParams returns the ReqQosMonParams field value

func (*QosMonitoringData) GetReqQosMonParamsOk

func (o *QosMonitoringData) GetReqQosMonParamsOk() ([]RequestedQosMonitoringParameter, bool)

GetReqQosMonParamsOk returns a tuple with the ReqQosMonParams field value and a boolean to check if the value has been set.

func (*QosMonitoringData) GetWaitTime

func (o *QosMonitoringData) GetWaitTime() int32

GetWaitTime returns the WaitTime field value if set, zero value otherwise (both if not set or set to explicit null).

func (*QosMonitoringData) GetWaitTimeOk

func (o *QosMonitoringData) 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 (*QosMonitoringData) HasDirectNotifInd

func (o *QosMonitoringData) HasDirectNotifInd() bool

HasDirectNotifInd returns a boolean if a field has been set.

func (*QosMonitoringData) HasNotifyCorreId

func (o *QosMonitoringData) HasNotifyCorreId() bool

HasNotifyCorreId returns a boolean if a field has been set.

func (*QosMonitoringData) HasNotifyUri

func (o *QosMonitoringData) HasNotifyUri() bool

HasNotifyUri returns a boolean if a field has been set.

func (*QosMonitoringData) HasRepPeriod

func (o *QosMonitoringData) HasRepPeriod() bool

HasRepPeriod returns a boolean if a field has been set.

func (*QosMonitoringData) HasRepThreshDl

func (o *QosMonitoringData) HasRepThreshDl() bool

HasRepThreshDl returns a boolean if a field has been set.

func (*QosMonitoringData) HasRepThreshRp

func (o *QosMonitoringData) HasRepThreshRp() bool

HasRepThreshRp returns a boolean if a field has been set.

func (*QosMonitoringData) HasRepThreshUl

func (o *QosMonitoringData) HasRepThreshUl() bool

HasRepThreshUl returns a boolean if a field has been set.

func (*QosMonitoringData) HasWaitTime

func (o *QosMonitoringData) HasWaitTime() bool

HasWaitTime returns a boolean if a field has been set.

func (QosMonitoringData) MarshalJSON

func (o QosMonitoringData) MarshalJSON() ([]byte, error)

func (*QosMonitoringData) SetDirectNotifInd

func (o *QosMonitoringData) SetDirectNotifInd(v bool)

SetDirectNotifInd gets a reference to the given bool and assigns it to the DirectNotifInd field.

func (*QosMonitoringData) SetNotifyCorreId

func (o *QosMonitoringData) SetNotifyCorreId(v string)

SetNotifyCorreId gets a reference to the given NullableString and assigns it to the NotifyCorreId field.

func (*QosMonitoringData) SetNotifyCorreIdNil

func (o *QosMonitoringData) SetNotifyCorreIdNil()

SetNotifyCorreIdNil sets the value for NotifyCorreId to be an explicit nil

func (*QosMonitoringData) SetNotifyUri

func (o *QosMonitoringData) SetNotifyUri(v string)

SetNotifyUri gets a reference to the given NullableString and assigns it to the NotifyUri field.

func (*QosMonitoringData) SetNotifyUriNil

func (o *QosMonitoringData) SetNotifyUriNil()

SetNotifyUriNil sets the value for NotifyUri to be an explicit nil

func (*QosMonitoringData) SetQmId

func (o *QosMonitoringData) SetQmId(v string)

SetQmId sets field value

func (*QosMonitoringData) SetRepFreqs

func (o *QosMonitoringData) SetRepFreqs(v []ReportingFrequency)

SetRepFreqs sets field value

func (*QosMonitoringData) SetRepPeriod

func (o *QosMonitoringData) SetRepPeriod(v int32)

SetRepPeriod gets a reference to the given NullableInt32 and assigns it to the RepPeriod field.

func (*QosMonitoringData) SetRepPeriodNil

func (o *QosMonitoringData) SetRepPeriodNil()

SetRepPeriodNil sets the value for RepPeriod to be an explicit nil

func (*QosMonitoringData) SetRepThreshDl

func (o *QosMonitoringData) SetRepThreshDl(v int32)

SetRepThreshDl gets a reference to the given NullableInt32 and assigns it to the RepThreshDl field.

func (*QosMonitoringData) SetRepThreshDlNil

func (o *QosMonitoringData) SetRepThreshDlNil()

SetRepThreshDlNil sets the value for RepThreshDl to be an explicit nil

func (*QosMonitoringData) SetRepThreshRp

func (o *QosMonitoringData) SetRepThreshRp(v int32)

SetRepThreshRp gets a reference to the given NullableInt32 and assigns it to the RepThreshRp field.

func (*QosMonitoringData) SetRepThreshRpNil

func (o *QosMonitoringData) SetRepThreshRpNil()

SetRepThreshRpNil sets the value for RepThreshRp to be an explicit nil

func (*QosMonitoringData) SetRepThreshUl

func (o *QosMonitoringData) SetRepThreshUl(v int32)

SetRepThreshUl gets a reference to the given NullableInt32 and assigns it to the RepThreshUl field.

func (*QosMonitoringData) SetRepThreshUlNil

func (o *QosMonitoringData) SetRepThreshUlNil()

SetRepThreshUlNil sets the value for RepThreshUl to be an explicit nil

func (*QosMonitoringData) SetReqQosMonParams

func (o *QosMonitoringData) SetReqQosMonParams(v []RequestedQosMonitoringParameter)

SetReqQosMonParams sets field value

func (*QosMonitoringData) SetWaitTime

func (o *QosMonitoringData) SetWaitTime(v int32)

SetWaitTime gets a reference to the given NullableInt32 and assigns it to the WaitTime field.

func (*QosMonitoringData) SetWaitTimeNil

func (o *QosMonitoringData) SetWaitTimeNil()

SetWaitTimeNil sets the value for WaitTime to be an explicit nil

func (QosMonitoringData) ToMap

func (o QosMonitoringData) ToMap() (map[string]interface{}, error)

func (*QosMonitoringData) UnsetNotifyCorreId

func (o *QosMonitoringData) UnsetNotifyCorreId()

UnsetNotifyCorreId ensures that no value is present for NotifyCorreId, not even an explicit nil

func (*QosMonitoringData) UnsetNotifyUri

func (o *QosMonitoringData) UnsetNotifyUri()

UnsetNotifyUri ensures that no value is present for NotifyUri, not even an explicit nil

func (*QosMonitoringData) UnsetRepPeriod

func (o *QosMonitoringData) UnsetRepPeriod()

UnsetRepPeriod ensures that no value is present for RepPeriod, not even an explicit nil

func (*QosMonitoringData) UnsetRepThreshDl

func (o *QosMonitoringData) UnsetRepThreshDl()

UnsetRepThreshDl ensures that no value is present for RepThreshDl, not even an explicit nil

func (*QosMonitoringData) UnsetRepThreshRp

func (o *QosMonitoringData) UnsetRepThreshRp()

UnsetRepThreshRp ensures that no value is present for RepThreshRp, not even an explicit nil

func (*QosMonitoringData) UnsetRepThreshUl

func (o *QosMonitoringData) UnsetRepThreshUl()

UnsetRepThreshUl ensures that no value is present for RepThreshUl, not even an explicit nil

func (*QosMonitoringData) UnsetWaitTime

func (o *QosMonitoringData) UnsetWaitTime()

UnsetWaitTime ensures that no value is present for WaitTime, not even an explicit nil

type QosMonitoringReport

type QosMonitoringReport struct {
	// An array of PCC rule id references to the PCC rules associated with the QoS monitoring  report.
	RefPccRuleIds []string `json:"refPccRuleIds"`
	UlDelays      []int32  `json:"ulDelays,omitempty"`
	DlDelays      []int32  `json:"dlDelays,omitempty"`
	RtDelays      []int32  `json:"rtDelays,omitempty"`
}

QosMonitoringReport Contains reporting information on QoS monitoring.

func NewQosMonitoringReport

func NewQosMonitoringReport(refPccRuleIds []string) *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) GetRefPccRuleIds

func (o *QosMonitoringReport) GetRefPccRuleIds() []string

GetRefPccRuleIds returns the RefPccRuleIds field value

func (*QosMonitoringReport) GetRefPccRuleIdsOk

func (o *QosMonitoringReport) GetRefPccRuleIdsOk() ([]string, bool)

GetRefPccRuleIdsOk returns a tuple with the RefPccRuleIds field value 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) SetRefPccRuleIds

func (o *QosMonitoringReport) SetRefPccRuleIds(v []string)

SetRefPccRuleIds sets field value

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 QosNotifType

type QosNotifType struct {
	String *string
}

QosNotifType Indicates the notification type for QoS Notification Control.

func (*QosNotifType) MarshalJSON

func (src *QosNotifType) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*QosNotifType) UnmarshalJSON

func (dst *QosNotifType) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type QosNotificationControlInfo

type QosNotificationControlInfo struct {
	// An array of PCC rule id references to the PCC rules associated with the QoS notification  control info.
	RefPccRuleIds []string     `json:"refPccRuleIds"`
	NotifType     QosNotifType `json:"notifType"`
	// Represents the content version of some content.
	ContVer *int32 `json:"contVer,omitempty"`
	// Indicates the alternative QoS parameter set the NG-RAN can guarantee. When it is omitted and the notifType attribute is set to NOT_GUAARANTEED it indicates that the lowest priority alternative QoS profile could not be fulfilled.
	AltQosParamId *string `json:"altQosParamId,omitempty"`
	// When present and set to true it indicates that the Alternative QoS profiles are not  supported by NG-RAN.
	AltQosNotSuppInd *bool `json:"altQosNotSuppInd,omitempty"`
}

QosNotificationControlInfo Contains the QoS Notification Control Information.

func NewQosNotificationControlInfo

func NewQosNotificationControlInfo(refPccRuleIds []string, notifType QosNotifType) *QosNotificationControlInfo

NewQosNotificationControlInfo instantiates a new QosNotificationControlInfo object This constructor will assign default values to properties that have it defined, 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 NewQosNotificationControlInfoWithDefaults

func NewQosNotificationControlInfoWithDefaults() *QosNotificationControlInfo

NewQosNotificationControlInfoWithDefaults instantiates a new QosNotificationControlInfo object This 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 (*QosNotificationControlInfo) GetAltQosNotSuppInd

func (o *QosNotificationControlInfo) GetAltQosNotSuppInd() bool

GetAltQosNotSuppInd returns the AltQosNotSuppInd field value if set, zero value otherwise.

func (*QosNotificationControlInfo) GetAltQosNotSuppIndOk

func (o *QosNotificationControlInfo) GetAltQosNotSuppIndOk() (*bool, bool)

GetAltQosNotSuppIndOk returns a tuple with the AltQosNotSuppInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QosNotificationControlInfo) GetAltQosParamId

func (o *QosNotificationControlInfo) GetAltQosParamId() string

GetAltQosParamId returns the AltQosParamId field value if set, zero value otherwise.

func (*QosNotificationControlInfo) GetAltQosParamIdOk

func (o *QosNotificationControlInfo) GetAltQosParamIdOk() (*string, bool)

GetAltQosParamIdOk returns a tuple with the AltQosParamId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QosNotificationControlInfo) GetContVer

func (o *QosNotificationControlInfo) GetContVer() int32

GetContVer returns the ContVer field value if set, zero value otherwise.

func (*QosNotificationControlInfo) GetContVerOk

func (o *QosNotificationControlInfo) GetContVerOk() (*int32, bool)

GetContVerOk returns a tuple with the ContVer field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QosNotificationControlInfo) GetNotifType

func (o *QosNotificationControlInfo) GetNotifType() QosNotifType

GetNotifType returns the NotifType field value

func (*QosNotificationControlInfo) GetNotifTypeOk

func (o *QosNotificationControlInfo) GetNotifTypeOk() (*QosNotifType, bool)

GetNotifTypeOk returns a tuple with the NotifType field value and a boolean to check if the value has been set.

func (*QosNotificationControlInfo) GetRefPccRuleIds

func (o *QosNotificationControlInfo) GetRefPccRuleIds() []string

GetRefPccRuleIds returns the RefPccRuleIds field value

func (*QosNotificationControlInfo) GetRefPccRuleIdsOk

func (o *QosNotificationControlInfo) GetRefPccRuleIdsOk() ([]string, bool)

GetRefPccRuleIdsOk returns a tuple with the RefPccRuleIds field value and a boolean to check if the value has been set.

func (*QosNotificationControlInfo) HasAltQosNotSuppInd

func (o *QosNotificationControlInfo) HasAltQosNotSuppInd() bool

HasAltQosNotSuppInd returns a boolean if a field has been set.

func (*QosNotificationControlInfo) HasAltQosParamId

func (o *QosNotificationControlInfo) HasAltQosParamId() bool

HasAltQosParamId returns a boolean if a field has been set.

func (*QosNotificationControlInfo) HasContVer

func (o *QosNotificationControlInfo) HasContVer() bool

HasContVer returns a boolean if a field has been set.

func (QosNotificationControlInfo) MarshalJSON

func (o QosNotificationControlInfo) MarshalJSON() ([]byte, error)

func (*QosNotificationControlInfo) SetAltQosNotSuppInd

func (o *QosNotificationControlInfo) SetAltQosNotSuppInd(v bool)

SetAltQosNotSuppInd gets a reference to the given bool and assigns it to the AltQosNotSuppInd field.

func (*QosNotificationControlInfo) SetAltQosParamId

func (o *QosNotificationControlInfo) SetAltQosParamId(v string)

SetAltQosParamId gets a reference to the given string and assigns it to the AltQosParamId field.

func (*QosNotificationControlInfo) SetContVer

func (o *QosNotificationControlInfo) SetContVer(v int32)

SetContVer gets a reference to the given int32 and assigns it to the ContVer field.

func (*QosNotificationControlInfo) SetNotifType

func (o *QosNotificationControlInfo) SetNotifType(v QosNotifType)

SetNotifType sets field value

func (*QosNotificationControlInfo) SetRefPccRuleIds

func (o *QosNotificationControlInfo) SetRefPccRuleIds(v []string)

SetRefPccRuleIds sets field value

func (QosNotificationControlInfo) ToMap

func (o QosNotificationControlInfo) ToMap() (map[string]interface{}, error)

type QosResourceType

type QosResourceType struct {
	String *string
}

QosResourceType The enumeration QosResourceType indicates whether a QoS Flow is non-GBR, delay critical GBR, or non-delay critical GBR (see clauses 5.7.3.4 and 5.7.3.5 of 3GPP TS 23.501). It shall comply with the provisions defined in table 5.5.3.6-1.

func (*QosResourceType) MarshalJSON

func (src *QosResourceType) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*QosResourceType) UnmarshalJSON

func (dst *QosResourceType) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type RanNasRelCause

type RanNasRelCause struct {
	NgApCause *NgApCause `json:"ngApCause,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	Var5gMmCause *int32 `json:"5gMmCause,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	Var5gSmCause *int32 `json:"5gSmCause,omitempty"`
	// Defines the EPS RAN/NAS release cause.
	EpsCause *string `json:"epsCause,omitempty"`
}

RanNasRelCause Contains the RAN/NAS release cause.

func NewRanNasRelCause

func NewRanNasRelCause() *RanNasRelCause

NewRanNasRelCause instantiates a new RanNasRelCause object This constructor will assign default values to properties that have it defined, 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 NewRanNasRelCauseWithDefaults

func NewRanNasRelCauseWithDefaults() *RanNasRelCause

NewRanNasRelCauseWithDefaults instantiates a new RanNasRelCause object This 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 (*RanNasRelCause) GetEpsCause

func (o *RanNasRelCause) GetEpsCause() string

GetEpsCause returns the EpsCause field value if set, zero value otherwise.

func (*RanNasRelCause) GetEpsCauseOk

func (o *RanNasRelCause) GetEpsCauseOk() (*string, bool)

GetEpsCauseOk returns a tuple with the EpsCause field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RanNasRelCause) GetNgApCause

func (o *RanNasRelCause) GetNgApCause() NgApCause

GetNgApCause returns the NgApCause field value if set, zero value otherwise.

func (*RanNasRelCause) GetNgApCauseOk

func (o *RanNasRelCause) GetNgApCauseOk() (*NgApCause, bool)

GetNgApCauseOk returns a tuple with the NgApCause field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RanNasRelCause) GetVar5gMmCause

func (o *RanNasRelCause) GetVar5gMmCause() int32

GetVar5gMmCause returns the Var5gMmCause field value if set, zero value otherwise.

func (*RanNasRelCause) GetVar5gMmCauseOk

func (o *RanNasRelCause) GetVar5gMmCauseOk() (*int32, bool)

GetVar5gMmCauseOk returns a tuple with the Var5gMmCause field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RanNasRelCause) GetVar5gSmCause

func (o *RanNasRelCause) GetVar5gSmCause() int32

GetVar5gSmCause returns the Var5gSmCause field value if set, zero value otherwise.

func (*RanNasRelCause) GetVar5gSmCauseOk

func (o *RanNasRelCause) GetVar5gSmCauseOk() (*int32, bool)

GetVar5gSmCauseOk returns a tuple with the Var5gSmCause field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RanNasRelCause) HasEpsCause

func (o *RanNasRelCause) HasEpsCause() bool

HasEpsCause returns a boolean if a field has been set.

func (*RanNasRelCause) HasNgApCause

func (o *RanNasRelCause) HasNgApCause() bool

HasNgApCause returns a boolean if a field has been set.

func (*RanNasRelCause) HasVar5gMmCause

func (o *RanNasRelCause) HasVar5gMmCause() bool

HasVar5gMmCause returns a boolean if a field has been set.

func (*RanNasRelCause) HasVar5gSmCause

func (o *RanNasRelCause) HasVar5gSmCause() bool

HasVar5gSmCause returns a boolean if a field has been set.

func (RanNasRelCause) MarshalJSON

func (o RanNasRelCause) MarshalJSON() ([]byte, error)

func (*RanNasRelCause) SetEpsCause

func (o *RanNasRelCause) SetEpsCause(v string)

SetEpsCause gets a reference to the given string and assigns it to the EpsCause field.

func (*RanNasRelCause) SetNgApCause

func (o *RanNasRelCause) SetNgApCause(v NgApCause)

SetNgApCause gets a reference to the given NgApCause and assigns it to the NgApCause field.

func (*RanNasRelCause) SetVar5gMmCause

func (o *RanNasRelCause) SetVar5gMmCause(v int32)

SetVar5gMmCause gets a reference to the given int32 and assigns it to the Var5gMmCause field.

func (*RanNasRelCause) SetVar5gSmCause

func (o *RanNasRelCause) SetVar5gSmCause(v int32)

SetVar5gSmCause gets a reference to the given int32 and assigns it to the Var5gSmCause field.

func (RanNasRelCause) ToMap

func (o RanNasRelCause) 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 RedirectAddressType

type RedirectAddressType struct {
	String *string
}

RedirectAddressType Possible values are - IPV4_ADDR: Indicates that the address type is in the form of \"dotted-decimal\" IPv4 address. - IPV6_ADDR: Indicates that the address type is in the form of IPv6 address. - URL: Indicates that the address type is in the form of Uniform Resource Locator. - SIP_URI: Indicates that the address type is in the form of SIP Uniform Resource Identifier.

func (*RedirectAddressType) MarshalJSON

func (src *RedirectAddressType) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*RedirectAddressType) UnmarshalJSON

func (dst *RedirectAddressType) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type RedirectInformation

type RedirectInformation struct {
	// Indicates the redirect is enable.
	RedirectEnabled     *bool                `json:"redirectEnabled,omitempty"`
	RedirectAddressType *RedirectAddressType `json:"redirectAddressType,omitempty"`
	// Indicates the address of the redirect server. If \"redirectAddressType\" attribute indicates the IPV4_ADDR, the encoding is the same as the Ipv4Addr data type defined in 3GPP TS 29.571.If \"redirectAddressType\" attribute indicates the IPV6_ADDR, the encoding is the same as the Ipv6Addr data type defined in 3GPP TS 29.571.If \"redirectAddressType\" attribute indicates the URL or SIP_URI, the encoding is the same as the Uri data type defined in 3GPP TS 29.571.
	RedirectServerAddress *string `json:"redirectServerAddress,omitempty"`
}

RedirectInformation Contains the redirect information.

func NewRedirectInformation

func NewRedirectInformation() *RedirectInformation

NewRedirectInformation instantiates a new RedirectInformation object This constructor will assign default values to properties that have it defined, 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 NewRedirectInformationWithDefaults

func NewRedirectInformationWithDefaults() *RedirectInformation

NewRedirectInformationWithDefaults instantiates a new RedirectInformation object This 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 (*RedirectInformation) GetRedirectAddressType

func (o *RedirectInformation) GetRedirectAddressType() RedirectAddressType

GetRedirectAddressType returns the RedirectAddressType field value if set, zero value otherwise.

func (*RedirectInformation) GetRedirectAddressTypeOk

func (o *RedirectInformation) GetRedirectAddressTypeOk() (*RedirectAddressType, bool)

GetRedirectAddressTypeOk returns a tuple with the RedirectAddressType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RedirectInformation) GetRedirectEnabled

func (o *RedirectInformation) GetRedirectEnabled() bool

GetRedirectEnabled returns the RedirectEnabled field value if set, zero value otherwise.

func (*RedirectInformation) GetRedirectEnabledOk

func (o *RedirectInformation) GetRedirectEnabledOk() (*bool, bool)

GetRedirectEnabledOk returns a tuple with the RedirectEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RedirectInformation) GetRedirectServerAddress

func (o *RedirectInformation) GetRedirectServerAddress() string

GetRedirectServerAddress returns the RedirectServerAddress field value if set, zero value otherwise.

func (*RedirectInformation) GetRedirectServerAddressOk

func (o *RedirectInformation) GetRedirectServerAddressOk() (*string, bool)

GetRedirectServerAddressOk returns a tuple with the RedirectServerAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RedirectInformation) HasRedirectAddressType

func (o *RedirectInformation) HasRedirectAddressType() bool

HasRedirectAddressType returns a boolean if a field has been set.

func (*RedirectInformation) HasRedirectEnabled

func (o *RedirectInformation) HasRedirectEnabled() bool

HasRedirectEnabled returns a boolean if a field has been set.

func (*RedirectInformation) HasRedirectServerAddress

func (o *RedirectInformation) HasRedirectServerAddress() bool

HasRedirectServerAddress returns a boolean if a field has been set.

func (RedirectInformation) MarshalJSON

func (o RedirectInformation) MarshalJSON() ([]byte, error)

func (*RedirectInformation) SetRedirectAddressType

func (o *RedirectInformation) SetRedirectAddressType(v RedirectAddressType)

SetRedirectAddressType gets a reference to the given RedirectAddressType and assigns it to the RedirectAddressType field.

func (*RedirectInformation) SetRedirectEnabled

func (o *RedirectInformation) SetRedirectEnabled(v bool)

SetRedirectEnabled gets a reference to the given bool and assigns it to the RedirectEnabled field.

func (*RedirectInformation) SetRedirectServerAddress

func (o *RedirectInformation) SetRedirectServerAddress(v string)

SetRedirectServerAddress gets a reference to the given string and assigns it to the RedirectServerAddress field.

func (RedirectInformation) ToMap

func (o RedirectInformation) ToMap() (map[string]interface{}, error)

type RedirectResponse

type RedirectResponse struct {
	Cause *string `json:"cause,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	TargetScp *string `json:"targetScp,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	TargetSepp *string `json:"targetSepp,omitempty"`
}

RedirectResponse The response shall include a Location header field containing a different URI (pointing to a different URI of an other service instance), or the same URI if a request is redirected to the same target resource via a different SCP.

func NewRedirectResponse

func NewRedirectResponse() *RedirectResponse

NewRedirectResponse instantiates a new RedirectResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRedirectResponseWithDefaults

func NewRedirectResponseWithDefaults() *RedirectResponse

NewRedirectResponseWithDefaults instantiates a new RedirectResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RedirectResponse) GetCause

func (o *RedirectResponse) GetCause() string

GetCause returns the Cause field value if set, zero value otherwise.

func (*RedirectResponse) GetCauseOk

func (o *RedirectResponse) GetCauseOk() (*string, bool)

GetCauseOk returns a tuple with the Cause field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RedirectResponse) GetTargetScp

func (o *RedirectResponse) GetTargetScp() string

GetTargetScp returns the TargetScp field value if set, zero value otherwise.

func (*RedirectResponse) GetTargetScpOk

func (o *RedirectResponse) GetTargetScpOk() (*string, bool)

GetTargetScpOk returns a tuple with the TargetScp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RedirectResponse) GetTargetSepp

func (o *RedirectResponse) GetTargetSepp() string

GetTargetSepp returns the TargetSepp field value if set, zero value otherwise.

func (*RedirectResponse) GetTargetSeppOk

func (o *RedirectResponse) GetTargetSeppOk() (*string, bool)

GetTargetSeppOk returns a tuple with the TargetSepp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RedirectResponse) HasCause

func (o *RedirectResponse) HasCause() bool

HasCause returns a boolean if a field has been set.

func (*RedirectResponse) HasTargetScp

func (o *RedirectResponse) HasTargetScp() bool

HasTargetScp returns a boolean if a field has been set.

func (*RedirectResponse) HasTargetSepp

func (o *RedirectResponse) HasTargetSepp() bool

HasTargetSepp returns a boolean if a field has been set.

func (RedirectResponse) MarshalJSON

func (o RedirectResponse) MarshalJSON() ([]byte, error)

func (*RedirectResponse) SetCause

func (o *RedirectResponse) SetCause(v string)

SetCause gets a reference to the given string and assigns it to the Cause field.

func (*RedirectResponse) SetTargetScp

func (o *RedirectResponse) SetTargetScp(v string)

SetTargetScp gets a reference to the given string and assigns it to the TargetScp field.

func (*RedirectResponse) SetTargetSepp

func (o *RedirectResponse) SetTargetSepp(v string)

SetTargetSepp gets a reference to the given string and assigns it to the TargetSepp field.

func (RedirectResponse) ToMap

func (o RedirectResponse) ToMap() (map[string]interface{}, error)

type ReportingFrequency

type ReportingFrequency struct {
	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 ReportingLevel

type ReportingLevel struct {
	NullValue *NullValue
	String    *string
}

ReportingLevel Possible values are: - SER_ID_LEVEL: Indicates that the usage shall be reported on service id and rating group combination level. - RAT_GR_LEVEL: Indicates that the usage shall be reported on rating group level. - SPON_CON_LEVEL: Indicates that the usage shall be reported on sponsor identity and rating group combination level.

func (*ReportingLevel) MarshalJSON

func (src *ReportingLevel) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*ReportingLevel) UnmarshalJSON

func (dst *ReportingLevel) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type RequestedQos

type RequestedQos struct {
	// Unsigned integer representing a 5G QoS Identifier (see clause 5.7.2.1 of 3GPP TS 23.501, within the range 0 to 255.
	Var5qi int32 `json:"5qi"`
	// String representing a bit rate; the prefixes follow the standard symbols from The International System of Units, and represent x1000 multipliers, with the exception that prefix \"K\" is used to represent the standard symbol \"k\".
	GbrUl *string `json:"gbrUl,omitempty"`
	// String representing a bit rate; the prefixes follow the standard symbols from The International System of Units, and represent x1000 multipliers, with the exception that prefix \"K\" is used to represent the standard symbol \"k\".
	GbrDl *string `json:"gbrDl,omitempty"`
}

RequestedQos Contains the QoS information requested by the UE.

func NewRequestedQos

func NewRequestedQos(var5qi int32) *RequestedQos

NewRequestedQos instantiates a new RequestedQos object This constructor will assign default values to properties that have it defined, 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 NewRequestedQosWithDefaults

func NewRequestedQosWithDefaults() *RequestedQos

NewRequestedQosWithDefaults instantiates a new RequestedQos object This 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 (*RequestedQos) GetGbrDl

func (o *RequestedQos) GetGbrDl() string

GetGbrDl returns the GbrDl field value if set, zero value otherwise.

func (*RequestedQos) GetGbrDlOk

func (o *RequestedQos) GetGbrDlOk() (*string, bool)

GetGbrDlOk returns a tuple with the GbrDl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RequestedQos) GetGbrUl

func (o *RequestedQos) GetGbrUl() string

GetGbrUl returns the GbrUl field value if set, zero value otherwise.

func (*RequestedQos) GetGbrUlOk

func (o *RequestedQos) GetGbrUlOk() (*string, bool)

GetGbrUlOk returns a tuple with the GbrUl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RequestedQos) GetVar5qi

func (o *RequestedQos) GetVar5qi() int32

GetVar5qi returns the Var5qi field value

func (*RequestedQos) GetVar5qiOk

func (o *RequestedQos) GetVar5qiOk() (*int32, bool)

GetVar5qiOk returns a tuple with the Var5qi field value and a boolean to check if the value has been set.

func (*RequestedQos) HasGbrDl

func (o *RequestedQos) HasGbrDl() bool

HasGbrDl returns a boolean if a field has been set.

func (*RequestedQos) HasGbrUl

func (o *RequestedQos) HasGbrUl() bool

HasGbrUl returns a boolean if a field has been set.

func (RequestedQos) MarshalJSON

func (o RequestedQos) MarshalJSON() ([]byte, error)

func (*RequestedQos) SetGbrDl

func (o *RequestedQos) SetGbrDl(v string)

SetGbrDl gets a reference to the given string and assigns it to the GbrDl field.

func (*RequestedQos) SetGbrUl

func (o *RequestedQos) SetGbrUl(v string)

SetGbrUl gets a reference to the given string and assigns it to the GbrUl field.

func (*RequestedQos) SetVar5qi

func (o *RequestedQos) SetVar5qi(v int32)

SetVar5qi sets field value

func (RequestedQos) ToMap

func (o RequestedQos) ToMap() (map[string]interface{}, error)

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 RequestedRuleData

type RequestedRuleData struct {
	// An array of PCC rule id references to the PCC rules associated with the control data.
	RefPccRuleIds []string `json:"refPccRuleIds"`
	// Array of requested rule data type elements indicating what type of rule data is  requested for the corresponding referenced PCC rules.
	ReqData []RequestedRuleDataType `json:"reqData"`
}

RequestedRuleData Contains rule data requested by the PCF to receive information associated with PCC rule(s).

func NewRequestedRuleData

func NewRequestedRuleData(refPccRuleIds []string, reqData []RequestedRuleDataType) *RequestedRuleData

NewRequestedRuleData instantiates a new RequestedRuleData object This constructor will assign default values to properties that have it defined, 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 NewRequestedRuleDataWithDefaults

func NewRequestedRuleDataWithDefaults() *RequestedRuleData

NewRequestedRuleDataWithDefaults instantiates a new RequestedRuleData object This 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 (*RequestedRuleData) GetRefPccRuleIds

func (o *RequestedRuleData) GetRefPccRuleIds() []string

GetRefPccRuleIds returns the RefPccRuleIds field value

func (*RequestedRuleData) GetRefPccRuleIdsOk

func (o *RequestedRuleData) GetRefPccRuleIdsOk() ([]string, bool)

GetRefPccRuleIdsOk returns a tuple with the RefPccRuleIds field value and a boolean to check if the value has been set.

func (*RequestedRuleData) GetReqData

func (o *RequestedRuleData) GetReqData() []RequestedRuleDataType

GetReqData returns the ReqData field value

func (*RequestedRuleData) GetReqDataOk

func (o *RequestedRuleData) GetReqDataOk() ([]RequestedRuleDataType, bool)

GetReqDataOk returns a tuple with the ReqData field value and a boolean to check if the value has been set.

func (RequestedRuleData) MarshalJSON

func (o RequestedRuleData) MarshalJSON() ([]byte, error)

func (*RequestedRuleData) SetRefPccRuleIds

func (o *RequestedRuleData) SetRefPccRuleIds(v []string)

SetRefPccRuleIds sets field value

func (*RequestedRuleData) SetReqData

func (o *RequestedRuleData) SetReqData(v []RequestedRuleDataType)

SetReqData sets field value

func (RequestedRuleData) ToMap

func (o RequestedRuleData) ToMap() (map[string]interface{}, error)

type RequestedRuleDataType

type RequestedRuleDataType struct {
	String *string
}

RequestedRuleDataType Possible values are: - CH_ID: Indicates that the requested rule data is the charging identifier. - MS_TIME_ZONE: Indicates that the requested access network info type is the UE's timezone. - USER_LOC_INFO: Indicates that the requested access network info type is the UE's location. - RES_RELEASE: Indicates that the requested rule data is the result of the release of resource. - SUCC_RES_ALLO: Indicates that the requested rule data is the successful resource allocation. - EPS_FALLBACK: Indicates that the requested rule data is the report of QoS flow rejection due to EPS fallback.

func (*RequestedRuleDataType) MarshalJSON

func (src *RequestedRuleDataType) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*RequestedRuleDataType) UnmarshalJSON

func (dst *RequestedRuleDataType) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type RequestedUsageData

type RequestedUsageData struct {
	// An array of usage monitoring data id references to the usage monitoring data instances for which the PCF is requesting a usage report. This attribute shall only be provided when allUmIds is not set to true.
	RefUmIds []string `json:"refUmIds,omitempty"`
	// This boolean indicates whether requested usage data applies to all usage monitoring data instances. When it's not included, it means requested usage data shall only apply to the usage monitoring data instances referenced by the refUmIds attribute.
	AllUmIds *bool `json:"allUmIds,omitempty"`
}

RequestedUsageData Contains usage data requested by the PCF requesting usage reports for the corresponding usage monitoring data instances.

func NewRequestedUsageData

func NewRequestedUsageData() *RequestedUsageData

NewRequestedUsageData instantiates a new RequestedUsageData object This constructor will assign default values to properties that have it defined, 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 NewRequestedUsageDataWithDefaults

func NewRequestedUsageDataWithDefaults() *RequestedUsageData

NewRequestedUsageDataWithDefaults instantiates a new RequestedUsageData object This 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 (*RequestedUsageData) GetAllUmIds

func (o *RequestedUsageData) GetAllUmIds() bool

GetAllUmIds returns the AllUmIds field value if set, zero value otherwise.

func (*RequestedUsageData) GetAllUmIdsOk

func (o *RequestedUsageData) GetAllUmIdsOk() (*bool, bool)

GetAllUmIdsOk returns a tuple with the AllUmIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RequestedUsageData) GetRefUmIds

func (o *RequestedUsageData) GetRefUmIds() []string

GetRefUmIds returns the RefUmIds field value if set, zero value otherwise.

func (*RequestedUsageData) GetRefUmIdsOk

func (o *RequestedUsageData) GetRefUmIdsOk() ([]string, bool)

GetRefUmIdsOk returns a tuple with the RefUmIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RequestedUsageData) HasAllUmIds

func (o *RequestedUsageData) HasAllUmIds() bool

HasAllUmIds returns a boolean if a field has been set.

func (*RequestedUsageData) HasRefUmIds

func (o *RequestedUsageData) HasRefUmIds() bool

HasRefUmIds returns a boolean if a field has been set.

func (RequestedUsageData) MarshalJSON

func (o RequestedUsageData) MarshalJSON() ([]byte, error)

func (*RequestedUsageData) SetAllUmIds

func (o *RequestedUsageData) SetAllUmIds(v bool)

SetAllUmIds gets a reference to the given bool and assigns it to the AllUmIds field.

func (*RequestedUsageData) SetRefUmIds

func (o *RequestedUsageData) SetRefUmIds(v []string)

SetRefUmIds gets a reference to the given []string and assigns it to the RefUmIds field.

func (RequestedUsageData) ToMap

func (o RequestedUsageData) ToMap() (map[string]interface{}, error)

type RouteInformation

type RouteInformation struct {
	// String identifying a IPv4 address formatted in the 'dotted decimal' notation as defined in RFC 1166.
	Ipv4Addr *string   `json:"ipv4Addr,omitempty"`
	Ipv6Addr *Ipv6Addr `json:"ipv6Addr,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	PortNumber int32 `json:"portNumber"`
}

RouteInformation At least one of the \"ipv4Addr\" attribute and the \"ipv6Addr\" attribute shall be included in the \"RouteInformation\" data type.

func NewRouteInformation

func NewRouteInformation(portNumber int32) *RouteInformation

NewRouteInformation instantiates a new RouteInformation object This constructor will assign default values to properties that have it defined, 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 NewRouteInformationWithDefaults

func NewRouteInformationWithDefaults() *RouteInformation

NewRouteInformationWithDefaults instantiates a new RouteInformation object This 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 (*RouteInformation) GetIpv4Addr

func (o *RouteInformation) GetIpv4Addr() string

GetIpv4Addr returns the Ipv4Addr field value if set, zero value otherwise.

func (*RouteInformation) GetIpv4AddrOk

func (o *RouteInformation) GetIpv4AddrOk() (*string, bool)

GetIpv4AddrOk returns a tuple with the Ipv4Addr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RouteInformation) GetIpv6Addr

func (o *RouteInformation) GetIpv6Addr() Ipv6Addr

GetIpv6Addr returns the Ipv6Addr field value if set, zero value otherwise.

func (*RouteInformation) GetIpv6AddrOk

func (o *RouteInformation) GetIpv6AddrOk() (*Ipv6Addr, bool)

GetIpv6AddrOk returns a tuple with the Ipv6Addr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RouteInformation) GetPortNumber

func (o *RouteInformation) GetPortNumber() int32

GetPortNumber returns the PortNumber field value

func (*RouteInformation) GetPortNumberOk

func (o *RouteInformation) GetPortNumberOk() (*int32, bool)

GetPortNumberOk returns a tuple with the PortNumber field value and a boolean to check if the value has been set.

func (*RouteInformation) HasIpv4Addr

func (o *RouteInformation) HasIpv4Addr() bool

HasIpv4Addr returns a boolean if a field has been set.

func (*RouteInformation) HasIpv6Addr

func (o *RouteInformation) HasIpv6Addr() bool

HasIpv6Addr returns a boolean if a field has been set.

func (RouteInformation) MarshalJSON

func (o RouteInformation) MarshalJSON() ([]byte, error)

func (*RouteInformation) SetIpv4Addr

func (o *RouteInformation) SetIpv4Addr(v string)

SetIpv4Addr gets a reference to the given string and assigns it to the Ipv4Addr field.

func (*RouteInformation) SetIpv6Addr

func (o *RouteInformation) SetIpv6Addr(v Ipv6Addr)

SetIpv6Addr gets a reference to the given Ipv6Addr and assigns it to the Ipv6Addr field.

func (*RouteInformation) SetPortNumber

func (o *RouteInformation) SetPortNumber(v int32)

SetPortNumber sets field value

func (RouteInformation) ToMap

func (o RouteInformation) ToMap() (map[string]interface{}, error)

type RouteToLocation

type RouteToLocation struct {
	Interface *interface{}
}

RouteToLocation At least one of the \"routeInfo\" attribute and the \"routeProfId\" attribute shall be included in the \"RouteToLocation\" data type.

func (*RouteToLocation) MarshalJSON

func (src *RouteToLocation) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*RouteToLocation) UnmarshalJSON

func (dst *RouteToLocation) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type RoutingAreaId

type RoutingAreaId struct {
	PlmnId PlmnId `json:"plmnId"`
	// Location Area Code
	Lac string `json:"lac"`
	// Routing Area Code
	Rac string `json:"rac"`
}

RoutingAreaId Contains a Routing Area Identification as defined in 3GPP TS 23.003, clause 4.2.

func NewRoutingAreaId

func NewRoutingAreaId(plmnId PlmnId, lac string, rac string) *RoutingAreaId

NewRoutingAreaId instantiates a new RoutingAreaId object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRoutingAreaIdWithDefaults

func NewRoutingAreaIdWithDefaults() *RoutingAreaId

NewRoutingAreaIdWithDefaults instantiates a new RoutingAreaId object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RoutingAreaId) GetLac

func (o *RoutingAreaId) GetLac() string

GetLac returns the Lac field value

func (*RoutingAreaId) GetLacOk

func (o *RoutingAreaId) GetLacOk() (*string, bool)

GetLacOk returns a tuple with the Lac field value and a boolean to check if the value has been set.

func (*RoutingAreaId) GetPlmnId

func (o *RoutingAreaId) GetPlmnId() PlmnId

GetPlmnId returns the PlmnId field value

func (*RoutingAreaId) GetPlmnIdOk

func (o *RoutingAreaId) GetPlmnIdOk() (*PlmnId, bool)

GetPlmnIdOk returns a tuple with the PlmnId field value and a boolean to check if the value has been set.

func (*RoutingAreaId) GetRac

func (o *RoutingAreaId) GetRac() string

GetRac returns the Rac field value

func (*RoutingAreaId) GetRacOk

func (o *RoutingAreaId) GetRacOk() (*string, bool)

GetRacOk returns a tuple with the Rac field value and a boolean to check if the value has been set.

func (RoutingAreaId) MarshalJSON

func (o RoutingAreaId) MarshalJSON() ([]byte, error)

func (*RoutingAreaId) SetLac

func (o *RoutingAreaId) SetLac(v string)

SetLac sets field value

func (*RoutingAreaId) SetPlmnId

func (o *RoutingAreaId) SetPlmnId(v PlmnId)

SetPlmnId sets field value

func (*RoutingAreaId) SetRac

func (o *RoutingAreaId) SetRac(v string)

SetRac sets field value

func (RoutingAreaId) ToMap

func (o RoutingAreaId) ToMap() (map[string]interface{}, error)

type RuleOperation

type RuleOperation struct {
	String *string
}

RuleOperation Possible values are - CREATE_PCC_RULE: Indicates to create a new PCC rule to reserve the resource requested by the UE. - DELETE_PCC_RULE: Indicates to delete a PCC rule corresponding to reserve the resource requested by the UE. - MODIFY_PCC_RULE_AND_ADD_PACKET_FILTERS: Indicates to modify the PCC rule by adding new packet filter(s). - MODIFY_ PCC_RULE_AND_REPLACE_PACKET_FILTERS: Indicates to modify the PCC rule by replacing the existing packet filter(s). - MODIFY_ PCC_RULE_AND_DELETE_PACKET_FILTERS: Indicates to modify the PCC rule by deleting the existing packet filter(s). - MODIFY_PCC_RULE_WITHOUT_MODIFY_PACKET_FILTERS: Indicates to modify the PCC rule by modifying the QoS of the PCC rule.

func (*RuleOperation) MarshalJSON

func (src *RuleOperation) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*RuleOperation) UnmarshalJSON

func (dst *RuleOperation) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type RuleReport

type RuleReport struct {
	// Contains the identifier of the affected PCC rule(s).
	PccRuleIds []string   `json:"pccRuleIds"`
	RuleStatus RuleStatus `json:"ruleStatus"`
	// Indicates the version of a PCC rule.
	ContVers    []int32      `json:"contVers,omitempty"`
	FailureCode *FailureCode `json:"failureCode,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	RetryAfter *int32           `json:"retryAfter,omitempty"`
	FinUnitAct *FinalUnitAction `json:"finUnitAct,omitempty"`
	// indicates the RAN or NAS release cause code information.
	RanNasRelCauses []RanNasRelCause `json:"ranNasRelCauses,omitempty"`
	// Indicates the alternative QoS parameter set that the NG-RAN can guarantee. It is included during the report of successfull resource allocation and indicates that NG-RAN used an alternative QoS profile because the requested QoS could not be allocated..
	AltQosParamId *string `json:"altQosParamId,omitempty"`
	// When present and set to true it indicates that the Alternative QoS profiles are not  supported by NG-RAN.
	AltQosNotSuppInd *bool `json:"altQosNotSuppInd,omitempty"`
}

RuleReport Reports the status of PCC.

func NewRuleReport

func NewRuleReport(pccRuleIds []string, ruleStatus RuleStatus) *RuleReport

NewRuleReport instantiates a new RuleReport object This constructor will assign default values to properties that have it defined, 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 NewRuleReportWithDefaults

func NewRuleReportWithDefaults() *RuleReport

NewRuleReportWithDefaults instantiates a new RuleReport object This 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 (*RuleReport) GetAltQosNotSuppInd

func (o *RuleReport) GetAltQosNotSuppInd() bool

GetAltQosNotSuppInd returns the AltQosNotSuppInd field value if set, zero value otherwise.

func (*RuleReport) GetAltQosNotSuppIndOk

func (o *RuleReport) GetAltQosNotSuppIndOk() (*bool, bool)

GetAltQosNotSuppIndOk returns a tuple with the AltQosNotSuppInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RuleReport) GetAltQosParamId

func (o *RuleReport) GetAltQosParamId() string

GetAltQosParamId returns the AltQosParamId field value if set, zero value otherwise.

func (*RuleReport) GetAltQosParamIdOk

func (o *RuleReport) GetAltQosParamIdOk() (*string, bool)

GetAltQosParamIdOk returns a tuple with the AltQosParamId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RuleReport) GetContVers

func (o *RuleReport) GetContVers() []int32

GetContVers returns the ContVers field value if set, zero value otherwise.

func (*RuleReport) GetContVersOk

func (o *RuleReport) GetContVersOk() ([]int32, bool)

GetContVersOk returns a tuple with the ContVers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RuleReport) GetFailureCode

func (o *RuleReport) GetFailureCode() FailureCode

GetFailureCode returns the FailureCode field value if set, zero value otherwise.

func (*RuleReport) GetFailureCodeOk

func (o *RuleReport) GetFailureCodeOk() (*FailureCode, bool)

GetFailureCodeOk returns a tuple with the FailureCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RuleReport) GetFinUnitAct

func (o *RuleReport) GetFinUnitAct() FinalUnitAction

GetFinUnitAct returns the FinUnitAct field value if set, zero value otherwise.

func (*RuleReport) GetFinUnitActOk

func (o *RuleReport) GetFinUnitActOk() (*FinalUnitAction, bool)

GetFinUnitActOk returns a tuple with the FinUnitAct field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RuleReport) GetPccRuleIds

func (o *RuleReport) GetPccRuleIds() []string

GetPccRuleIds returns the PccRuleIds field value

func (*RuleReport) GetPccRuleIdsOk

func (o *RuleReport) GetPccRuleIdsOk() ([]string, bool)

GetPccRuleIdsOk returns a tuple with the PccRuleIds field value and a boolean to check if the value has been set.

func (*RuleReport) GetRanNasRelCauses

func (o *RuleReport) GetRanNasRelCauses() []RanNasRelCause

GetRanNasRelCauses returns the RanNasRelCauses field value if set, zero value otherwise.

func (*RuleReport) GetRanNasRelCausesOk

func (o *RuleReport) GetRanNasRelCausesOk() ([]RanNasRelCause, bool)

GetRanNasRelCausesOk returns a tuple with the RanNasRelCauses field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RuleReport) GetRetryAfter

func (o *RuleReport) GetRetryAfter() int32

GetRetryAfter returns the RetryAfter field value if set, zero value otherwise.

func (*RuleReport) GetRetryAfterOk

func (o *RuleReport) GetRetryAfterOk() (*int32, bool)

GetRetryAfterOk returns a tuple with the RetryAfter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RuleReport) GetRuleStatus

func (o *RuleReport) GetRuleStatus() RuleStatus

GetRuleStatus returns the RuleStatus field value

func (*RuleReport) GetRuleStatusOk

func (o *RuleReport) GetRuleStatusOk() (*RuleStatus, bool)

GetRuleStatusOk returns a tuple with the RuleStatus field value and a boolean to check if the value has been set.

func (*RuleReport) HasAltQosNotSuppInd

func (o *RuleReport) HasAltQosNotSuppInd() bool

HasAltQosNotSuppInd returns a boolean if a field has been set.

func (*RuleReport) HasAltQosParamId

func (o *RuleReport) HasAltQosParamId() bool

HasAltQosParamId returns a boolean if a field has been set.

func (*RuleReport) HasContVers

func (o *RuleReport) HasContVers() bool

HasContVers returns a boolean if a field has been set.

func (*RuleReport) HasFailureCode

func (o *RuleReport) HasFailureCode() bool

HasFailureCode returns a boolean if a field has been set.

func (*RuleReport) HasFinUnitAct

func (o *RuleReport) HasFinUnitAct() bool

HasFinUnitAct returns a boolean if a field has been set.

func (*RuleReport) HasRanNasRelCauses

func (o *RuleReport) HasRanNasRelCauses() bool

HasRanNasRelCauses returns a boolean if a field has been set.

func (*RuleReport) HasRetryAfter

func (o *RuleReport) HasRetryAfter() bool

HasRetryAfter returns a boolean if a field has been set.

func (RuleReport) MarshalJSON

func (o RuleReport) MarshalJSON() ([]byte, error)

func (*RuleReport) SetAltQosNotSuppInd

func (o *RuleReport) SetAltQosNotSuppInd(v bool)

SetAltQosNotSuppInd gets a reference to the given bool and assigns it to the AltQosNotSuppInd field.

func (*RuleReport) SetAltQosParamId

func (o *RuleReport) SetAltQosParamId(v string)

SetAltQosParamId gets a reference to the given string and assigns it to the AltQosParamId field.

func (*RuleReport) SetContVers

func (o *RuleReport) SetContVers(v []int32)

SetContVers gets a reference to the given []int32 and assigns it to the ContVers field.

func (*RuleReport) SetFailureCode

func (o *RuleReport) SetFailureCode(v FailureCode)

SetFailureCode gets a reference to the given FailureCode and assigns it to the FailureCode field.

func (*RuleReport) SetFinUnitAct

func (o *RuleReport) SetFinUnitAct(v FinalUnitAction)

SetFinUnitAct gets a reference to the given FinalUnitAction and assigns it to the FinUnitAct field.

func (*RuleReport) SetPccRuleIds

func (o *RuleReport) SetPccRuleIds(v []string)

SetPccRuleIds sets field value

func (*RuleReport) SetRanNasRelCauses

func (o *RuleReport) SetRanNasRelCauses(v []RanNasRelCause)

SetRanNasRelCauses gets a reference to the given []RanNasRelCause and assigns it to the RanNasRelCauses field.

func (*RuleReport) SetRetryAfter

func (o *RuleReport) SetRetryAfter(v int32)

SetRetryAfter gets a reference to the given int32 and assigns it to the RetryAfter field.

func (*RuleReport) SetRuleStatus

func (o *RuleReport) SetRuleStatus(v RuleStatus)

SetRuleStatus sets field value

func (RuleReport) ToMap

func (o RuleReport) ToMap() (map[string]interface{}, error)

type RuleStatus

type RuleStatus struct {
	String *string
}

RuleStatus Possible values are - ACTIVE: Indicates that the PCC rule(s) are successfully installed (for those provisioned from PCF) or activated (for those pre-defined in SMF), or the session rule(s) are successfully installed - INACTIVE: Indicates that the PCC rule(s) are removed (for those provisioned from PCF) or inactive (for those pre-defined in SMF) or the session rule(s) are removed.

func (*RuleStatus) MarshalJSON

func (src *RuleStatus) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*RuleStatus) UnmarshalJSON

func (dst *RuleStatus) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type SMPoliciesCollectionApiService

type SMPoliciesCollectionApiService service

SMPoliciesCollectionApiService SMPoliciesCollectionApi service

func (*SMPoliciesCollectionApiService) CreateSMPolicy

CreateSMPolicy Create a new Individual SM Policy

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateSMPolicyRequest

func (*SMPoliciesCollectionApiService) CreateSMPolicyExecute

Execute executes the request

@return SmPolicyDecision

type SatelliteBackhaulCategory

type SatelliteBackhaulCategory struct {
	String *string
}

SatelliteBackhaulCategory Indicates the satellite backhaul used.

func (*SatelliteBackhaulCategory) MarshalJSON

func (src *SatelliteBackhaulCategory) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*SatelliteBackhaulCategory) UnmarshalJSON

func (dst *SatelliteBackhaulCategory) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type ServerAddressingInfo

type ServerAddressingInfo struct {
	Interface *interface{}
}

ServerAddressingInfo Contains addressing information (IP addresses and/or FQDNs) of a server.

func (*ServerAddressingInfo) MarshalJSON

func (src *ServerAddressingInfo) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*ServerAddressingInfo) UnmarshalJSON

func (dst *ServerAddressingInfo) 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 ServiceAreaId

type ServiceAreaId struct {
	PlmnId PlmnId `json:"plmnId"`
	// Location Area Code.
	Lac string `json:"lac"`
	// Service Area Code.
	Sac string `json:"sac"`
}

ServiceAreaId Contains a Service Area Identifier as defined in 3GPP TS 23.003, clause 12.5.

func NewServiceAreaId

func NewServiceAreaId(plmnId PlmnId, lac string, sac string) *ServiceAreaId

NewServiceAreaId instantiates a new ServiceAreaId object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewServiceAreaIdWithDefaults

func NewServiceAreaIdWithDefaults() *ServiceAreaId

NewServiceAreaIdWithDefaults instantiates a new ServiceAreaId object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ServiceAreaId) GetLac

func (o *ServiceAreaId) GetLac() string

GetLac returns the Lac field value

func (*ServiceAreaId) GetLacOk

func (o *ServiceAreaId) GetLacOk() (*string, bool)

GetLacOk returns a tuple with the Lac field value and a boolean to check if the value has been set.

func (*ServiceAreaId) GetPlmnId

func (o *ServiceAreaId) GetPlmnId() PlmnId

GetPlmnId returns the PlmnId field value

func (*ServiceAreaId) GetPlmnIdOk

func (o *ServiceAreaId) GetPlmnIdOk() (*PlmnId, bool)

GetPlmnIdOk returns a tuple with the PlmnId field value and a boolean to check if the value has been set.

func (*ServiceAreaId) GetSac

func (o *ServiceAreaId) GetSac() string

GetSac returns the Sac field value

func (*ServiceAreaId) GetSacOk

func (o *ServiceAreaId) GetSacOk() (*string, bool)

GetSacOk returns a tuple with the Sac field value and a boolean to check if the value has been set.

func (ServiceAreaId) MarshalJSON

func (o ServiceAreaId) MarshalJSON() ([]byte, error)

func (*ServiceAreaId) SetLac

func (o *ServiceAreaId) SetLac(v string)

SetLac sets field value

func (*ServiceAreaId) SetPlmnId

func (o *ServiceAreaId) SetPlmnId(v PlmnId)

SetPlmnId sets field value

func (*ServiceAreaId) SetSac

func (o *ServiceAreaId) SetSac(v string)

SetSac sets field value

func (ServiceAreaId) ToMap

func (o ServiceAreaId) ToMap() (map[string]interface{}, error)

type ServingNfIdentity

type ServingNfIdentity struct {
	// String uniquely identifying a NF instance. The format of the NF Instance ID shall be a  Universally Unique Identifier (UUID) version 4, as described in IETF RFC 4122.
	ServNfInstId *string      `json:"servNfInstId,omitempty"`
	Guami        *Guami       `json:"guami,omitempty"`
	AnGwAddr     *AnGwAddress `json:"anGwAddr,omitempty"`
	SgsnAddr     *SgsnAddress `json:"sgsnAddr,omitempty"`
}

ServingNfIdentity Contains the serving Network Function identity.

func NewServingNfIdentity

func NewServingNfIdentity() *ServingNfIdentity

NewServingNfIdentity instantiates a new ServingNfIdentity object This constructor will assign default values to properties that have it defined, 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 NewServingNfIdentityWithDefaults

func NewServingNfIdentityWithDefaults() *ServingNfIdentity

NewServingNfIdentityWithDefaults instantiates a new ServingNfIdentity object This 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 (*ServingNfIdentity) GetAnGwAddr

func (o *ServingNfIdentity) GetAnGwAddr() AnGwAddress

GetAnGwAddr returns the AnGwAddr field value if set, zero value otherwise.

func (*ServingNfIdentity) GetAnGwAddrOk

func (o *ServingNfIdentity) GetAnGwAddrOk() (*AnGwAddress, bool)

GetAnGwAddrOk returns a tuple with the AnGwAddr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServingNfIdentity) GetGuami

func (o *ServingNfIdentity) GetGuami() Guami

GetGuami returns the Guami field value if set, zero value otherwise.

func (*ServingNfIdentity) GetGuamiOk

func (o *ServingNfIdentity) GetGuamiOk() (*Guami, bool)

GetGuamiOk returns a tuple with the Guami field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServingNfIdentity) GetServNfInstId

func (o *ServingNfIdentity) GetServNfInstId() string

GetServNfInstId returns the ServNfInstId field value if set, zero value otherwise.

func (*ServingNfIdentity) GetServNfInstIdOk

func (o *ServingNfIdentity) GetServNfInstIdOk() (*string, bool)

GetServNfInstIdOk returns a tuple with the ServNfInstId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServingNfIdentity) GetSgsnAddr

func (o *ServingNfIdentity) GetSgsnAddr() SgsnAddress

GetSgsnAddr returns the SgsnAddr field value if set, zero value otherwise.

func (*ServingNfIdentity) GetSgsnAddrOk

func (o *ServingNfIdentity) GetSgsnAddrOk() (*SgsnAddress, bool)

GetSgsnAddrOk returns a tuple with the SgsnAddr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServingNfIdentity) HasAnGwAddr

func (o *ServingNfIdentity) HasAnGwAddr() bool

HasAnGwAddr returns a boolean if a field has been set.

func (*ServingNfIdentity) HasGuami

func (o *ServingNfIdentity) HasGuami() bool

HasGuami returns a boolean if a field has been set.

func (*ServingNfIdentity) HasServNfInstId

func (o *ServingNfIdentity) HasServNfInstId() bool

HasServNfInstId returns a boolean if a field has been set.

func (*ServingNfIdentity) HasSgsnAddr

func (o *ServingNfIdentity) HasSgsnAddr() bool

HasSgsnAddr returns a boolean if a field has been set.

func (ServingNfIdentity) MarshalJSON

func (o ServingNfIdentity) MarshalJSON() ([]byte, error)

func (*ServingNfIdentity) SetAnGwAddr

func (o *ServingNfIdentity) SetAnGwAddr(v AnGwAddress)

SetAnGwAddr gets a reference to the given AnGwAddress and assigns it to the AnGwAddr field.

func (*ServingNfIdentity) SetGuami

func (o *ServingNfIdentity) SetGuami(v Guami)

SetGuami gets a reference to the given Guami and assigns it to the Guami field.

func (*ServingNfIdentity) SetServNfInstId

func (o *ServingNfIdentity) SetServNfInstId(v string)

SetServNfInstId gets a reference to the given string and assigns it to the ServNfInstId field.

func (*ServingNfIdentity) SetSgsnAddr

func (o *ServingNfIdentity) SetSgsnAddr(v SgsnAddress)

SetSgsnAddr gets a reference to the given SgsnAddress and assigns it to the SgsnAddr field.

func (ServingNfIdentity) ToMap

func (o ServingNfIdentity) ToMap() (map[string]interface{}, error)

type SessionRule

type SessionRule struct {
	AuthSessAmbr *Ambr                 `json:"authSessAmbr,omitempty"`
	AuthDefQos   *AuthorizedDefaultQos `json:"authDefQos,omitempty"`
	// Univocally identifies the session rule within a PDU session.
	SessRuleId string `json:"sessRuleId"`
	// A reference to UsageMonitoringData policy decision type. It is the umId described in  clause 5.6.2.12.
	RefUmData NullableString `json:"refUmData,omitempty"`
	// A reference to UsageMonitoringData policy decision type to apply for Non-3GPP access. It  is the umId described in clause 5.6.2.12.
	RefUmN3gData NullableString `json:"refUmN3gData,omitempty"`
	// A reference to the condition data. It is the condId described in clause 5.6.2.9.
	RefCondData NullableString `json:"refCondData,omitempty"`
}

SessionRule Contains session level policy information.

func NewSessionRule

func NewSessionRule(sessRuleId string) *SessionRule

NewSessionRule instantiates a new SessionRule object This constructor will assign default values to properties that have it defined, 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 NewSessionRuleWithDefaults

func NewSessionRuleWithDefaults() *SessionRule

NewSessionRuleWithDefaults instantiates a new SessionRule object This 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 (*SessionRule) GetAuthDefQos

func (o *SessionRule) GetAuthDefQos() AuthorizedDefaultQos

GetAuthDefQos returns the AuthDefQos field value if set, zero value otherwise.

func (*SessionRule) GetAuthDefQosOk

func (o *SessionRule) GetAuthDefQosOk() (*AuthorizedDefaultQos, bool)

GetAuthDefQosOk returns a tuple with the AuthDefQos field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SessionRule) GetAuthSessAmbr

func (o *SessionRule) GetAuthSessAmbr() Ambr

GetAuthSessAmbr returns the AuthSessAmbr field value if set, zero value otherwise.

func (*SessionRule) GetAuthSessAmbrOk

func (o *SessionRule) GetAuthSessAmbrOk() (*Ambr, bool)

GetAuthSessAmbrOk returns a tuple with the AuthSessAmbr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SessionRule) GetRefCondData

func (o *SessionRule) GetRefCondData() string

GetRefCondData returns the RefCondData field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SessionRule) GetRefCondDataOk

func (o *SessionRule) GetRefCondDataOk() (*string, bool)

GetRefCondDataOk returns a tuple with the RefCondData 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 (*SessionRule) GetRefUmData

func (o *SessionRule) GetRefUmData() string

GetRefUmData returns the RefUmData field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SessionRule) GetRefUmDataOk

func (o *SessionRule) GetRefUmDataOk() (*string, bool)

GetRefUmDataOk returns a tuple with the RefUmData 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 (*SessionRule) GetRefUmN3gData

func (o *SessionRule) GetRefUmN3gData() string

GetRefUmN3gData returns the RefUmN3gData field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SessionRule) GetRefUmN3gDataOk

func (o *SessionRule) GetRefUmN3gDataOk() (*string, bool)

GetRefUmN3gDataOk returns a tuple with the RefUmN3gData 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 (*SessionRule) GetSessRuleId

func (o *SessionRule) GetSessRuleId() string

GetSessRuleId returns the SessRuleId field value

func (*SessionRule) GetSessRuleIdOk

func (o *SessionRule) GetSessRuleIdOk() (*string, bool)

GetSessRuleIdOk returns a tuple with the SessRuleId field value and a boolean to check if the value has been set.

func (*SessionRule) HasAuthDefQos

func (o *SessionRule) HasAuthDefQos() bool

HasAuthDefQos returns a boolean if a field has been set.

func (*SessionRule) HasAuthSessAmbr

func (o *SessionRule) HasAuthSessAmbr() bool

HasAuthSessAmbr returns a boolean if a field has been set.

func (*SessionRule) HasRefCondData

func (o *SessionRule) HasRefCondData() bool

HasRefCondData returns a boolean if a field has been set.

func (*SessionRule) HasRefUmData

func (o *SessionRule) HasRefUmData() bool

HasRefUmData returns a boolean if a field has been set.

func (*SessionRule) HasRefUmN3gData

func (o *SessionRule) HasRefUmN3gData() bool

HasRefUmN3gData returns a boolean if a field has been set.

func (SessionRule) MarshalJSON

func (o SessionRule) MarshalJSON() ([]byte, error)

func (*SessionRule) SetAuthDefQos

func (o *SessionRule) SetAuthDefQos(v AuthorizedDefaultQos)

SetAuthDefQos gets a reference to the given AuthorizedDefaultQos and assigns it to the AuthDefQos field.

func (*SessionRule) SetAuthSessAmbr

func (o *SessionRule) SetAuthSessAmbr(v Ambr)

SetAuthSessAmbr gets a reference to the given Ambr and assigns it to the AuthSessAmbr field.

func (*SessionRule) SetRefCondData

func (o *SessionRule) SetRefCondData(v string)

SetRefCondData gets a reference to the given NullableString and assigns it to the RefCondData field.

func (*SessionRule) SetRefCondDataNil

func (o *SessionRule) SetRefCondDataNil()

SetRefCondDataNil sets the value for RefCondData to be an explicit nil

func (*SessionRule) SetRefUmData

func (o *SessionRule) SetRefUmData(v string)

SetRefUmData gets a reference to the given NullableString and assigns it to the RefUmData field.

func (*SessionRule) SetRefUmDataNil

func (o *SessionRule) SetRefUmDataNil()

SetRefUmDataNil sets the value for RefUmData to be an explicit nil

func (*SessionRule) SetRefUmN3gData

func (o *SessionRule) SetRefUmN3gData(v string)

SetRefUmN3gData gets a reference to the given NullableString and assigns it to the RefUmN3gData field.

func (*SessionRule) SetRefUmN3gDataNil

func (o *SessionRule) SetRefUmN3gDataNil()

SetRefUmN3gDataNil sets the value for RefUmN3gData to be an explicit nil

func (*SessionRule) SetSessRuleId

func (o *SessionRule) SetSessRuleId(v string)

SetSessRuleId sets field value

func (SessionRule) ToMap

func (o SessionRule) ToMap() (map[string]interface{}, error)

func (*SessionRule) UnsetRefCondData

func (o *SessionRule) UnsetRefCondData()

UnsetRefCondData ensures that no value is present for RefCondData, not even an explicit nil

func (*SessionRule) UnsetRefUmData

func (o *SessionRule) UnsetRefUmData()

UnsetRefUmData ensures that no value is present for RefUmData, not even an explicit nil

func (*SessionRule) UnsetRefUmN3gData

func (o *SessionRule) UnsetRefUmN3gData()

UnsetRefUmN3gData ensures that no value is present for RefUmN3gData, not even an explicit nil

type SessionRuleFailureCode

type SessionRuleFailureCode struct {
	String *string
}

SessionRuleFailureCode Possible values are - NF_MAL: Indicates that the PCC rule could not be successfully installed (for those provisioned from the PCF) or activated (for those pre-defined in SMF) or enforced (for those already successfully installed) due to SMF/UPF malfunction. - RES_LIM: Indicates that the PCC rule could not be successfully installed (for those provisioned from PCF) or activated (for those pre-defined in SMF) or enforced (for those already successfully installed) due to a limitation of resources at the SMF/UPF. - SESSION_RESOURCE_ALLOCATION_FAILURE: Indicates the session rule could not be successfully enforced due to failure during the allocation of resources for the PDU session in the UE, RAN or AMF. - UNSUCC_QOS_VAL: indicates that the QoS validation has failed. - INCORRECT_UM: The usage monitoring data of the enforced session rule is not the same for all the provisioned session rule(s). - UE_STA_SUSP: Indicates that the UE is in suspend state. - UNKNOWN_REF_ID: Indicates that the session rule could not be successfully installed/modified because the referenced identifier to a Policy Decision Data or to a Condition Data is unknown to the SMF. - INCORRECT_COND_DATA: Indicates that the session rule could not be successfully installed/modified because the referenced Condition data are incorrect. - REF_ID_COLLISION: Indicates that the session rule could not be successfully installed/modified because the same Policy Decision is referenced by a PCC rule (e.g. the session rule and the PCC rule refer to the same Usage Monitoring decision data). - AN_GW_FAILED: Indicates that the AN-Gateway has failed and that the PCF should refrain from sending policy decisions to the SMF until it is informed that the S-GW has been recovered. This value shall not be used if the SM Policy association modification procedure is initiated for session rule removal only.

func (*SessionRuleFailureCode) MarshalJSON

func (src *SessionRuleFailureCode) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*SessionRuleFailureCode) UnmarshalJSON

func (dst *SessionRuleFailureCode) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type SessionRuleReport

type SessionRuleReport struct {
	// Contains the identifier of the affected session rule(s).
	RuleIds             []string                `json:"ruleIds"`
	RuleStatus          RuleStatus              `json:"ruleStatus"`
	SessRuleFailureCode *SessionRuleFailureCode `json:"sessRuleFailureCode,omitempty"`
	// Contains the type(s) of failed policy decision and/or condition data.
	PolicyDecFailureReports []PolicyDecisionFailureCode `json:"policyDecFailureReports,omitempty"`
}

SessionRuleReport Represents reporting of the status of a session rule.

func NewSessionRuleReport

func NewSessionRuleReport(ruleIds []string, ruleStatus RuleStatus) *SessionRuleReport

NewSessionRuleReport instantiates a new SessionRuleReport object This constructor will assign default values to properties that have it defined, 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 NewSessionRuleReportWithDefaults

func NewSessionRuleReportWithDefaults() *SessionRuleReport

NewSessionRuleReportWithDefaults instantiates a new SessionRuleReport object This 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 (*SessionRuleReport) GetPolicyDecFailureReports

func (o *SessionRuleReport) GetPolicyDecFailureReports() []PolicyDecisionFailureCode

GetPolicyDecFailureReports returns the PolicyDecFailureReports field value if set, zero value otherwise.

func (*SessionRuleReport) GetPolicyDecFailureReportsOk

func (o *SessionRuleReport) GetPolicyDecFailureReportsOk() ([]PolicyDecisionFailureCode, bool)

GetPolicyDecFailureReportsOk returns a tuple with the PolicyDecFailureReports field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SessionRuleReport) GetRuleIds

func (o *SessionRuleReport) GetRuleIds() []string

GetRuleIds returns the RuleIds field value

func (*SessionRuleReport) GetRuleIdsOk

func (o *SessionRuleReport) GetRuleIdsOk() ([]string, bool)

GetRuleIdsOk returns a tuple with the RuleIds field value and a boolean to check if the value has been set.

func (*SessionRuleReport) GetRuleStatus

func (o *SessionRuleReport) GetRuleStatus() RuleStatus

GetRuleStatus returns the RuleStatus field value

func (*SessionRuleReport) GetRuleStatusOk

func (o *SessionRuleReport) GetRuleStatusOk() (*RuleStatus, bool)

GetRuleStatusOk returns a tuple with the RuleStatus field value and a boolean to check if the value has been set.

func (*SessionRuleReport) GetSessRuleFailureCode

func (o *SessionRuleReport) GetSessRuleFailureCode() SessionRuleFailureCode

GetSessRuleFailureCode returns the SessRuleFailureCode field value if set, zero value otherwise.

func (*SessionRuleReport) GetSessRuleFailureCodeOk

func (o *SessionRuleReport) GetSessRuleFailureCodeOk() (*SessionRuleFailureCode, bool)

GetSessRuleFailureCodeOk returns a tuple with the SessRuleFailureCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SessionRuleReport) HasPolicyDecFailureReports

func (o *SessionRuleReport) HasPolicyDecFailureReports() bool

HasPolicyDecFailureReports returns a boolean if a field has been set.

func (*SessionRuleReport) HasSessRuleFailureCode

func (o *SessionRuleReport) HasSessRuleFailureCode() bool

HasSessRuleFailureCode returns a boolean if a field has been set.

func (SessionRuleReport) MarshalJSON

func (o SessionRuleReport) MarshalJSON() ([]byte, error)

func (*SessionRuleReport) SetPolicyDecFailureReports

func (o *SessionRuleReport) SetPolicyDecFailureReports(v []PolicyDecisionFailureCode)

SetPolicyDecFailureReports gets a reference to the given []PolicyDecisionFailureCode and assigns it to the PolicyDecFailureReports field.

func (*SessionRuleReport) SetRuleIds

func (o *SessionRuleReport) SetRuleIds(v []string)

SetRuleIds sets field value

func (*SessionRuleReport) SetRuleStatus

func (o *SessionRuleReport) SetRuleStatus(v RuleStatus)

SetRuleStatus sets field value

func (*SessionRuleReport) SetSessRuleFailureCode

func (o *SessionRuleReport) SetSessRuleFailureCode(v SessionRuleFailureCode)

SetSessRuleFailureCode gets a reference to the given SessionRuleFailureCode and assigns it to the SessRuleFailureCode field.

func (SessionRuleReport) ToMap

func (o SessionRuleReport) ToMap() (map[string]interface{}, error)

type SgsnAddress

type SgsnAddress struct {
	Interface *interface{}
}

SgsnAddress describes the address of the SGSN

func (*SgsnAddress) MarshalJSON

func (src *SgsnAddress) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*SgsnAddress) UnmarshalJSON

func (dst *SgsnAddress) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type SmPolicyAssociationReleaseCause

type SmPolicyAssociationReleaseCause struct {
	String *string
}

SmPolicyAssociationReleaseCause Represents the cause due to which the PCF requests the termination of the SM policy association.

func (*SmPolicyAssociationReleaseCause) MarshalJSON

func (src *SmPolicyAssociationReleaseCause) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*SmPolicyAssociationReleaseCause) UnmarshalJSON

func (dst *SmPolicyAssociationReleaseCause) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type SmPolicyContextData

type SmPolicyContextData struct {
	AccNetChId      *AccNetChId            `json:"accNetChId,omitempty"`
	ChargEntityAddr *AccNetChargingAddress `json:"chargEntityAddr,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.
	Gpsi *string `json:"gpsi,omitempty"`
	// String identifying a Supi that shall contain either an IMSI, a network specific identifier, a Global Cable Identifier (GCI) or a Global Line Identifier (GLI) as specified in clause  2.2A of 3GPP TS 23.003. It shall be formatted as follows  - for an IMSI \"imsi-<imsi>\", where <imsi> shall be formatted according to clause 2.2    of 3GPP TS 23.003 that describes an IMSI.  - for a network specific identifier \"nai-<nai>, where <nai> shall be formatted    according to clause 28.7.2 of 3GPP TS 23.003 that describes an NAI.  - for a GCI \"gci-<gci>\", where <gci> shall be formatted according to clause 28.15.2    of 3GPP TS 23.003.  - for a GLI \"gli-<gli>\", where <gli> shall be formatted according to clause 28.16.2 of    3GPP TS 23.003.To enable that the value is used as part of an URI, the string shall    only contain characters allowed according to the \"lower-with-hyphen\" naming convention    defined in 3GPP TS 29.501.
	Supi string `json:"supi"`
	// When this attribute is included and set to true, it indicates that the supi attribute contains an invalid value.This attribute shall be present if the SUPI is not available in the SMF or the SUPI is unauthenticated. When present it shall be set to true for an invalid SUPI and false (default) for a valid SUPI.
	InvalidSupi *bool    `json:"invalidSupi,omitempty"`
	InterGrpIds []string `json:"interGrpIds,omitempty"`
	// Unsigned integer identifying a PDU session, within the range 0 to 255, as specified in  clause 11.2.3.1b, bits 1 to 8, of 3GPP TS 24.007. If the PDU Session ID is allocated by the  Core Network for UEs not supporting N1 mode, reserved range 64 to 95 is used. PDU Session ID  within the reserved range is only visible in the Core Network.
	PduSessionId            int32          `json:"pduSessionId"`
	PduSessionType          PduSessionType `json:"pduSessionType"`
	Chargingcharacteristics *string        `json:"chargingcharacteristics,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"`
	DnnSelMode *DnnSelectionMode `json:"dnnSelMode,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	NotificationUri  string                `json:"notificationUri"`
	AccessType       *AccessType           `json:"accessType,omitempty"`
	RatType          *RatType              `json:"ratType,omitempty"`
	AddAccessInfo    *AdditionalAccessInfo `json:"addAccessInfo,omitempty"`
	ServingNetwork   *PlmnIdNid            `json:"servingNetwork,omitempty"`
	UserLocationInfo *UserLocation         `json:"userLocationInfo,omitempty"`
	// String with format \"time-numoffset\" optionally appended by \"daylightSavingTime\", where  - \"time-numoffset\" shall represent the time zone adjusted for daylight saving time and be    encoded as time-numoffset as defined in clause 5.6 of IETF RFC 3339;  - \"daylightSavingTime\" shall represent the adjustment that has been made and shall be    encoded as \"+1\" or \"+2\" for a +1 or +2 hours adjustment.   The example is for 8 hours behind UTC, +1 hour adjustment for Daylight Saving Time.
	UeTimeZone *string `json:"ueTimeZone,omitempty"`
	// String representing a Permanent Equipment Identifier that may contain - an IMEI or IMEISV, as  specified in clause 6.2 of 3GPP TS 23.003; a MAC address for a 5G-RG or FN-RG via  wireline  access, with an indication that this address cannot be trusted for regulatory purpose if this  address cannot be used as an Equipment Identifier of the FN-RG, as specified in clause 4.7.7  of 3GPP TS23.316. Examples are imei-012345678901234 or imeisv-0123456789012345.
	Pei *string `json:"pei,omitempty"`
	// String identifying a IPv4 address formatted in the 'dotted decimal' notation as defined in RFC 1166.
	Ipv4Address       *string     `json:"ipv4Address,omitempty"`
	Ipv6AddressPrefix *Ipv6Prefix `json:"ipv6AddressPrefix,omitempty"`
	// Indicates the IPv4 address domain
	IpDomain     *string `json:"ipDomain,omitempty"`
	SubsSessAmbr *Ambr   `json:"subsSessAmbr,omitempty"`
	// Indicates the DN-AAA authorization profile index
	AuthProfIndex *string               `json:"authProfIndex,omitempty"`
	SubsDefQos    *SubscribedDefaultQos `json:"subsDefQos,omitempty"`
	VplmnQos      *VplmnQos             `json:"vplmnQos,omitempty"`
	// Contains the number of supported packet filter for signalled QoS rules.
	NumOfPackFilter *int32 `json:"numOfPackFilter,omitempty"`
	// If it is included and set to true, the online charging is applied to the PDU session.
	Online *bool `json:"online,omitempty"`
	// If it is included and set to true, the offline charging is applied to the PDU session.
	Offline *bool `json:"offline,omitempty"`
	// If it is included and set to true, the 3GPP PS Data Off is activated by the UE.
	Var3gppPsDataOffStatus *bool `json:"3gppPsDataOffStatus,omitempty"`
	// If it is included and set to true, the reflective QoS is supported by the UE.
	RefQosIndication *bool              `json:"refQosIndication,omitempty"`
	TraceReq         NullableTraceData  `json:"traceReq,omitempty"`
	SliceInfo        Snssai             `json:"sliceInfo"`
	QosFlowUsage     *QosFlowUsage      `json:"qosFlowUsage,omitempty"`
	ServNfId         *ServingNfIdentity `json:"servNfId,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"`
	// String uniquely identifying a NF instance. The format of the NF Instance ID shall be a  Universally Unique Identifier (UUID) version 4, as described in IETF RFC 4122.
	SmfId *string `json:"smfId,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	RecoveryTime        *time.Time                 `json:"recoveryTime,omitempty"`
	MaPduInd            *MaPduIndication           `json:"maPduInd,omitempty"`
	AtsssCapab          *AtsssCapability           `json:"atsssCapab,omitempty"`
	Ipv4FrameRouteList  []string                   `json:"ipv4FrameRouteList,omitempty"`
	Ipv6FrameRouteList  []Ipv6Prefix               `json:"ipv6FrameRouteList,omitempty"`
	SatBackhaulCategory *SatelliteBackhaulCategory `json:"satBackhaulCategory,omitempty"`
	PcfUeInfo           NullablePcfUeCallbackInfo  `json:"pcfUeInfo,omitempty"`
	PvsInfo             []ServerAddressingInfo     `json:"pvsInfo,omitempty"`
	// If it is included and set to true, it indicates that the PDU session is used for  UE Onboarding.
	OnboardInd *bool       `json:"onboardInd,omitempty"`
	NwdafDatas []NwdafData `json:"nwdafDatas,omitempty"`
}

SmPolicyContextData Contains the parameters used to create an Individual SM policy resource.

func NewSmPolicyContextData

func NewSmPolicyContextData(supi string, pduSessionId int32, pduSessionType PduSessionType, dnn string, notificationUri string, sliceInfo Snssai) *SmPolicyContextData

NewSmPolicyContextData instantiates a new SmPolicyContextData object This constructor will assign default values to properties that have it defined, 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 NewSmPolicyContextDataWithDefaults

func NewSmPolicyContextDataWithDefaults() *SmPolicyContextData

NewSmPolicyContextDataWithDefaults instantiates a new SmPolicyContextData object This 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 (*SmPolicyContextData) GetAccNetChId

func (o *SmPolicyContextData) GetAccNetChId() AccNetChId

GetAccNetChId returns the AccNetChId field value if set, zero value otherwise.

func (*SmPolicyContextData) GetAccNetChIdOk

func (o *SmPolicyContextData) GetAccNetChIdOk() (*AccNetChId, bool)

GetAccNetChIdOk returns a tuple with the AccNetChId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyContextData) GetAccessType

func (o *SmPolicyContextData) GetAccessType() AccessType

GetAccessType returns the AccessType field value if set, zero value otherwise.

func (*SmPolicyContextData) GetAccessTypeOk

func (o *SmPolicyContextData) GetAccessTypeOk() (*AccessType, bool)

GetAccessTypeOk returns a tuple with the AccessType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyContextData) GetAddAccessInfo

func (o *SmPolicyContextData) GetAddAccessInfo() AdditionalAccessInfo

GetAddAccessInfo returns the AddAccessInfo field value if set, zero value otherwise.

func (*SmPolicyContextData) GetAddAccessInfoOk

func (o *SmPolicyContextData) GetAddAccessInfoOk() (*AdditionalAccessInfo, bool)

GetAddAccessInfoOk returns a tuple with the AddAccessInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyContextData) GetAtsssCapab

func (o *SmPolicyContextData) GetAtsssCapab() AtsssCapability

GetAtsssCapab returns the AtsssCapab field value if set, zero value otherwise.

func (*SmPolicyContextData) GetAtsssCapabOk

func (o *SmPolicyContextData) GetAtsssCapabOk() (*AtsssCapability, bool)

GetAtsssCapabOk returns a tuple with the AtsssCapab field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyContextData) GetAuthProfIndex

func (o *SmPolicyContextData) GetAuthProfIndex() string

GetAuthProfIndex returns the AuthProfIndex field value if set, zero value otherwise.

func (*SmPolicyContextData) GetAuthProfIndexOk

func (o *SmPolicyContextData) GetAuthProfIndexOk() (*string, bool)

GetAuthProfIndexOk returns a tuple with the AuthProfIndex field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyContextData) GetChargEntityAddr

func (o *SmPolicyContextData) GetChargEntityAddr() AccNetChargingAddress

GetChargEntityAddr returns the ChargEntityAddr field value if set, zero value otherwise.

func (*SmPolicyContextData) GetChargEntityAddrOk

func (o *SmPolicyContextData) GetChargEntityAddrOk() (*AccNetChargingAddress, bool)

GetChargEntityAddrOk returns a tuple with the ChargEntityAddr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyContextData) GetChargingcharacteristics

func (o *SmPolicyContextData) GetChargingcharacteristics() string

GetChargingcharacteristics returns the Chargingcharacteristics field value if set, zero value otherwise.

func (*SmPolicyContextData) GetChargingcharacteristicsOk

func (o *SmPolicyContextData) GetChargingcharacteristicsOk() (*string, bool)

GetChargingcharacteristicsOk returns a tuple with the Chargingcharacteristics field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyContextData) GetDnn

func (o *SmPolicyContextData) GetDnn() string

GetDnn returns the Dnn field value

func (*SmPolicyContextData) GetDnnOk

func (o *SmPolicyContextData) GetDnnOk() (*string, bool)

GetDnnOk returns a tuple with the Dnn field value and a boolean to check if the value has been set.

func (*SmPolicyContextData) GetDnnSelMode

func (o *SmPolicyContextData) GetDnnSelMode() DnnSelectionMode

GetDnnSelMode returns the DnnSelMode field value if set, zero value otherwise.

func (*SmPolicyContextData) GetDnnSelModeOk

func (o *SmPolicyContextData) GetDnnSelModeOk() (*DnnSelectionMode, bool)

GetDnnSelModeOk returns a tuple with the DnnSelMode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyContextData) GetGpsi

func (o *SmPolicyContextData) GetGpsi() string

GetGpsi returns the Gpsi field value if set, zero value otherwise.

func (*SmPolicyContextData) GetGpsiOk

func (o *SmPolicyContextData) GetGpsiOk() (*string, bool)

GetGpsiOk returns a tuple with the Gpsi field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyContextData) GetInterGrpIds

func (o *SmPolicyContextData) GetInterGrpIds() []string

GetInterGrpIds returns the InterGrpIds field value if set, zero value otherwise.

func (*SmPolicyContextData) GetInterGrpIdsOk

func (o *SmPolicyContextData) GetInterGrpIdsOk() ([]string, bool)

GetInterGrpIdsOk returns a tuple with the InterGrpIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyContextData) GetInvalidSupi

func (o *SmPolicyContextData) GetInvalidSupi() bool

GetInvalidSupi returns the InvalidSupi field value if set, zero value otherwise.

func (*SmPolicyContextData) GetInvalidSupiOk

func (o *SmPolicyContextData) GetInvalidSupiOk() (*bool, bool)

GetInvalidSupiOk returns a tuple with the InvalidSupi field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyContextData) GetIpDomain

func (o *SmPolicyContextData) GetIpDomain() string

GetIpDomain returns the IpDomain field value if set, zero value otherwise.

func (*SmPolicyContextData) GetIpDomainOk

func (o *SmPolicyContextData) 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 (*SmPolicyContextData) GetIpv4Address

func (o *SmPolicyContextData) GetIpv4Address() string

GetIpv4Address returns the Ipv4Address field value if set, zero value otherwise.

func (*SmPolicyContextData) GetIpv4AddressOk

func (o *SmPolicyContextData) GetIpv4AddressOk() (*string, bool)

GetIpv4AddressOk returns a tuple with the Ipv4Address field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyContextData) GetIpv4FrameRouteList

func (o *SmPolicyContextData) GetIpv4FrameRouteList() []string

GetIpv4FrameRouteList returns the Ipv4FrameRouteList field value if set, zero value otherwise.

func (*SmPolicyContextData) GetIpv4FrameRouteListOk

func (o *SmPolicyContextData) GetIpv4FrameRouteListOk() ([]string, bool)

GetIpv4FrameRouteListOk returns a tuple with the Ipv4FrameRouteList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyContextData) GetIpv6AddressPrefix

func (o *SmPolicyContextData) GetIpv6AddressPrefix() Ipv6Prefix

GetIpv6AddressPrefix returns the Ipv6AddressPrefix field value if set, zero value otherwise.

func (*SmPolicyContextData) GetIpv6AddressPrefixOk

func (o *SmPolicyContextData) GetIpv6AddressPrefixOk() (*Ipv6Prefix, bool)

GetIpv6AddressPrefixOk returns a tuple with the Ipv6AddressPrefix field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyContextData) GetIpv6FrameRouteList

func (o *SmPolicyContextData) GetIpv6FrameRouteList() []Ipv6Prefix

GetIpv6FrameRouteList returns the Ipv6FrameRouteList field value if set, zero value otherwise.

func (*SmPolicyContextData) GetIpv6FrameRouteListOk

func (o *SmPolicyContextData) GetIpv6FrameRouteListOk() ([]Ipv6Prefix, bool)

GetIpv6FrameRouteListOk returns a tuple with the Ipv6FrameRouteList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyContextData) GetMaPduInd

func (o *SmPolicyContextData) GetMaPduInd() MaPduIndication

GetMaPduInd returns the MaPduInd field value if set, zero value otherwise.

func (*SmPolicyContextData) GetMaPduIndOk

func (o *SmPolicyContextData) GetMaPduIndOk() (*MaPduIndication, bool)

GetMaPduIndOk returns a tuple with the MaPduInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyContextData) GetNotificationUri

func (o *SmPolicyContextData) GetNotificationUri() string

GetNotificationUri returns the NotificationUri field value

func (*SmPolicyContextData) GetNotificationUriOk

func (o *SmPolicyContextData) GetNotificationUriOk() (*string, bool)

GetNotificationUriOk returns a tuple with the NotificationUri field value and a boolean to check if the value has been set.

func (*SmPolicyContextData) GetNumOfPackFilter

func (o *SmPolicyContextData) GetNumOfPackFilter() int32

GetNumOfPackFilter returns the NumOfPackFilter field value if set, zero value otherwise.

func (*SmPolicyContextData) GetNumOfPackFilterOk

func (o *SmPolicyContextData) GetNumOfPackFilterOk() (*int32, bool)

GetNumOfPackFilterOk returns a tuple with the NumOfPackFilter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyContextData) GetNwdafDatas

func (o *SmPolicyContextData) GetNwdafDatas() []NwdafData

GetNwdafDatas returns the NwdafDatas field value if set, zero value otherwise.

func (*SmPolicyContextData) GetNwdafDatasOk

func (o *SmPolicyContextData) GetNwdafDatasOk() ([]NwdafData, bool)

GetNwdafDatasOk returns a tuple with the NwdafDatas field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyContextData) GetOffline

func (o *SmPolicyContextData) GetOffline() bool

GetOffline returns the Offline field value if set, zero value otherwise.

func (*SmPolicyContextData) GetOfflineOk

func (o *SmPolicyContextData) GetOfflineOk() (*bool, bool)

GetOfflineOk returns a tuple with the Offline field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyContextData) GetOnboardInd

func (o *SmPolicyContextData) GetOnboardInd() bool

GetOnboardInd returns the OnboardInd field value if set, zero value otherwise.

func (*SmPolicyContextData) GetOnboardIndOk

func (o *SmPolicyContextData) GetOnboardIndOk() (*bool, bool)

GetOnboardIndOk returns a tuple with the OnboardInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyContextData) GetOnline

func (o *SmPolicyContextData) GetOnline() bool

GetOnline returns the Online field value if set, zero value otherwise.

func (*SmPolicyContextData) GetOnlineOk

func (o *SmPolicyContextData) GetOnlineOk() (*bool, bool)

GetOnlineOk returns a tuple with the Online field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyContextData) GetPcfUeInfo

func (o *SmPolicyContextData) GetPcfUeInfo() PcfUeCallbackInfo

GetPcfUeInfo returns the PcfUeInfo field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SmPolicyContextData) GetPcfUeInfoOk

func (o *SmPolicyContextData) GetPcfUeInfoOk() (*PcfUeCallbackInfo, bool)

GetPcfUeInfoOk returns a tuple with the PcfUeInfo 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 (*SmPolicyContextData) GetPduSessionId

func (o *SmPolicyContextData) GetPduSessionId() int32

GetPduSessionId returns the PduSessionId field value

func (*SmPolicyContextData) GetPduSessionIdOk

func (o *SmPolicyContextData) GetPduSessionIdOk() (*int32, bool)

GetPduSessionIdOk returns a tuple with the PduSessionId field value and a boolean to check if the value has been set.

func (*SmPolicyContextData) GetPduSessionType

func (o *SmPolicyContextData) GetPduSessionType() PduSessionType

GetPduSessionType returns the PduSessionType field value

func (*SmPolicyContextData) GetPduSessionTypeOk

func (o *SmPolicyContextData) GetPduSessionTypeOk() (*PduSessionType, bool)

GetPduSessionTypeOk returns a tuple with the PduSessionType field value and a boolean to check if the value has been set.

func (*SmPolicyContextData) GetPei

func (o *SmPolicyContextData) GetPei() string

GetPei returns the Pei field value if set, zero value otherwise.

func (*SmPolicyContextData) GetPeiOk

func (o *SmPolicyContextData) GetPeiOk() (*string, bool)

GetPeiOk returns a tuple with the Pei field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyContextData) GetPvsInfo

func (o *SmPolicyContextData) GetPvsInfo() []ServerAddressingInfo

GetPvsInfo returns the PvsInfo field value if set, zero value otherwise.

func (*SmPolicyContextData) GetPvsInfoOk

func (o *SmPolicyContextData) GetPvsInfoOk() ([]ServerAddressingInfo, bool)

GetPvsInfoOk returns a tuple with the PvsInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyContextData) GetQosFlowUsage

func (o *SmPolicyContextData) GetQosFlowUsage() QosFlowUsage

GetQosFlowUsage returns the QosFlowUsage field value if set, zero value otherwise.

func (*SmPolicyContextData) GetQosFlowUsageOk

func (o *SmPolicyContextData) GetQosFlowUsageOk() (*QosFlowUsage, bool)

GetQosFlowUsageOk returns a tuple with the QosFlowUsage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyContextData) GetRatType

func (o *SmPolicyContextData) GetRatType() RatType

GetRatType returns the RatType field value if set, zero value otherwise.

func (*SmPolicyContextData) GetRatTypeOk

func (o *SmPolicyContextData) 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 (*SmPolicyContextData) GetRecoveryTime

func (o *SmPolicyContextData) GetRecoveryTime() time.Time

GetRecoveryTime returns the RecoveryTime field value if set, zero value otherwise.

func (*SmPolicyContextData) GetRecoveryTimeOk

func (o *SmPolicyContextData) GetRecoveryTimeOk() (*time.Time, bool)

GetRecoveryTimeOk returns a tuple with the RecoveryTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyContextData) GetRefQosIndication

func (o *SmPolicyContextData) GetRefQosIndication() bool

GetRefQosIndication returns the RefQosIndication field value if set, zero value otherwise.

func (*SmPolicyContextData) GetRefQosIndicationOk

func (o *SmPolicyContextData) GetRefQosIndicationOk() (*bool, bool)

GetRefQosIndicationOk returns a tuple with the RefQosIndication field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyContextData) GetSatBackhaulCategory

func (o *SmPolicyContextData) GetSatBackhaulCategory() SatelliteBackhaulCategory

GetSatBackhaulCategory returns the SatBackhaulCategory field value if set, zero value otherwise.

func (*SmPolicyContextData) GetSatBackhaulCategoryOk

func (o *SmPolicyContextData) GetSatBackhaulCategoryOk() (*SatelliteBackhaulCategory, bool)

GetSatBackhaulCategoryOk returns a tuple with the SatBackhaulCategory field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyContextData) GetServNfId

func (o *SmPolicyContextData) GetServNfId() ServingNfIdentity

GetServNfId returns the ServNfId field value if set, zero value otherwise.

func (*SmPolicyContextData) GetServNfIdOk

func (o *SmPolicyContextData) GetServNfIdOk() (*ServingNfIdentity, bool)

GetServNfIdOk returns a tuple with the ServNfId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyContextData) GetServingNetwork

func (o *SmPolicyContextData) GetServingNetwork() PlmnIdNid

GetServingNetwork returns the ServingNetwork field value if set, zero value otherwise.

func (*SmPolicyContextData) GetServingNetworkOk

func (o *SmPolicyContextData) GetServingNetworkOk() (*PlmnIdNid, bool)

GetServingNetworkOk returns a tuple with the ServingNetwork field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyContextData) GetSliceInfo

func (o *SmPolicyContextData) GetSliceInfo() Snssai

GetSliceInfo returns the SliceInfo field value

func (*SmPolicyContextData) GetSliceInfoOk

func (o *SmPolicyContextData) GetSliceInfoOk() (*Snssai, bool)

GetSliceInfoOk returns a tuple with the SliceInfo field value and a boolean to check if the value has been set.

func (*SmPolicyContextData) GetSmfId

func (o *SmPolicyContextData) GetSmfId() string

GetSmfId returns the SmfId field value if set, zero value otherwise.

func (*SmPolicyContextData) GetSmfIdOk

func (o *SmPolicyContextData) GetSmfIdOk() (*string, bool)

GetSmfIdOk returns a tuple with the SmfId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyContextData) GetSubsDefQos

func (o *SmPolicyContextData) GetSubsDefQos() SubscribedDefaultQos

GetSubsDefQos returns the SubsDefQos field value if set, zero value otherwise.

func (*SmPolicyContextData) GetSubsDefQosOk

func (o *SmPolicyContextData) GetSubsDefQosOk() (*SubscribedDefaultQos, bool)

GetSubsDefQosOk returns a tuple with the SubsDefQos field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyContextData) GetSubsSessAmbr

func (o *SmPolicyContextData) GetSubsSessAmbr() Ambr

GetSubsSessAmbr returns the SubsSessAmbr field value if set, zero value otherwise.

func (*SmPolicyContextData) GetSubsSessAmbrOk

func (o *SmPolicyContextData) GetSubsSessAmbrOk() (*Ambr, bool)

GetSubsSessAmbrOk returns a tuple with the SubsSessAmbr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyContextData) GetSupi

func (o *SmPolicyContextData) GetSupi() string

GetSupi returns the Supi field value

func (*SmPolicyContextData) GetSupiOk

func (o *SmPolicyContextData) GetSupiOk() (*string, bool)

GetSupiOk returns a tuple with the Supi field value and a boolean to check if the value has been set.

func (*SmPolicyContextData) GetSuppFeat

func (o *SmPolicyContextData) GetSuppFeat() string

GetSuppFeat returns the SuppFeat field value if set, zero value otherwise.

func (*SmPolicyContextData) GetSuppFeatOk

func (o *SmPolicyContextData) 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 (*SmPolicyContextData) GetTraceReq

func (o *SmPolicyContextData) GetTraceReq() TraceData

GetTraceReq returns the TraceReq field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SmPolicyContextData) GetTraceReqOk

func (o *SmPolicyContextData) GetTraceReqOk() (*TraceData, bool)

GetTraceReqOk returns a tuple with the TraceReq 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 (*SmPolicyContextData) GetUeTimeZone

func (o *SmPolicyContextData) GetUeTimeZone() string

GetUeTimeZone returns the UeTimeZone field value if set, zero value otherwise.

func (*SmPolicyContextData) GetUeTimeZoneOk

func (o *SmPolicyContextData) GetUeTimeZoneOk() (*string, bool)

GetUeTimeZoneOk returns a tuple with the UeTimeZone field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyContextData) GetUserLocationInfo

func (o *SmPolicyContextData) GetUserLocationInfo() UserLocation

GetUserLocationInfo returns the UserLocationInfo field value if set, zero value otherwise.

func (*SmPolicyContextData) GetUserLocationInfoOk

func (o *SmPolicyContextData) GetUserLocationInfoOk() (*UserLocation, bool)

GetUserLocationInfoOk returns a tuple with the UserLocationInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyContextData) GetVar3gppPsDataOffStatus

func (o *SmPolicyContextData) GetVar3gppPsDataOffStatus() bool

GetVar3gppPsDataOffStatus returns the Var3gppPsDataOffStatus field value if set, zero value otherwise.

func (*SmPolicyContextData) GetVar3gppPsDataOffStatusOk

func (o *SmPolicyContextData) GetVar3gppPsDataOffStatusOk() (*bool, bool)

GetVar3gppPsDataOffStatusOk returns a tuple with the Var3gppPsDataOffStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyContextData) GetVplmnQos

func (o *SmPolicyContextData) GetVplmnQos() VplmnQos

GetVplmnQos returns the VplmnQos field value if set, zero value otherwise.

func (*SmPolicyContextData) GetVplmnQosOk

func (o *SmPolicyContextData) GetVplmnQosOk() (*VplmnQos, bool)

GetVplmnQosOk returns a tuple with the VplmnQos field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyContextData) HasAccNetChId

func (o *SmPolicyContextData) HasAccNetChId() bool

HasAccNetChId returns a boolean if a field has been set.

func (*SmPolicyContextData) HasAccessType

func (o *SmPolicyContextData) HasAccessType() bool

HasAccessType returns a boolean if a field has been set.

func (*SmPolicyContextData) HasAddAccessInfo

func (o *SmPolicyContextData) HasAddAccessInfo() bool

HasAddAccessInfo returns a boolean if a field has been set.

func (*SmPolicyContextData) HasAtsssCapab

func (o *SmPolicyContextData) HasAtsssCapab() bool

HasAtsssCapab returns a boolean if a field has been set.

func (*SmPolicyContextData) HasAuthProfIndex

func (o *SmPolicyContextData) HasAuthProfIndex() bool

HasAuthProfIndex returns a boolean if a field has been set.

func (*SmPolicyContextData) HasChargEntityAddr

func (o *SmPolicyContextData) HasChargEntityAddr() bool

HasChargEntityAddr returns a boolean if a field has been set.

func (*SmPolicyContextData) HasChargingcharacteristics

func (o *SmPolicyContextData) HasChargingcharacteristics() bool

HasChargingcharacteristics returns a boolean if a field has been set.

func (*SmPolicyContextData) HasDnnSelMode

func (o *SmPolicyContextData) HasDnnSelMode() bool

HasDnnSelMode returns a boolean if a field has been set.

func (*SmPolicyContextData) HasGpsi

func (o *SmPolicyContextData) HasGpsi() bool

HasGpsi returns a boolean if a field has been set.

func (*SmPolicyContextData) HasInterGrpIds

func (o *SmPolicyContextData) HasInterGrpIds() bool

HasInterGrpIds returns a boolean if a field has been set.

func (*SmPolicyContextData) HasInvalidSupi

func (o *SmPolicyContextData) HasInvalidSupi() bool

HasInvalidSupi returns a boolean if a field has been set.

func (*SmPolicyContextData) HasIpDomain

func (o *SmPolicyContextData) HasIpDomain() bool

HasIpDomain returns a boolean if a field has been set.

func (*SmPolicyContextData) HasIpv4Address

func (o *SmPolicyContextData) HasIpv4Address() bool

HasIpv4Address returns a boolean if a field has been set.

func (*SmPolicyContextData) HasIpv4FrameRouteList

func (o *SmPolicyContextData) HasIpv4FrameRouteList() bool

HasIpv4FrameRouteList returns a boolean if a field has been set.

func (*SmPolicyContextData) HasIpv6AddressPrefix

func (o *SmPolicyContextData) HasIpv6AddressPrefix() bool

HasIpv6AddressPrefix returns a boolean if a field has been set.

func (*SmPolicyContextData) HasIpv6FrameRouteList

func (o *SmPolicyContextData) HasIpv6FrameRouteList() bool

HasIpv6FrameRouteList returns a boolean if a field has been set.

func (*SmPolicyContextData) HasMaPduInd

func (o *SmPolicyContextData) HasMaPduInd() bool

HasMaPduInd returns a boolean if a field has been set.

func (*SmPolicyContextData) HasNumOfPackFilter

func (o *SmPolicyContextData) HasNumOfPackFilter() bool

HasNumOfPackFilter returns a boolean if a field has been set.

func (*SmPolicyContextData) HasNwdafDatas

func (o *SmPolicyContextData) HasNwdafDatas() bool

HasNwdafDatas returns a boolean if a field has been set.

func (*SmPolicyContextData) HasOffline

func (o *SmPolicyContextData) HasOffline() bool

HasOffline returns a boolean if a field has been set.

func (*SmPolicyContextData) HasOnboardInd

func (o *SmPolicyContextData) HasOnboardInd() bool

HasOnboardInd returns a boolean if a field has been set.

func (*SmPolicyContextData) HasOnline

func (o *SmPolicyContextData) HasOnline() bool

HasOnline returns a boolean if a field has been set.

func (*SmPolicyContextData) HasPcfUeInfo

func (o *SmPolicyContextData) HasPcfUeInfo() bool

HasPcfUeInfo returns a boolean if a field has been set.

func (*SmPolicyContextData) HasPei

func (o *SmPolicyContextData) HasPei() bool

HasPei returns a boolean if a field has been set.

func (*SmPolicyContextData) HasPvsInfo

func (o *SmPolicyContextData) HasPvsInfo() bool

HasPvsInfo returns a boolean if a field has been set.

func (*SmPolicyContextData) HasQosFlowUsage

func (o *SmPolicyContextData) HasQosFlowUsage() bool

HasQosFlowUsage returns a boolean if a field has been set.

func (*SmPolicyContextData) HasRatType

func (o *SmPolicyContextData) HasRatType() bool

HasRatType returns a boolean if a field has been set.

func (*SmPolicyContextData) HasRecoveryTime

func (o *SmPolicyContextData) HasRecoveryTime() bool

HasRecoveryTime returns a boolean if a field has been set.

func (*SmPolicyContextData) HasRefQosIndication

func (o *SmPolicyContextData) HasRefQosIndication() bool

HasRefQosIndication returns a boolean if a field has been set.

func (*SmPolicyContextData) HasSatBackhaulCategory

func (o *SmPolicyContextData) HasSatBackhaulCategory() bool

HasSatBackhaulCategory returns a boolean if a field has been set.

func (*SmPolicyContextData) HasServNfId

func (o *SmPolicyContextData) HasServNfId() bool

HasServNfId returns a boolean if a field has been set.

func (*SmPolicyContextData) HasServingNetwork

func (o *SmPolicyContextData) HasServingNetwork() bool

HasServingNetwork returns a boolean if a field has been set.

func (*SmPolicyContextData) HasSmfId

func (o *SmPolicyContextData) HasSmfId() bool

HasSmfId returns a boolean if a field has been set.

func (*SmPolicyContextData) HasSubsDefQos

func (o *SmPolicyContextData) HasSubsDefQos() bool

HasSubsDefQos returns a boolean if a field has been set.

func (*SmPolicyContextData) HasSubsSessAmbr

func (o *SmPolicyContextData) HasSubsSessAmbr() bool

HasSubsSessAmbr returns a boolean if a field has been set.

func (*SmPolicyContextData) HasSuppFeat

func (o *SmPolicyContextData) HasSuppFeat() bool

HasSuppFeat returns a boolean if a field has been set.

func (*SmPolicyContextData) HasTraceReq

func (o *SmPolicyContextData) HasTraceReq() bool

HasTraceReq returns a boolean if a field has been set.

func (*SmPolicyContextData) HasUeTimeZone

func (o *SmPolicyContextData) HasUeTimeZone() bool

HasUeTimeZone returns a boolean if a field has been set.

func (*SmPolicyContextData) HasUserLocationInfo

func (o *SmPolicyContextData) HasUserLocationInfo() bool

HasUserLocationInfo returns a boolean if a field has been set.

func (*SmPolicyContextData) HasVar3gppPsDataOffStatus

func (o *SmPolicyContextData) HasVar3gppPsDataOffStatus() bool

HasVar3gppPsDataOffStatus returns a boolean if a field has been set.

func (*SmPolicyContextData) HasVplmnQos

func (o *SmPolicyContextData) HasVplmnQos() bool

HasVplmnQos returns a boolean if a field has been set.

func (SmPolicyContextData) MarshalJSON

func (o SmPolicyContextData) MarshalJSON() ([]byte, error)

func (*SmPolicyContextData) SetAccNetChId

func (o *SmPolicyContextData) SetAccNetChId(v AccNetChId)

SetAccNetChId gets a reference to the given AccNetChId and assigns it to the AccNetChId field.

func (*SmPolicyContextData) SetAccessType

func (o *SmPolicyContextData) SetAccessType(v AccessType)

SetAccessType gets a reference to the given AccessType and assigns it to the AccessType field.

func (*SmPolicyContextData) SetAddAccessInfo

func (o *SmPolicyContextData) SetAddAccessInfo(v AdditionalAccessInfo)

SetAddAccessInfo gets a reference to the given AdditionalAccessInfo and assigns it to the AddAccessInfo field.

func (*SmPolicyContextData) SetAtsssCapab

func (o *SmPolicyContextData) SetAtsssCapab(v AtsssCapability)

SetAtsssCapab gets a reference to the given AtsssCapability and assigns it to the AtsssCapab field.

func (*SmPolicyContextData) SetAuthProfIndex

func (o *SmPolicyContextData) SetAuthProfIndex(v string)

SetAuthProfIndex gets a reference to the given string and assigns it to the AuthProfIndex field.

func (*SmPolicyContextData) SetChargEntityAddr

func (o *SmPolicyContextData) SetChargEntityAddr(v AccNetChargingAddress)

SetChargEntityAddr gets a reference to the given AccNetChargingAddress and assigns it to the ChargEntityAddr field.

func (*SmPolicyContextData) SetChargingcharacteristics

func (o *SmPolicyContextData) SetChargingcharacteristics(v string)

SetChargingcharacteristics gets a reference to the given string and assigns it to the Chargingcharacteristics field.

func (*SmPolicyContextData) SetDnn

func (o *SmPolicyContextData) SetDnn(v string)

SetDnn sets field value

func (*SmPolicyContextData) SetDnnSelMode

func (o *SmPolicyContextData) SetDnnSelMode(v DnnSelectionMode)

SetDnnSelMode gets a reference to the given DnnSelectionMode and assigns it to the DnnSelMode field.

func (*SmPolicyContextData) SetGpsi

func (o *SmPolicyContextData) SetGpsi(v string)

SetGpsi gets a reference to the given string and assigns it to the Gpsi field.

func (*SmPolicyContextData) SetInterGrpIds

func (o *SmPolicyContextData) SetInterGrpIds(v []string)

SetInterGrpIds gets a reference to the given []string and assigns it to the InterGrpIds field.

func (*SmPolicyContextData) SetInvalidSupi

func (o *SmPolicyContextData) SetInvalidSupi(v bool)

SetInvalidSupi gets a reference to the given bool and assigns it to the InvalidSupi field.

func (*SmPolicyContextData) SetIpDomain

func (o *SmPolicyContextData) SetIpDomain(v string)

SetIpDomain gets a reference to the given string and assigns it to the IpDomain field.

func (*SmPolicyContextData) SetIpv4Address

func (o *SmPolicyContextData) SetIpv4Address(v string)

SetIpv4Address gets a reference to the given string and assigns it to the Ipv4Address field.

func (*SmPolicyContextData) SetIpv4FrameRouteList

func (o *SmPolicyContextData) SetIpv4FrameRouteList(v []string)

SetIpv4FrameRouteList gets a reference to the given []string and assigns it to the Ipv4FrameRouteList field.

func (*SmPolicyContextData) SetIpv6AddressPrefix

func (o *SmPolicyContextData) SetIpv6AddressPrefix(v Ipv6Prefix)

SetIpv6AddressPrefix gets a reference to the given Ipv6Prefix and assigns it to the Ipv6AddressPrefix field.

func (*SmPolicyContextData) SetIpv6FrameRouteList

func (o *SmPolicyContextData) SetIpv6FrameRouteList(v []Ipv6Prefix)

SetIpv6FrameRouteList gets a reference to the given []Ipv6Prefix and assigns it to the Ipv6FrameRouteList field.

func (*SmPolicyContextData) SetMaPduInd

func (o *SmPolicyContextData) SetMaPduInd(v MaPduIndication)

SetMaPduInd gets a reference to the given MaPduIndication and assigns it to the MaPduInd field.

func (*SmPolicyContextData) SetNotificationUri

func (o *SmPolicyContextData) SetNotificationUri(v string)

SetNotificationUri sets field value

func (*SmPolicyContextData) SetNumOfPackFilter

func (o *SmPolicyContextData) SetNumOfPackFilter(v int32)

SetNumOfPackFilter gets a reference to the given int32 and assigns it to the NumOfPackFilter field.

func (*SmPolicyContextData) SetNwdafDatas

func (o *SmPolicyContextData) SetNwdafDatas(v []NwdafData)

SetNwdafDatas gets a reference to the given []NwdafData and assigns it to the NwdafDatas field.

func (*SmPolicyContextData) SetOffline

func (o *SmPolicyContextData) SetOffline(v bool)

SetOffline gets a reference to the given bool and assigns it to the Offline field.

func (*SmPolicyContextData) SetOnboardInd

func (o *SmPolicyContextData) SetOnboardInd(v bool)

SetOnboardInd gets a reference to the given bool and assigns it to the OnboardInd field.

func (*SmPolicyContextData) SetOnline

func (o *SmPolicyContextData) SetOnline(v bool)

SetOnline gets a reference to the given bool and assigns it to the Online field.

func (*SmPolicyContextData) SetPcfUeInfo

func (o *SmPolicyContextData) SetPcfUeInfo(v PcfUeCallbackInfo)

SetPcfUeInfo gets a reference to the given NullablePcfUeCallbackInfo and assigns it to the PcfUeInfo field.

func (*SmPolicyContextData) SetPcfUeInfoNil

func (o *SmPolicyContextData) SetPcfUeInfoNil()

SetPcfUeInfoNil sets the value for PcfUeInfo to be an explicit nil

func (*SmPolicyContextData) SetPduSessionId

func (o *SmPolicyContextData) SetPduSessionId(v int32)

SetPduSessionId sets field value

func (*SmPolicyContextData) SetPduSessionType

func (o *SmPolicyContextData) SetPduSessionType(v PduSessionType)

SetPduSessionType sets field value

func (*SmPolicyContextData) SetPei

func (o *SmPolicyContextData) SetPei(v string)

SetPei gets a reference to the given string and assigns it to the Pei field.

func (*SmPolicyContextData) SetPvsInfo

func (o *SmPolicyContextData) SetPvsInfo(v []ServerAddressingInfo)

SetPvsInfo gets a reference to the given []ServerAddressingInfo and assigns it to the PvsInfo field.

func (*SmPolicyContextData) SetQosFlowUsage

func (o *SmPolicyContextData) SetQosFlowUsage(v QosFlowUsage)

SetQosFlowUsage gets a reference to the given QosFlowUsage and assigns it to the QosFlowUsage field.

func (*SmPolicyContextData) SetRatType

func (o *SmPolicyContextData) SetRatType(v RatType)

SetRatType gets a reference to the given RatType and assigns it to the RatType field.

func (*SmPolicyContextData) SetRecoveryTime

func (o *SmPolicyContextData) SetRecoveryTime(v time.Time)

SetRecoveryTime gets a reference to the given time.Time and assigns it to the RecoveryTime field.

func (*SmPolicyContextData) SetRefQosIndication

func (o *SmPolicyContextData) SetRefQosIndication(v bool)

SetRefQosIndication gets a reference to the given bool and assigns it to the RefQosIndication field.

func (*SmPolicyContextData) SetSatBackhaulCategory

func (o *SmPolicyContextData) SetSatBackhaulCategory(v SatelliteBackhaulCategory)

SetSatBackhaulCategory gets a reference to the given SatelliteBackhaulCategory and assigns it to the SatBackhaulCategory field.

func (*SmPolicyContextData) SetServNfId

func (o *SmPolicyContextData) SetServNfId(v ServingNfIdentity)

SetServNfId gets a reference to the given ServingNfIdentity and assigns it to the ServNfId field.

func (*SmPolicyContextData) SetServingNetwork

func (o *SmPolicyContextData) SetServingNetwork(v PlmnIdNid)

SetServingNetwork gets a reference to the given PlmnIdNid and assigns it to the ServingNetwork field.

func (*SmPolicyContextData) SetSliceInfo

func (o *SmPolicyContextData) SetSliceInfo(v Snssai)

SetSliceInfo sets field value

func (*SmPolicyContextData) SetSmfId

func (o *SmPolicyContextData) SetSmfId(v string)

SetSmfId gets a reference to the given string and assigns it to the SmfId field.

func (*SmPolicyContextData) SetSubsDefQos

func (o *SmPolicyContextData) SetSubsDefQos(v SubscribedDefaultQos)

SetSubsDefQos gets a reference to the given SubscribedDefaultQos and assigns it to the SubsDefQos field.

func (*SmPolicyContextData) SetSubsSessAmbr

func (o *SmPolicyContextData) SetSubsSessAmbr(v Ambr)

SetSubsSessAmbr gets a reference to the given Ambr and assigns it to the SubsSessAmbr field.

func (*SmPolicyContextData) SetSupi

func (o *SmPolicyContextData) SetSupi(v string)

SetSupi sets field value

func (*SmPolicyContextData) SetSuppFeat

func (o *SmPolicyContextData) SetSuppFeat(v string)

SetSuppFeat gets a reference to the given string and assigns it to the SuppFeat field.

func (*SmPolicyContextData) SetTraceReq

func (o *SmPolicyContextData) SetTraceReq(v TraceData)

SetTraceReq gets a reference to the given NullableTraceData and assigns it to the TraceReq field.

func (*SmPolicyContextData) SetTraceReqNil

func (o *SmPolicyContextData) SetTraceReqNil()

SetTraceReqNil sets the value for TraceReq to be an explicit nil

func (*SmPolicyContextData) SetUeTimeZone

func (o *SmPolicyContextData) SetUeTimeZone(v string)

SetUeTimeZone gets a reference to the given string and assigns it to the UeTimeZone field.

func (*SmPolicyContextData) SetUserLocationInfo

func (o *SmPolicyContextData) SetUserLocationInfo(v UserLocation)

SetUserLocationInfo gets a reference to the given UserLocation and assigns it to the UserLocationInfo field.

func (*SmPolicyContextData) SetVar3gppPsDataOffStatus

func (o *SmPolicyContextData) SetVar3gppPsDataOffStatus(v bool)

SetVar3gppPsDataOffStatus gets a reference to the given bool and assigns it to the Var3gppPsDataOffStatus field.

func (*SmPolicyContextData) SetVplmnQos

func (o *SmPolicyContextData) SetVplmnQos(v VplmnQos)

SetVplmnQos gets a reference to the given VplmnQos and assigns it to the VplmnQos field.

func (SmPolicyContextData) ToMap

func (o SmPolicyContextData) ToMap() (map[string]interface{}, error)

func (*SmPolicyContextData) UnsetPcfUeInfo

func (o *SmPolicyContextData) UnsetPcfUeInfo()

UnsetPcfUeInfo ensures that no value is present for PcfUeInfo, not even an explicit nil

func (*SmPolicyContextData) UnsetTraceReq

func (o *SmPolicyContextData) UnsetTraceReq()

UnsetTraceReq ensures that no value is present for TraceReq, not even an explicit nil

type SmPolicyControl

type SmPolicyControl struct {
	Context SmPolicyContextData `json:"context"`
	Policy  SmPolicyDecision    `json:"policy"`
}

SmPolicyControl Contains the parameters used to request the SM policies and the SM policies authorized by the PCF.

func NewSmPolicyControl

func NewSmPolicyControl(context SmPolicyContextData, policy SmPolicyDecision) *SmPolicyControl

NewSmPolicyControl instantiates a new SmPolicyControl object This constructor will assign default values to properties that have it defined, 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 NewSmPolicyControlWithDefaults

func NewSmPolicyControlWithDefaults() *SmPolicyControl

NewSmPolicyControlWithDefaults instantiates a new SmPolicyControl object This 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 (*SmPolicyControl) GetContext

func (o *SmPolicyControl) GetContext() SmPolicyContextData

GetContext returns the Context field value

func (*SmPolicyControl) GetContextOk

func (o *SmPolicyControl) GetContextOk() (*SmPolicyContextData, bool)

GetContextOk returns a tuple with the Context field value and a boolean to check if the value has been set.

func (*SmPolicyControl) GetPolicy

func (o *SmPolicyControl) GetPolicy() SmPolicyDecision

GetPolicy returns the Policy field value

func (*SmPolicyControl) GetPolicyOk

func (o *SmPolicyControl) GetPolicyOk() (*SmPolicyDecision, bool)

GetPolicyOk returns a tuple with the Policy field value and a boolean to check if the value has been set.

func (SmPolicyControl) MarshalJSON

func (o SmPolicyControl) MarshalJSON() ([]byte, error)

func (*SmPolicyControl) SetContext

func (o *SmPolicyControl) SetContext(v SmPolicyContextData)

SetContext sets field value

func (*SmPolicyControl) SetPolicy

func (o *SmPolicyControl) SetPolicy(v SmPolicyDecision)

SetPolicy sets field value

func (SmPolicyControl) ToMap

func (o SmPolicyControl) ToMap() (map[string]interface{}, error)

type SmPolicyDecision

type SmPolicyDecision struct {
	// A map of Sessionrules with the content being the SessionRule as described in clause 5.6.2.7. The key used in this map for each entry is the sessRuleId attribute of the corresponding SessionRule.
	SessRules *map[string]SessionRule `json:"sessRules,omitempty"`
	// A map of PCC rules with the content being the PCCRule as described in  clause 5.6.2.6. The key used in this map for each entry is the pccRuleId attribute of the corresponding PccRule.
	PccRules map[string]PccRule `json:"pccRules,omitempty"`
	// If it is included and set to true, it indicates the P-CSCF Restoration is requested.
	PcscfRestIndication *bool `json:"pcscfRestIndication,omitempty"`
	// Map of QoS data policy decisions. The key used in this map for each entry is the qosId attribute of the corresponding QosData.
	QosDecs *map[string]QosData `json:"qosDecs,omitempty"`
	// Map of Charging data policy decisions. The key used in this map for each entry is the chgId attribute of the corresponding ChargingData.
	ChgDecs      map[string]ChargingData `json:"chgDecs,omitempty"`
	ChargingInfo *ChargingInformation    `json:"chargingInfo,omitempty"`
	// Map of Traffic Control data policy decisions. The key used in this map for each entry is the tcId attribute of the corresponding TrafficControlData.
	TraffContDecs *map[string]TrafficControlData `json:"traffContDecs,omitempty"`
	// Map of Usage Monitoring data policy decisions. The key used in this map for each entry is the umId attribute of the corresponding UsageMonitoringData.
	UmDecs map[string]UsageMonitoringData `json:"umDecs,omitempty"`
	// Map of QoS characteristics for non standard 5QIs. This map uses the 5QI values as keys.
	QosChars *map[string]QosCharacteristics `json:"qosChars,omitempty"`
	// Map of QoS Monitoring data policy decisions. The key used in this map for each entry is the qmId attribute of the corresponding QosMonitoringData.
	QosMonDecs map[string]QosMonitoringData `json:"qosMonDecs,omitempty"`
	// indicating a time in seconds.
	ReflectiveQoSTimer *int32 `json:"reflectiveQoSTimer,omitempty"`
	// A map of condition data with the content being as described in clause 5.6.2.9. The key used in this map for each entry is the condId attribute of the corresponding ConditionData.
	Conds map[string]ConditionData `json:"conds,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	RevalidationTime *time.Time `json:"revalidationTime,omitempty"`
	// Indicates the offline charging is applicable to the PDU session when it is included and  set to true.
	Offline *bool `json:"offline,omitempty"`
	// Indicates the online charging is applicable to the PDU session when it is included and  set to true.
	Online *bool `json:"online,omitempty"`
	// Indicates that the online charging method shall never be used for any PCC rule activated during the lifetime of the PDU session.
	OfflineChOnly *bool `json:"offlineChOnly,omitempty"`
	// Defines the policy control request triggers subscribed by the PCF.
	PolicyCtrlReqTriggers []PolicyControlRequestTrigger `json:"policyCtrlReqTriggers,omitempty"`
	// Defines the last list of rule control data requested by the PCF.
	LastReqRuleData  []RequestedRuleData `json:"lastReqRuleData,omitempty"`
	LastReqUsageData *RequestedUsageData `json:"lastReqUsageData,omitempty"`
	// Map of PRA information. The praId attribute within the PresenceInfo data type is the key  of the map.
	PraInfos map[string]PresenceInfoRm `json:"praInfos,omitempty"`
	// Represents information that identifies which IP pool or external server is used to allocate the IP address.
	Ipv4Index *int32 `json:"ipv4Index,omitempty"`
	// Represents information that identifies which IP pool or external server is used to allocate the IP address.
	Ipv6Index    *int32                           `json:"ipv6Index,omitempty"`
	QosFlowUsage *QosFlowUsage                    `json:"qosFlowUsage,omitempty"`
	RelCause     *SmPolicyAssociationReleaseCause `json:"relCause,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"`
	TsnBridgeManCont    *BridgeManagementContainer `json:"tsnBridgeManCont,omitempty"`
	TsnPortManContDstt  *PortManagementContainer   `json:"tsnPortManContDstt,omitempty"`
	TsnPortManContNwtts []PortManagementContainer  `json:"tsnPortManContNwtts,omitempty"`
	// Indicates whether the PDU session is a redundant PDU session. If absent it means the PDU session is not a redundant PDU session.
	RedSessIndication *bool `json:"redSessIndication,omitempty"`
}

SmPolicyDecision Contains the SM policies authorized by the PCF.

func NewSmPolicyDecision

func NewSmPolicyDecision() *SmPolicyDecision

NewSmPolicyDecision instantiates a new SmPolicyDecision object This constructor will assign default values to properties that have it defined, 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 NewSmPolicyDecisionWithDefaults

func NewSmPolicyDecisionWithDefaults() *SmPolicyDecision

NewSmPolicyDecisionWithDefaults instantiates a new SmPolicyDecision object This 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 (*SmPolicyDecision) GetChargingInfo

func (o *SmPolicyDecision) GetChargingInfo() ChargingInformation

GetChargingInfo returns the ChargingInfo field value if set, zero value otherwise.

func (*SmPolicyDecision) GetChargingInfoOk

func (o *SmPolicyDecision) GetChargingInfoOk() (*ChargingInformation, bool)

GetChargingInfoOk returns a tuple with the ChargingInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyDecision) GetChgDecs

func (o *SmPolicyDecision) GetChgDecs() map[string]ChargingData

GetChgDecs returns the ChgDecs field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SmPolicyDecision) GetChgDecsOk

func (o *SmPolicyDecision) GetChgDecsOk() (*map[string]ChargingData, bool)

GetChgDecsOk returns a tuple with the ChgDecs 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 (*SmPolicyDecision) GetConds

func (o *SmPolicyDecision) GetConds() map[string]ConditionData

GetConds returns the Conds field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SmPolicyDecision) GetCondsOk

func (o *SmPolicyDecision) GetCondsOk() (*map[string]ConditionData, bool)

GetCondsOk returns a tuple with the Conds 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 (*SmPolicyDecision) GetIpv4Index

func (o *SmPolicyDecision) GetIpv4Index() int32

GetIpv4Index returns the Ipv4Index field value if set, zero value otherwise.

func (*SmPolicyDecision) GetIpv4IndexOk

func (o *SmPolicyDecision) GetIpv4IndexOk() (*int32, bool)

GetIpv4IndexOk returns a tuple with the Ipv4Index field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyDecision) GetIpv6Index

func (o *SmPolicyDecision) GetIpv6Index() int32

GetIpv6Index returns the Ipv6Index field value if set, zero value otherwise.

func (*SmPolicyDecision) GetIpv6IndexOk

func (o *SmPolicyDecision) GetIpv6IndexOk() (*int32, bool)

GetIpv6IndexOk returns a tuple with the Ipv6Index field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyDecision) GetLastReqRuleData

func (o *SmPolicyDecision) GetLastReqRuleData() []RequestedRuleData

GetLastReqRuleData returns the LastReqRuleData field value if set, zero value otherwise.

func (*SmPolicyDecision) GetLastReqRuleDataOk

func (o *SmPolicyDecision) GetLastReqRuleDataOk() ([]RequestedRuleData, bool)

GetLastReqRuleDataOk returns a tuple with the LastReqRuleData field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyDecision) GetLastReqUsageData

func (o *SmPolicyDecision) GetLastReqUsageData() RequestedUsageData

GetLastReqUsageData returns the LastReqUsageData field value if set, zero value otherwise.

func (*SmPolicyDecision) GetLastReqUsageDataOk

func (o *SmPolicyDecision) GetLastReqUsageDataOk() (*RequestedUsageData, bool)

GetLastReqUsageDataOk returns a tuple with the LastReqUsageData field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyDecision) GetOffline

func (o *SmPolicyDecision) GetOffline() bool

GetOffline returns the Offline field value if set, zero value otherwise.

func (*SmPolicyDecision) GetOfflineChOnly

func (o *SmPolicyDecision) GetOfflineChOnly() bool

GetOfflineChOnly returns the OfflineChOnly field value if set, zero value otherwise.

func (*SmPolicyDecision) GetOfflineChOnlyOk

func (o *SmPolicyDecision) GetOfflineChOnlyOk() (*bool, bool)

GetOfflineChOnlyOk returns a tuple with the OfflineChOnly field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyDecision) GetOfflineOk

func (o *SmPolicyDecision) GetOfflineOk() (*bool, bool)

GetOfflineOk returns a tuple with the Offline field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyDecision) GetOnline

func (o *SmPolicyDecision) GetOnline() bool

GetOnline returns the Online field value if set, zero value otherwise.

func (*SmPolicyDecision) GetOnlineOk

func (o *SmPolicyDecision) GetOnlineOk() (*bool, bool)

GetOnlineOk returns a tuple with the Online field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyDecision) GetPccRules

func (o *SmPolicyDecision) GetPccRules() map[string]PccRule

GetPccRules returns the PccRules field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SmPolicyDecision) GetPccRulesOk

func (o *SmPolicyDecision) GetPccRulesOk() (*map[string]PccRule, bool)

GetPccRulesOk returns a tuple with the PccRules 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 (*SmPolicyDecision) GetPcscfRestIndication

func (o *SmPolicyDecision) GetPcscfRestIndication() bool

GetPcscfRestIndication returns the PcscfRestIndication field value if set, zero value otherwise.

func (*SmPolicyDecision) GetPcscfRestIndicationOk

func (o *SmPolicyDecision) GetPcscfRestIndicationOk() (*bool, bool)

GetPcscfRestIndicationOk returns a tuple with the PcscfRestIndication field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyDecision) GetPolicyCtrlReqTriggers

func (o *SmPolicyDecision) GetPolicyCtrlReqTriggers() []PolicyControlRequestTrigger

GetPolicyCtrlReqTriggers returns the PolicyCtrlReqTriggers field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SmPolicyDecision) GetPolicyCtrlReqTriggersOk

func (o *SmPolicyDecision) GetPolicyCtrlReqTriggersOk() ([]PolicyControlRequestTrigger, bool)

GetPolicyCtrlReqTriggersOk returns a tuple with the PolicyCtrlReqTriggers 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 (*SmPolicyDecision) GetPraInfos

func (o *SmPolicyDecision) GetPraInfos() map[string]PresenceInfoRm

GetPraInfos returns the PraInfos field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SmPolicyDecision) GetPraInfosOk

func (o *SmPolicyDecision) GetPraInfosOk() (*map[string]PresenceInfoRm, bool)

GetPraInfosOk returns a tuple with the PraInfos 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 (*SmPolicyDecision) GetQosChars

func (o *SmPolicyDecision) GetQosChars() map[string]QosCharacteristics

GetQosChars returns the QosChars field value if set, zero value otherwise.

func (*SmPolicyDecision) GetQosCharsOk

func (o *SmPolicyDecision) GetQosCharsOk() (*map[string]QosCharacteristics, bool)

GetQosCharsOk returns a tuple with the QosChars field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyDecision) GetQosDecs

func (o *SmPolicyDecision) GetQosDecs() map[string]QosData

GetQosDecs returns the QosDecs field value if set, zero value otherwise.

func (*SmPolicyDecision) GetQosDecsOk

func (o *SmPolicyDecision) GetQosDecsOk() (*map[string]QosData, bool)

GetQosDecsOk returns a tuple with the QosDecs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyDecision) GetQosFlowUsage

func (o *SmPolicyDecision) GetQosFlowUsage() QosFlowUsage

GetQosFlowUsage returns the QosFlowUsage field value if set, zero value otherwise.

func (*SmPolicyDecision) GetQosFlowUsageOk

func (o *SmPolicyDecision) GetQosFlowUsageOk() (*QosFlowUsage, bool)

GetQosFlowUsageOk returns a tuple with the QosFlowUsage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyDecision) GetQosMonDecs

func (o *SmPolicyDecision) GetQosMonDecs() map[string]QosMonitoringData

GetQosMonDecs returns the QosMonDecs field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SmPolicyDecision) GetQosMonDecsOk

func (o *SmPolicyDecision) GetQosMonDecsOk() (*map[string]QosMonitoringData, bool)

GetQosMonDecsOk returns a tuple with the QosMonDecs 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 (*SmPolicyDecision) GetRedSessIndication

func (o *SmPolicyDecision) GetRedSessIndication() bool

GetRedSessIndication returns the RedSessIndication field value if set, zero value otherwise.

func (*SmPolicyDecision) GetRedSessIndicationOk

func (o *SmPolicyDecision) GetRedSessIndicationOk() (*bool, bool)

GetRedSessIndicationOk returns a tuple with the RedSessIndication field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyDecision) GetReflectiveQoSTimer

func (o *SmPolicyDecision) GetReflectiveQoSTimer() int32

GetReflectiveQoSTimer returns the ReflectiveQoSTimer field value if set, zero value otherwise.

func (*SmPolicyDecision) GetReflectiveQoSTimerOk

func (o *SmPolicyDecision) GetReflectiveQoSTimerOk() (*int32, bool)

GetReflectiveQoSTimerOk returns a tuple with the ReflectiveQoSTimer field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyDecision) GetRelCause

GetRelCause returns the RelCause field value if set, zero value otherwise.

func (*SmPolicyDecision) GetRelCauseOk

func (o *SmPolicyDecision) GetRelCauseOk() (*SmPolicyAssociationReleaseCause, bool)

GetRelCauseOk returns a tuple with the RelCause field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyDecision) GetRevalidationTime

func (o *SmPolicyDecision) GetRevalidationTime() time.Time

GetRevalidationTime returns the RevalidationTime field value if set, zero value otherwise.

func (*SmPolicyDecision) GetRevalidationTimeOk

func (o *SmPolicyDecision) GetRevalidationTimeOk() (*time.Time, bool)

GetRevalidationTimeOk returns a tuple with the RevalidationTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyDecision) GetSessRules

func (o *SmPolicyDecision) GetSessRules() map[string]SessionRule

GetSessRules returns the SessRules field value if set, zero value otherwise.

func (*SmPolicyDecision) GetSessRulesOk

func (o *SmPolicyDecision) GetSessRulesOk() (*map[string]SessionRule, bool)

GetSessRulesOk returns a tuple with the SessRules field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyDecision) GetSuppFeat

func (o *SmPolicyDecision) GetSuppFeat() string

GetSuppFeat returns the SuppFeat field value if set, zero value otherwise.

func (*SmPolicyDecision) GetSuppFeatOk

func (o *SmPolicyDecision) 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 (*SmPolicyDecision) GetTraffContDecs

func (o *SmPolicyDecision) GetTraffContDecs() map[string]TrafficControlData

GetTraffContDecs returns the TraffContDecs field value if set, zero value otherwise.

func (*SmPolicyDecision) GetTraffContDecsOk

func (o *SmPolicyDecision) GetTraffContDecsOk() (*map[string]TrafficControlData, bool)

GetTraffContDecsOk returns a tuple with the TraffContDecs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyDecision) GetTsnBridgeManCont

func (o *SmPolicyDecision) GetTsnBridgeManCont() BridgeManagementContainer

GetTsnBridgeManCont returns the TsnBridgeManCont field value if set, zero value otherwise.

func (*SmPolicyDecision) GetTsnBridgeManContOk

func (o *SmPolicyDecision) GetTsnBridgeManContOk() (*BridgeManagementContainer, bool)

GetTsnBridgeManContOk returns a tuple with the TsnBridgeManCont field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyDecision) GetTsnPortManContDstt

func (o *SmPolicyDecision) GetTsnPortManContDstt() PortManagementContainer

GetTsnPortManContDstt returns the TsnPortManContDstt field value if set, zero value otherwise.

func (*SmPolicyDecision) GetTsnPortManContDsttOk

func (o *SmPolicyDecision) GetTsnPortManContDsttOk() (*PortManagementContainer, bool)

GetTsnPortManContDsttOk returns a tuple with the TsnPortManContDstt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyDecision) GetTsnPortManContNwtts

func (o *SmPolicyDecision) GetTsnPortManContNwtts() []PortManagementContainer

GetTsnPortManContNwtts returns the TsnPortManContNwtts field value if set, zero value otherwise.

func (*SmPolicyDecision) GetTsnPortManContNwttsOk

func (o *SmPolicyDecision) GetTsnPortManContNwttsOk() ([]PortManagementContainer, bool)

GetTsnPortManContNwttsOk returns a tuple with the TsnPortManContNwtts field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyDecision) GetUmDecs

func (o *SmPolicyDecision) GetUmDecs() map[string]UsageMonitoringData

GetUmDecs returns the UmDecs field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SmPolicyDecision) GetUmDecsOk

func (o *SmPolicyDecision) GetUmDecsOk() (*map[string]UsageMonitoringData, bool)

GetUmDecsOk returns a tuple with the UmDecs 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 (*SmPolicyDecision) HasChargingInfo

func (o *SmPolicyDecision) HasChargingInfo() bool

HasChargingInfo returns a boolean if a field has been set.

func (*SmPolicyDecision) HasChgDecs

func (o *SmPolicyDecision) HasChgDecs() bool

HasChgDecs returns a boolean if a field has been set.

func (*SmPolicyDecision) HasConds

func (o *SmPolicyDecision) HasConds() bool

HasConds returns a boolean if a field has been set.

func (*SmPolicyDecision) HasIpv4Index

func (o *SmPolicyDecision) HasIpv4Index() bool

HasIpv4Index returns a boolean if a field has been set.

func (*SmPolicyDecision) HasIpv6Index

func (o *SmPolicyDecision) HasIpv6Index() bool

HasIpv6Index returns a boolean if a field has been set.

func (*SmPolicyDecision) HasLastReqRuleData

func (o *SmPolicyDecision) HasLastReqRuleData() bool

HasLastReqRuleData returns a boolean if a field has been set.

func (*SmPolicyDecision) HasLastReqUsageData

func (o *SmPolicyDecision) HasLastReqUsageData() bool

HasLastReqUsageData returns a boolean if a field has been set.

func (*SmPolicyDecision) HasOffline

func (o *SmPolicyDecision) HasOffline() bool

HasOffline returns a boolean if a field has been set.

func (*SmPolicyDecision) HasOfflineChOnly

func (o *SmPolicyDecision) HasOfflineChOnly() bool

HasOfflineChOnly returns a boolean if a field has been set.

func (*SmPolicyDecision) HasOnline

func (o *SmPolicyDecision) HasOnline() bool

HasOnline returns a boolean if a field has been set.

func (*SmPolicyDecision) HasPccRules

func (o *SmPolicyDecision) HasPccRules() bool

HasPccRules returns a boolean if a field has been set.

func (*SmPolicyDecision) HasPcscfRestIndication

func (o *SmPolicyDecision) HasPcscfRestIndication() bool

HasPcscfRestIndication returns a boolean if a field has been set.

func (*SmPolicyDecision) HasPolicyCtrlReqTriggers

func (o *SmPolicyDecision) HasPolicyCtrlReqTriggers() bool

HasPolicyCtrlReqTriggers returns a boolean if a field has been set.

func (*SmPolicyDecision) HasPraInfos

func (o *SmPolicyDecision) HasPraInfos() bool

HasPraInfos returns a boolean if a field has been set.

func (*SmPolicyDecision) HasQosChars

func (o *SmPolicyDecision) HasQosChars() bool

HasQosChars returns a boolean if a field has been set.

func (*SmPolicyDecision) HasQosDecs

func (o *SmPolicyDecision) HasQosDecs() bool

HasQosDecs returns a boolean if a field has been set.

func (*SmPolicyDecision) HasQosFlowUsage

func (o *SmPolicyDecision) HasQosFlowUsage() bool

HasQosFlowUsage returns a boolean if a field has been set.

func (*SmPolicyDecision) HasQosMonDecs

func (o *SmPolicyDecision) HasQosMonDecs() bool

HasQosMonDecs returns a boolean if a field has been set.

func (*SmPolicyDecision) HasRedSessIndication

func (o *SmPolicyDecision) HasRedSessIndication() bool

HasRedSessIndication returns a boolean if a field has been set.

func (*SmPolicyDecision) HasReflectiveQoSTimer

func (o *SmPolicyDecision) HasReflectiveQoSTimer() bool

HasReflectiveQoSTimer returns a boolean if a field has been set.

func (*SmPolicyDecision) HasRelCause

func (o *SmPolicyDecision) HasRelCause() bool

HasRelCause returns a boolean if a field has been set.

func (*SmPolicyDecision) HasRevalidationTime

func (o *SmPolicyDecision) HasRevalidationTime() bool

HasRevalidationTime returns a boolean if a field has been set.

func (*SmPolicyDecision) HasSessRules

func (o *SmPolicyDecision) HasSessRules() bool

HasSessRules returns a boolean if a field has been set.

func (*SmPolicyDecision) HasSuppFeat

func (o *SmPolicyDecision) HasSuppFeat() bool

HasSuppFeat returns a boolean if a field has been set.

func (*SmPolicyDecision) HasTraffContDecs

func (o *SmPolicyDecision) HasTraffContDecs() bool

HasTraffContDecs returns a boolean if a field has been set.

func (*SmPolicyDecision) HasTsnBridgeManCont

func (o *SmPolicyDecision) HasTsnBridgeManCont() bool

HasTsnBridgeManCont returns a boolean if a field has been set.

func (*SmPolicyDecision) HasTsnPortManContDstt

func (o *SmPolicyDecision) HasTsnPortManContDstt() bool

HasTsnPortManContDstt returns a boolean if a field has been set.

func (*SmPolicyDecision) HasTsnPortManContNwtts

func (o *SmPolicyDecision) HasTsnPortManContNwtts() bool

HasTsnPortManContNwtts returns a boolean if a field has been set.

func (*SmPolicyDecision) HasUmDecs

func (o *SmPolicyDecision) HasUmDecs() bool

HasUmDecs returns a boolean if a field has been set.

func (SmPolicyDecision) MarshalJSON

func (o SmPolicyDecision) MarshalJSON() ([]byte, error)

func (*SmPolicyDecision) SetChargingInfo

func (o *SmPolicyDecision) SetChargingInfo(v ChargingInformation)

SetChargingInfo gets a reference to the given ChargingInformation and assigns it to the ChargingInfo field.

func (*SmPolicyDecision) SetChgDecs

func (o *SmPolicyDecision) SetChgDecs(v map[string]ChargingData)

SetChgDecs gets a reference to the given map[string]ChargingData and assigns it to the ChgDecs field.

func (*SmPolicyDecision) SetConds

func (o *SmPolicyDecision) SetConds(v map[string]ConditionData)

SetConds gets a reference to the given map[string]ConditionData and assigns it to the Conds field.

func (*SmPolicyDecision) SetIpv4Index

func (o *SmPolicyDecision) SetIpv4Index(v int32)

SetIpv4Index gets a reference to the given int32 and assigns it to the Ipv4Index field.

func (*SmPolicyDecision) SetIpv6Index

func (o *SmPolicyDecision) SetIpv6Index(v int32)

SetIpv6Index gets a reference to the given int32 and assigns it to the Ipv6Index field.

func (*SmPolicyDecision) SetLastReqRuleData

func (o *SmPolicyDecision) SetLastReqRuleData(v []RequestedRuleData)

SetLastReqRuleData gets a reference to the given []RequestedRuleData and assigns it to the LastReqRuleData field.

func (*SmPolicyDecision) SetLastReqUsageData

func (o *SmPolicyDecision) SetLastReqUsageData(v RequestedUsageData)

SetLastReqUsageData gets a reference to the given RequestedUsageData and assigns it to the LastReqUsageData field.

func (*SmPolicyDecision) SetOffline

func (o *SmPolicyDecision) SetOffline(v bool)

SetOffline gets a reference to the given bool and assigns it to the Offline field.

func (*SmPolicyDecision) SetOfflineChOnly

func (o *SmPolicyDecision) SetOfflineChOnly(v bool)

SetOfflineChOnly gets a reference to the given bool and assigns it to the OfflineChOnly field.

func (*SmPolicyDecision) SetOnline

func (o *SmPolicyDecision) SetOnline(v bool)

SetOnline gets a reference to the given bool and assigns it to the Online field.

func (*SmPolicyDecision) SetPccRules

func (o *SmPolicyDecision) SetPccRules(v map[string]PccRule)

SetPccRules gets a reference to the given map[string]PccRule and assigns it to the PccRules field.

func (*SmPolicyDecision) SetPcscfRestIndication

func (o *SmPolicyDecision) SetPcscfRestIndication(v bool)

SetPcscfRestIndication gets a reference to the given bool and assigns it to the PcscfRestIndication field.

func (*SmPolicyDecision) SetPolicyCtrlReqTriggers

func (o *SmPolicyDecision) SetPolicyCtrlReqTriggers(v []PolicyControlRequestTrigger)

SetPolicyCtrlReqTriggers gets a reference to the given []PolicyControlRequestTrigger and assigns it to the PolicyCtrlReqTriggers field.

func (*SmPolicyDecision) SetPraInfos

func (o *SmPolicyDecision) SetPraInfos(v map[string]PresenceInfoRm)

SetPraInfos gets a reference to the given map[string]PresenceInfoRm and assigns it to the PraInfos field.

func (*SmPolicyDecision) SetQosChars

func (o *SmPolicyDecision) SetQosChars(v map[string]QosCharacteristics)

SetQosChars gets a reference to the given map[string]QosCharacteristics and assigns it to the QosChars field.

func (*SmPolicyDecision) SetQosDecs

func (o *SmPolicyDecision) SetQosDecs(v map[string]QosData)

SetQosDecs gets a reference to the given map[string]QosData and assigns it to the QosDecs field.

func (*SmPolicyDecision) SetQosFlowUsage

func (o *SmPolicyDecision) SetQosFlowUsage(v QosFlowUsage)

SetQosFlowUsage gets a reference to the given QosFlowUsage and assigns it to the QosFlowUsage field.

func (*SmPolicyDecision) SetQosMonDecs

func (o *SmPolicyDecision) SetQosMonDecs(v map[string]QosMonitoringData)

SetQosMonDecs gets a reference to the given map[string]QosMonitoringData and assigns it to the QosMonDecs field.

func (*SmPolicyDecision) SetRedSessIndication

func (o *SmPolicyDecision) SetRedSessIndication(v bool)

SetRedSessIndication gets a reference to the given bool and assigns it to the RedSessIndication field.

func (*SmPolicyDecision) SetReflectiveQoSTimer

func (o *SmPolicyDecision) SetReflectiveQoSTimer(v int32)

SetReflectiveQoSTimer gets a reference to the given int32 and assigns it to the ReflectiveQoSTimer field.

func (*SmPolicyDecision) SetRelCause

SetRelCause gets a reference to the given SmPolicyAssociationReleaseCause and assigns it to the RelCause field.

func (*SmPolicyDecision) SetRevalidationTime

func (o *SmPolicyDecision) SetRevalidationTime(v time.Time)

SetRevalidationTime gets a reference to the given time.Time and assigns it to the RevalidationTime field.

func (*SmPolicyDecision) SetSessRules

func (o *SmPolicyDecision) SetSessRules(v map[string]SessionRule)

SetSessRules gets a reference to the given map[string]SessionRule and assigns it to the SessRules field.

func (*SmPolicyDecision) SetSuppFeat

func (o *SmPolicyDecision) SetSuppFeat(v string)

SetSuppFeat gets a reference to the given string and assigns it to the SuppFeat field.

func (*SmPolicyDecision) SetTraffContDecs

func (o *SmPolicyDecision) SetTraffContDecs(v map[string]TrafficControlData)

SetTraffContDecs gets a reference to the given map[string]TrafficControlData and assigns it to the TraffContDecs field.

func (*SmPolicyDecision) SetTsnBridgeManCont

func (o *SmPolicyDecision) SetTsnBridgeManCont(v BridgeManagementContainer)

SetTsnBridgeManCont gets a reference to the given BridgeManagementContainer and assigns it to the TsnBridgeManCont field.

func (*SmPolicyDecision) SetTsnPortManContDstt

func (o *SmPolicyDecision) SetTsnPortManContDstt(v PortManagementContainer)

SetTsnPortManContDstt gets a reference to the given PortManagementContainer and assigns it to the TsnPortManContDstt field.

func (*SmPolicyDecision) SetTsnPortManContNwtts

func (o *SmPolicyDecision) SetTsnPortManContNwtts(v []PortManagementContainer)

SetTsnPortManContNwtts gets a reference to the given []PortManagementContainer and assigns it to the TsnPortManContNwtts field.

func (*SmPolicyDecision) SetUmDecs

func (o *SmPolicyDecision) SetUmDecs(v map[string]UsageMonitoringData)

SetUmDecs gets a reference to the given map[string]UsageMonitoringData and assigns it to the UmDecs field.

func (SmPolicyDecision) ToMap

func (o SmPolicyDecision) ToMap() (map[string]interface{}, error)

type SmPolicyDeleteData

type SmPolicyDeleteData struct {
	UserLocationInfo *UserLocation `json:"userLocationInfo,omitempty"`
	// String with format \"time-numoffset\" optionally appended by \"daylightSavingTime\", where  - \"time-numoffset\" shall represent the time zone adjusted for daylight saving time and be    encoded as time-numoffset as defined in clause 5.6 of IETF RFC 3339;  - \"daylightSavingTime\" shall represent the adjustment that has been made and shall be    encoded as \"+1\" or \"+2\" for a +1 or +2 hours adjustment.   The example is for 8 hours behind UTC, +1 hour adjustment for Daylight Saving Time.
	UeTimeZone     *string    `json:"ueTimeZone,omitempty"`
	ServingNetwork *PlmnIdNid `json:"servingNetwork,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	UserLocationInfoTime *time.Time `json:"userLocationInfoTime,omitempty"`
	// Contains the RAN and/or NAS release cause.
	RanNasRelCauses []RanNasRelCause `json:"ranNasRelCauses,omitempty"`
	// Contains the usage report
	AccuUsageReports []AccuUsageReport     `json:"accuUsageReports,omitempty"`
	PduSessRelCause  *PduSessionRelCause   `json:"pduSessRelCause,omitempty"`
	QosMonReports    []QosMonitoringReport `json:"qosMonReports,omitempty"`
}

SmPolicyDeleteData Contains the parameters to be sent to the PCF when an individual SM policy is deleted.

func NewSmPolicyDeleteData

func NewSmPolicyDeleteData() *SmPolicyDeleteData

NewSmPolicyDeleteData instantiates a new SmPolicyDeleteData object This constructor will assign default values to properties that have it defined, 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 NewSmPolicyDeleteDataWithDefaults

func NewSmPolicyDeleteDataWithDefaults() *SmPolicyDeleteData

NewSmPolicyDeleteDataWithDefaults instantiates a new SmPolicyDeleteData object This 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 (*SmPolicyDeleteData) GetAccuUsageReports

func (o *SmPolicyDeleteData) GetAccuUsageReports() []AccuUsageReport

GetAccuUsageReports returns the AccuUsageReports field value if set, zero value otherwise.

func (*SmPolicyDeleteData) GetAccuUsageReportsOk

func (o *SmPolicyDeleteData) GetAccuUsageReportsOk() ([]AccuUsageReport, bool)

GetAccuUsageReportsOk returns a tuple with the AccuUsageReports field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyDeleteData) GetPduSessRelCause

func (o *SmPolicyDeleteData) GetPduSessRelCause() PduSessionRelCause

GetPduSessRelCause returns the PduSessRelCause field value if set, zero value otherwise.

func (*SmPolicyDeleteData) GetPduSessRelCauseOk

func (o *SmPolicyDeleteData) GetPduSessRelCauseOk() (*PduSessionRelCause, bool)

GetPduSessRelCauseOk returns a tuple with the PduSessRelCause field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyDeleteData) GetQosMonReports

func (o *SmPolicyDeleteData) GetQosMonReports() []QosMonitoringReport

GetQosMonReports returns the QosMonReports field value if set, zero value otherwise.

func (*SmPolicyDeleteData) GetQosMonReportsOk

func (o *SmPolicyDeleteData) 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 (*SmPolicyDeleteData) GetRanNasRelCauses

func (o *SmPolicyDeleteData) GetRanNasRelCauses() []RanNasRelCause

GetRanNasRelCauses returns the RanNasRelCauses field value if set, zero value otherwise.

func (*SmPolicyDeleteData) GetRanNasRelCausesOk

func (o *SmPolicyDeleteData) GetRanNasRelCausesOk() ([]RanNasRelCause, bool)

GetRanNasRelCausesOk returns a tuple with the RanNasRelCauses field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyDeleteData) GetServingNetwork

func (o *SmPolicyDeleteData) GetServingNetwork() PlmnIdNid

GetServingNetwork returns the ServingNetwork field value if set, zero value otherwise.

func (*SmPolicyDeleteData) GetServingNetworkOk

func (o *SmPolicyDeleteData) GetServingNetworkOk() (*PlmnIdNid, bool)

GetServingNetworkOk returns a tuple with the ServingNetwork field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyDeleteData) GetUeTimeZone

func (o *SmPolicyDeleteData) GetUeTimeZone() string

GetUeTimeZone returns the UeTimeZone field value if set, zero value otherwise.

func (*SmPolicyDeleteData) GetUeTimeZoneOk

func (o *SmPolicyDeleteData) GetUeTimeZoneOk() (*string, bool)

GetUeTimeZoneOk returns a tuple with the UeTimeZone field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyDeleteData) GetUserLocationInfo

func (o *SmPolicyDeleteData) GetUserLocationInfo() UserLocation

GetUserLocationInfo returns the UserLocationInfo field value if set, zero value otherwise.

func (*SmPolicyDeleteData) GetUserLocationInfoOk

func (o *SmPolicyDeleteData) GetUserLocationInfoOk() (*UserLocation, bool)

GetUserLocationInfoOk returns a tuple with the UserLocationInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyDeleteData) GetUserLocationInfoTime

func (o *SmPolicyDeleteData) GetUserLocationInfoTime() time.Time

GetUserLocationInfoTime returns the UserLocationInfoTime field value if set, zero value otherwise.

func (*SmPolicyDeleteData) GetUserLocationInfoTimeOk

func (o *SmPolicyDeleteData) GetUserLocationInfoTimeOk() (*time.Time, bool)

GetUserLocationInfoTimeOk returns a tuple with the UserLocationInfoTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyDeleteData) HasAccuUsageReports

func (o *SmPolicyDeleteData) HasAccuUsageReports() bool

HasAccuUsageReports returns a boolean if a field has been set.

func (*SmPolicyDeleteData) HasPduSessRelCause

func (o *SmPolicyDeleteData) HasPduSessRelCause() bool

HasPduSessRelCause returns a boolean if a field has been set.

func (*SmPolicyDeleteData) HasQosMonReports

func (o *SmPolicyDeleteData) HasQosMonReports() bool

HasQosMonReports returns a boolean if a field has been set.

func (*SmPolicyDeleteData) HasRanNasRelCauses

func (o *SmPolicyDeleteData) HasRanNasRelCauses() bool

HasRanNasRelCauses returns a boolean if a field has been set.

func (*SmPolicyDeleteData) HasServingNetwork

func (o *SmPolicyDeleteData) HasServingNetwork() bool

HasServingNetwork returns a boolean if a field has been set.

func (*SmPolicyDeleteData) HasUeTimeZone

func (o *SmPolicyDeleteData) HasUeTimeZone() bool

HasUeTimeZone returns a boolean if a field has been set.

func (*SmPolicyDeleteData) HasUserLocationInfo

func (o *SmPolicyDeleteData) HasUserLocationInfo() bool

HasUserLocationInfo returns a boolean if a field has been set.

func (*SmPolicyDeleteData) HasUserLocationInfoTime

func (o *SmPolicyDeleteData) HasUserLocationInfoTime() bool

HasUserLocationInfoTime returns a boolean if a field has been set.

func (SmPolicyDeleteData) MarshalJSON

func (o SmPolicyDeleteData) MarshalJSON() ([]byte, error)

func (*SmPolicyDeleteData) SetAccuUsageReports

func (o *SmPolicyDeleteData) SetAccuUsageReports(v []AccuUsageReport)

SetAccuUsageReports gets a reference to the given []AccuUsageReport and assigns it to the AccuUsageReports field.

func (*SmPolicyDeleteData) SetPduSessRelCause

func (o *SmPolicyDeleteData) SetPduSessRelCause(v PduSessionRelCause)

SetPduSessRelCause gets a reference to the given PduSessionRelCause and assigns it to the PduSessRelCause field.

func (*SmPolicyDeleteData) SetQosMonReports

func (o *SmPolicyDeleteData) SetQosMonReports(v []QosMonitoringReport)

SetQosMonReports gets a reference to the given []QosMonitoringReport and assigns it to the QosMonReports field.

func (*SmPolicyDeleteData) SetRanNasRelCauses

func (o *SmPolicyDeleteData) SetRanNasRelCauses(v []RanNasRelCause)

SetRanNasRelCauses gets a reference to the given []RanNasRelCause and assigns it to the RanNasRelCauses field.

func (*SmPolicyDeleteData) SetServingNetwork

func (o *SmPolicyDeleteData) SetServingNetwork(v PlmnIdNid)

SetServingNetwork gets a reference to the given PlmnIdNid and assigns it to the ServingNetwork field.

func (*SmPolicyDeleteData) SetUeTimeZone

func (o *SmPolicyDeleteData) SetUeTimeZone(v string)

SetUeTimeZone gets a reference to the given string and assigns it to the UeTimeZone field.

func (*SmPolicyDeleteData) SetUserLocationInfo

func (o *SmPolicyDeleteData) SetUserLocationInfo(v UserLocation)

SetUserLocationInfo gets a reference to the given UserLocation and assigns it to the UserLocationInfo field.

func (*SmPolicyDeleteData) SetUserLocationInfoTime

func (o *SmPolicyDeleteData) SetUserLocationInfoTime(v time.Time)

SetUserLocationInfoTime gets a reference to the given time.Time and assigns it to the UserLocationInfoTime field.

func (SmPolicyDeleteData) ToMap

func (o SmPolicyDeleteData) ToMap() (map[string]interface{}, error)

type SmPolicyNotification

type SmPolicyNotification struct {
	// String providing an URI formatted according to RFC 3986.
	ResourceUri      *string           `json:"resourceUri,omitempty"`
	SmPolicyDecision *SmPolicyDecision `json:"smPolicyDecision,omitempty"`
}

SmPolicyNotification Represents a notification on the update of the SM policies.

func NewSmPolicyNotification

func NewSmPolicyNotification() *SmPolicyNotification

NewSmPolicyNotification instantiates a new SmPolicyNotification object This constructor will assign default values to properties that have it defined, 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 NewSmPolicyNotificationWithDefaults

func NewSmPolicyNotificationWithDefaults() *SmPolicyNotification

NewSmPolicyNotificationWithDefaults instantiates a new SmPolicyNotification object This 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 (*SmPolicyNotification) GetResourceUri

func (o *SmPolicyNotification) GetResourceUri() string

GetResourceUri returns the ResourceUri field value if set, zero value otherwise.

func (*SmPolicyNotification) GetResourceUriOk

func (o *SmPolicyNotification) GetResourceUriOk() (*string, bool)

GetResourceUriOk returns a tuple with the ResourceUri field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyNotification) GetSmPolicyDecision

func (o *SmPolicyNotification) GetSmPolicyDecision() SmPolicyDecision

GetSmPolicyDecision returns the SmPolicyDecision field value if set, zero value otherwise.

func (*SmPolicyNotification) GetSmPolicyDecisionOk

func (o *SmPolicyNotification) GetSmPolicyDecisionOk() (*SmPolicyDecision, bool)

GetSmPolicyDecisionOk returns a tuple with the SmPolicyDecision field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyNotification) HasResourceUri

func (o *SmPolicyNotification) HasResourceUri() bool

HasResourceUri returns a boolean if a field has been set.

func (*SmPolicyNotification) HasSmPolicyDecision

func (o *SmPolicyNotification) HasSmPolicyDecision() bool

HasSmPolicyDecision returns a boolean if a field has been set.

func (SmPolicyNotification) MarshalJSON

func (o SmPolicyNotification) MarshalJSON() ([]byte, error)

func (*SmPolicyNotification) SetResourceUri

func (o *SmPolicyNotification) SetResourceUri(v string)

SetResourceUri gets a reference to the given string and assigns it to the ResourceUri field.

func (*SmPolicyNotification) SetSmPolicyDecision

func (o *SmPolicyNotification) SetSmPolicyDecision(v SmPolicyDecision)

SetSmPolicyDecision gets a reference to the given SmPolicyDecision and assigns it to the SmPolicyDecision field.

func (SmPolicyNotification) ToMap

func (o SmPolicyNotification) ToMap() (map[string]interface{}, error)

type SmPolicyUpdateContextData

type SmPolicyUpdateContextData struct {
	// The policy control reqeust trigges which are met.
	RepPolicyCtrlReqTriggers []PolicyControlRequestTrigger `json:"repPolicyCtrlReqTriggers,omitempty"`
	// Indicates the access network charging identifier for the PCC rule(s) or whole PDU  session.
	AccNetChIds      []AccNetChId          `json:"accNetChIds,omitempty"`
	AccessType       *AccessType           `json:"accessType,omitempty"`
	RatType          *RatType              `json:"ratType,omitempty"`
	AddAccessInfo    *AdditionalAccessInfo `json:"addAccessInfo,omitempty"`
	RelAccessInfo    *AdditionalAccessInfo `json:"relAccessInfo,omitempty"`
	ServingNetwork   *PlmnIdNid            `json:"servingNetwork,omitempty"`
	UserLocationInfo *UserLocation         `json:"userLocationInfo,omitempty"`
	// String with format \"time-numoffset\" optionally appended by \"daylightSavingTime\", where  - \"time-numoffset\" shall represent the time zone adjusted for daylight saving time and be    encoded as time-numoffset as defined in clause 5.6 of IETF RFC 3339;  - \"daylightSavingTime\" shall represent the adjustment that has been made and shall be    encoded as \"+1\" or \"+2\" for a +1 or +2 hours adjustment.   The example is for 8 hours behind UTC, +1 hour adjustment for Daylight Saving Time.
	UeTimeZone *string `json:"ueTimeZone,omitempty"`
	// String identifying a IPv4 address formatted in the 'dotted decimal' notation as defined in RFC 1166.
	RelIpv4Address *string `json:"relIpv4Address,omitempty"`
	// String identifying a IPv4 address formatted in the 'dotted decimal' notation as defined in RFC 1166.
	Ipv4Address *string `json:"ipv4Address,omitempty"`
	// Indicates the IPv4 address domain
	IpDomain               *string     `json:"ipDomain,omitempty"`
	Ipv6AddressPrefix      *Ipv6Prefix `json:"ipv6AddressPrefix,omitempty"`
	RelIpv6AddressPrefix   *Ipv6Prefix `json:"relIpv6AddressPrefix,omitempty"`
	AddIpv6AddrPrefixes    *Ipv6Prefix `json:"addIpv6AddrPrefixes,omitempty"`
	AddRelIpv6AddrPrefixes *Ipv6Prefix `json:"addRelIpv6AddrPrefixes,omitempty"`
	// String identifying a MAC address formatted in the hexadecimal notation according to clause 1.1 and clause 2.1 of RFC 7042.
	RelUeMac *string `json:"relUeMac,omitempty"`
	// String identifying a MAC address formatted in the hexadecimal notation according to clause 1.1 and clause 2.1 of RFC 7042.
	UeMac        *string `json:"ueMac,omitempty"`
	SubsSessAmbr *Ambr   `json:"subsSessAmbr,omitempty"`
	// Indicates the DN-AAA authorization profile index
	AuthProfIndex *string               `json:"authProfIndex,omitempty"`
	SubsDefQos    *SubscribedDefaultQos `json:"subsDefQos,omitempty"`
	VplmnQos      *VplmnQos             `json:"vplmnQos,omitempty"`
	// If it is included and set to true, indicates that the QoS constraints in the VPLMN are  not applicable.
	VplmnQosNotApp *bool `json:"vplmnQosNotApp,omitempty"`
	// Contains the number of supported packet filter for signalled QoS rules.
	NumOfPackFilter *int32 `json:"numOfPackFilter,omitempty"`
	// Contains the usage report
	AccuUsageReports []AccuUsageReport `json:"accuUsageReports,omitempty"`
	// If it is included and set to true, the 3GPP PS Data Off is activated by the UE.
	Var3gppPsDataOffStatus *bool `json:"3gppPsDataOffStatus,omitempty"`
	// Report the start/stop of the application traffic and detected SDF descriptions  if applicable.
	AppDetectionInfos []AppDetectionInfo `json:"appDetectionInfos,omitempty"`
	// Used to report the PCC rule failure.
	RuleReports []RuleReport `json:"ruleReports,omitempty"`
	// Used to report the session rule failure.
	SessRuleReports []SessionRuleReport `json:"sessRuleReports,omitempty"`
	// QoS Notification Control information.
	QncReports    []QosNotificationControlInfo `json:"qncReports,omitempty"`
	QosMonReports []QosMonitoringReport        `json:"qosMonReports,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	UserLocationInfoTime *time.Time `json:"userLocationInfoTime,omitempty"`
	// Reports the changes of presence reporting area. The praId attribute within the PresenceInfo data type is the key of the map.
	RepPraInfos  *map[string]PresenceInfo    `json:"repPraInfos,omitempty"`
	UeInitResReq *UeInitiatedResourceRequest `json:"ueInitResReq,omitempty"`
	// If it is included and set to true, the reflective QoS is supported by the UE. If it is included and set to false, the reflective QoS is revoked by the UE.
	RefQosIndication    *bool                      `json:"refQosIndication,omitempty"`
	QosFlowUsage        *QosFlowUsage              `json:"qosFlowUsage,omitempty"`
	CreditManageStatus  *CreditManagementStatus    `json:"creditManageStatus,omitempty"`
	ServNfId            *ServingNfIdentity         `json:"servNfId,omitempty"`
	TraceReq            NullableTraceData          `json:"traceReq,omitempty"`
	MaPduInd            *MaPduIndication           `json:"maPduInd,omitempty"`
	AtsssCapab          *AtsssCapability           `json:"atsssCapab,omitempty"`
	TsnBridgeInfo       *TsnBridgeInfo             `json:"tsnBridgeInfo,omitempty"`
	TsnBridgeManCont    *BridgeManagementContainer `json:"tsnBridgeManCont,omitempty"`
	TsnPortManContDstt  *PortManagementContainer   `json:"tsnPortManContDstt,omitempty"`
	TsnPortManContNwtts []PortManagementContainer  `json:"tsnPortManContNwtts,omitempty"`
	MulAddrInfos        []IpMulticastAddressInfo   `json:"mulAddrInfos,omitempty"`
	// Contains the type(s) of failed policy decision and/or condition data.
	PolicyDecFailureReports []PolicyDecisionFailureCode `json:"policyDecFailureReports,omitempty"`
	// Indicates the invalid parameters for the reported type(s) of the failed policy decision  and/or condition data.
	InvalidPolicyDecs  []InvalidParam         `json:"invalidPolicyDecs,omitempty"`
	TrafficDescriptors []DddTrafficDescriptor `json:"trafficDescriptors,omitempty"`
	// Contains the identifier of the PCC rule which is used for traffic detection of event.
	PccRuleId           *string                    `json:"pccRuleId,omitempty"`
	TypesOfNotif        []DlDataDeliveryStatus     `json:"typesOfNotif,omitempty"`
	InterGrpIds         []string                   `json:"interGrpIds,omitempty"`
	SatBackhaulCategory *SatelliteBackhaulCategory `json:"satBackhaulCategory,omitempty"`
	PcfUeInfo           NullablePcfUeCallbackInfo  `json:"pcfUeInfo,omitempty"`
	NwdafDatas          []NwdafData                `json:"nwdafDatas,omitempty"`
	// When it is included and set to true, it indicates that the AN-Gateway has failed and that the PCF should refrain from sending policy decisions to the SMF until it is informed that the AN-Gateway has been recovered.
	AnGwStatus *bool `json:"anGwStatus,omitempty"`
}

SmPolicyUpdateContextData Contains the policy control request trigger(s) that were met and the corresponding new value(s) or the error report of the policy enforcement.

func NewSmPolicyUpdateContextData

func NewSmPolicyUpdateContextData() *SmPolicyUpdateContextData

NewSmPolicyUpdateContextData instantiates a new SmPolicyUpdateContextData object This constructor will assign default values to properties that have it defined, 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 NewSmPolicyUpdateContextDataWithDefaults

func NewSmPolicyUpdateContextDataWithDefaults() *SmPolicyUpdateContextData

NewSmPolicyUpdateContextDataWithDefaults instantiates a new SmPolicyUpdateContextData object This 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 (*SmPolicyUpdateContextData) GetAccNetChIds

func (o *SmPolicyUpdateContextData) GetAccNetChIds() []AccNetChId

GetAccNetChIds returns the AccNetChIds field value if set, zero value otherwise.

func (*SmPolicyUpdateContextData) GetAccNetChIdsOk

func (o *SmPolicyUpdateContextData) GetAccNetChIdsOk() ([]AccNetChId, bool)

GetAccNetChIdsOk returns a tuple with the AccNetChIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyUpdateContextData) GetAccessType

func (o *SmPolicyUpdateContextData) GetAccessType() AccessType

GetAccessType returns the AccessType field value if set, zero value otherwise.

func (*SmPolicyUpdateContextData) GetAccessTypeOk

func (o *SmPolicyUpdateContextData) GetAccessTypeOk() (*AccessType, bool)

GetAccessTypeOk returns a tuple with the AccessType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyUpdateContextData) GetAccuUsageReports

func (o *SmPolicyUpdateContextData) GetAccuUsageReports() []AccuUsageReport

GetAccuUsageReports returns the AccuUsageReports field value if set, zero value otherwise.

func (*SmPolicyUpdateContextData) GetAccuUsageReportsOk

func (o *SmPolicyUpdateContextData) GetAccuUsageReportsOk() ([]AccuUsageReport, bool)

GetAccuUsageReportsOk returns a tuple with the AccuUsageReports field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyUpdateContextData) GetAddAccessInfo

func (o *SmPolicyUpdateContextData) GetAddAccessInfo() AdditionalAccessInfo

GetAddAccessInfo returns the AddAccessInfo field value if set, zero value otherwise.

func (*SmPolicyUpdateContextData) GetAddAccessInfoOk

func (o *SmPolicyUpdateContextData) GetAddAccessInfoOk() (*AdditionalAccessInfo, bool)

GetAddAccessInfoOk returns a tuple with the AddAccessInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyUpdateContextData) GetAddIpv6AddrPrefixes

func (o *SmPolicyUpdateContextData) GetAddIpv6AddrPrefixes() Ipv6Prefix

GetAddIpv6AddrPrefixes returns the AddIpv6AddrPrefixes field value if set, zero value otherwise.

func (*SmPolicyUpdateContextData) GetAddIpv6AddrPrefixesOk

func (o *SmPolicyUpdateContextData) GetAddIpv6AddrPrefixesOk() (*Ipv6Prefix, bool)

GetAddIpv6AddrPrefixesOk returns a tuple with the AddIpv6AddrPrefixes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyUpdateContextData) GetAddRelIpv6AddrPrefixes

func (o *SmPolicyUpdateContextData) GetAddRelIpv6AddrPrefixes() Ipv6Prefix

GetAddRelIpv6AddrPrefixes returns the AddRelIpv6AddrPrefixes field value if set, zero value otherwise.

func (*SmPolicyUpdateContextData) GetAddRelIpv6AddrPrefixesOk

func (o *SmPolicyUpdateContextData) GetAddRelIpv6AddrPrefixesOk() (*Ipv6Prefix, bool)

GetAddRelIpv6AddrPrefixesOk returns a tuple with the AddRelIpv6AddrPrefixes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyUpdateContextData) GetAnGwStatus

func (o *SmPolicyUpdateContextData) GetAnGwStatus() bool

GetAnGwStatus returns the AnGwStatus field value if set, zero value otherwise.

func (*SmPolicyUpdateContextData) GetAnGwStatusOk

func (o *SmPolicyUpdateContextData) GetAnGwStatusOk() (*bool, bool)

GetAnGwStatusOk returns a tuple with the AnGwStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyUpdateContextData) GetAppDetectionInfos

func (o *SmPolicyUpdateContextData) GetAppDetectionInfos() []AppDetectionInfo

GetAppDetectionInfos returns the AppDetectionInfos field value if set, zero value otherwise.

func (*SmPolicyUpdateContextData) GetAppDetectionInfosOk

func (o *SmPolicyUpdateContextData) GetAppDetectionInfosOk() ([]AppDetectionInfo, bool)

GetAppDetectionInfosOk returns a tuple with the AppDetectionInfos field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyUpdateContextData) GetAtsssCapab

func (o *SmPolicyUpdateContextData) GetAtsssCapab() AtsssCapability

GetAtsssCapab returns the AtsssCapab field value if set, zero value otherwise.

func (*SmPolicyUpdateContextData) GetAtsssCapabOk

func (o *SmPolicyUpdateContextData) GetAtsssCapabOk() (*AtsssCapability, bool)

GetAtsssCapabOk returns a tuple with the AtsssCapab field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyUpdateContextData) GetAuthProfIndex

func (o *SmPolicyUpdateContextData) GetAuthProfIndex() string

GetAuthProfIndex returns the AuthProfIndex field value if set, zero value otherwise.

func (*SmPolicyUpdateContextData) GetAuthProfIndexOk

func (o *SmPolicyUpdateContextData) GetAuthProfIndexOk() (*string, bool)

GetAuthProfIndexOk returns a tuple with the AuthProfIndex field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyUpdateContextData) GetCreditManageStatus

func (o *SmPolicyUpdateContextData) GetCreditManageStatus() CreditManagementStatus

GetCreditManageStatus returns the CreditManageStatus field value if set, zero value otherwise.

func (*SmPolicyUpdateContextData) GetCreditManageStatusOk

func (o *SmPolicyUpdateContextData) GetCreditManageStatusOk() (*CreditManagementStatus, bool)

GetCreditManageStatusOk returns a tuple with the CreditManageStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyUpdateContextData) GetInterGrpIds

func (o *SmPolicyUpdateContextData) GetInterGrpIds() []string

GetInterGrpIds returns the InterGrpIds field value if set, zero value otherwise.

func (*SmPolicyUpdateContextData) GetInterGrpIdsOk

func (o *SmPolicyUpdateContextData) GetInterGrpIdsOk() ([]string, bool)

GetInterGrpIdsOk returns a tuple with the InterGrpIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyUpdateContextData) GetInvalidPolicyDecs

func (o *SmPolicyUpdateContextData) GetInvalidPolicyDecs() []InvalidParam

GetInvalidPolicyDecs returns the InvalidPolicyDecs field value if set, zero value otherwise.

func (*SmPolicyUpdateContextData) GetInvalidPolicyDecsOk

func (o *SmPolicyUpdateContextData) GetInvalidPolicyDecsOk() ([]InvalidParam, bool)

GetInvalidPolicyDecsOk returns a tuple with the InvalidPolicyDecs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyUpdateContextData) GetIpDomain

func (o *SmPolicyUpdateContextData) GetIpDomain() string

GetIpDomain returns the IpDomain field value if set, zero value otherwise.

func (*SmPolicyUpdateContextData) GetIpDomainOk

func (o *SmPolicyUpdateContextData) 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 (*SmPolicyUpdateContextData) GetIpv4Address

func (o *SmPolicyUpdateContextData) GetIpv4Address() string

GetIpv4Address returns the Ipv4Address field value if set, zero value otherwise.

func (*SmPolicyUpdateContextData) GetIpv4AddressOk

func (o *SmPolicyUpdateContextData) GetIpv4AddressOk() (*string, bool)

GetIpv4AddressOk returns a tuple with the Ipv4Address field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyUpdateContextData) GetIpv6AddressPrefix

func (o *SmPolicyUpdateContextData) GetIpv6AddressPrefix() Ipv6Prefix

GetIpv6AddressPrefix returns the Ipv6AddressPrefix field value if set, zero value otherwise.

func (*SmPolicyUpdateContextData) GetIpv6AddressPrefixOk

func (o *SmPolicyUpdateContextData) GetIpv6AddressPrefixOk() (*Ipv6Prefix, bool)

GetIpv6AddressPrefixOk returns a tuple with the Ipv6AddressPrefix field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyUpdateContextData) GetMaPduInd

func (o *SmPolicyUpdateContextData) GetMaPduInd() MaPduIndication

GetMaPduInd returns the MaPduInd field value if set, zero value otherwise.

func (*SmPolicyUpdateContextData) GetMaPduIndOk

func (o *SmPolicyUpdateContextData) GetMaPduIndOk() (*MaPduIndication, bool)

GetMaPduIndOk returns a tuple with the MaPduInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyUpdateContextData) GetMulAddrInfos

func (o *SmPolicyUpdateContextData) GetMulAddrInfos() []IpMulticastAddressInfo

GetMulAddrInfos returns the MulAddrInfos field value if set, zero value otherwise.

func (*SmPolicyUpdateContextData) GetMulAddrInfosOk

func (o *SmPolicyUpdateContextData) GetMulAddrInfosOk() ([]IpMulticastAddressInfo, bool)

GetMulAddrInfosOk returns a tuple with the MulAddrInfos field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyUpdateContextData) GetNumOfPackFilter

func (o *SmPolicyUpdateContextData) GetNumOfPackFilter() int32

GetNumOfPackFilter returns the NumOfPackFilter field value if set, zero value otherwise.

func (*SmPolicyUpdateContextData) GetNumOfPackFilterOk

func (o *SmPolicyUpdateContextData) GetNumOfPackFilterOk() (*int32, bool)

GetNumOfPackFilterOk returns a tuple with the NumOfPackFilter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyUpdateContextData) GetNwdafDatas

func (o *SmPolicyUpdateContextData) GetNwdafDatas() []NwdafData

GetNwdafDatas returns the NwdafDatas field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SmPolicyUpdateContextData) GetNwdafDatasOk

func (o *SmPolicyUpdateContextData) GetNwdafDatasOk() ([]NwdafData, bool)

GetNwdafDatasOk returns a tuple with the NwdafDatas 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 (*SmPolicyUpdateContextData) GetPccRuleId

func (o *SmPolicyUpdateContextData) GetPccRuleId() string

GetPccRuleId returns the PccRuleId field value if set, zero value otherwise.

func (*SmPolicyUpdateContextData) GetPccRuleIdOk

func (o *SmPolicyUpdateContextData) GetPccRuleIdOk() (*string, bool)

GetPccRuleIdOk returns a tuple with the PccRuleId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyUpdateContextData) GetPcfUeInfo

func (o *SmPolicyUpdateContextData) GetPcfUeInfo() PcfUeCallbackInfo

GetPcfUeInfo returns the PcfUeInfo field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SmPolicyUpdateContextData) GetPcfUeInfoOk

func (o *SmPolicyUpdateContextData) GetPcfUeInfoOk() (*PcfUeCallbackInfo, bool)

GetPcfUeInfoOk returns a tuple with the PcfUeInfo 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 (*SmPolicyUpdateContextData) GetPolicyDecFailureReports

func (o *SmPolicyUpdateContextData) GetPolicyDecFailureReports() []PolicyDecisionFailureCode

GetPolicyDecFailureReports returns the PolicyDecFailureReports field value if set, zero value otherwise.

func (*SmPolicyUpdateContextData) GetPolicyDecFailureReportsOk

func (o *SmPolicyUpdateContextData) GetPolicyDecFailureReportsOk() ([]PolicyDecisionFailureCode, bool)

GetPolicyDecFailureReportsOk returns a tuple with the PolicyDecFailureReports field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyUpdateContextData) GetQncReports

GetQncReports returns the QncReports field value if set, zero value otherwise.

func (*SmPolicyUpdateContextData) GetQncReportsOk

func (o *SmPolicyUpdateContextData) GetQncReportsOk() ([]QosNotificationControlInfo, bool)

GetQncReportsOk returns a tuple with the QncReports field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyUpdateContextData) GetQosFlowUsage

func (o *SmPolicyUpdateContextData) GetQosFlowUsage() QosFlowUsage

GetQosFlowUsage returns the QosFlowUsage field value if set, zero value otherwise.

func (*SmPolicyUpdateContextData) GetQosFlowUsageOk

func (o *SmPolicyUpdateContextData) GetQosFlowUsageOk() (*QosFlowUsage, bool)

GetQosFlowUsageOk returns a tuple with the QosFlowUsage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyUpdateContextData) GetQosMonReports

func (o *SmPolicyUpdateContextData) GetQosMonReports() []QosMonitoringReport

GetQosMonReports returns the QosMonReports field value if set, zero value otherwise.

func (*SmPolicyUpdateContextData) GetQosMonReportsOk

func (o *SmPolicyUpdateContextData) 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 (*SmPolicyUpdateContextData) GetRatType

func (o *SmPolicyUpdateContextData) GetRatType() RatType

GetRatType returns the RatType field value if set, zero value otherwise.

func (*SmPolicyUpdateContextData) GetRatTypeOk

func (o *SmPolicyUpdateContextData) 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 (*SmPolicyUpdateContextData) GetRefQosIndication

func (o *SmPolicyUpdateContextData) GetRefQosIndication() bool

GetRefQosIndication returns the RefQosIndication field value if set, zero value otherwise.

func (*SmPolicyUpdateContextData) GetRefQosIndicationOk

func (o *SmPolicyUpdateContextData) GetRefQosIndicationOk() (*bool, bool)

GetRefQosIndicationOk returns a tuple with the RefQosIndication field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyUpdateContextData) GetRelAccessInfo

func (o *SmPolicyUpdateContextData) GetRelAccessInfo() AdditionalAccessInfo

GetRelAccessInfo returns the RelAccessInfo field value if set, zero value otherwise.

func (*SmPolicyUpdateContextData) GetRelAccessInfoOk

func (o *SmPolicyUpdateContextData) GetRelAccessInfoOk() (*AdditionalAccessInfo, bool)

GetRelAccessInfoOk returns a tuple with the RelAccessInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyUpdateContextData) GetRelIpv4Address

func (o *SmPolicyUpdateContextData) GetRelIpv4Address() string

GetRelIpv4Address returns the RelIpv4Address field value if set, zero value otherwise.

func (*SmPolicyUpdateContextData) GetRelIpv4AddressOk

func (o *SmPolicyUpdateContextData) GetRelIpv4AddressOk() (*string, bool)

GetRelIpv4AddressOk returns a tuple with the RelIpv4Address field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyUpdateContextData) GetRelIpv6AddressPrefix

func (o *SmPolicyUpdateContextData) GetRelIpv6AddressPrefix() Ipv6Prefix

GetRelIpv6AddressPrefix returns the RelIpv6AddressPrefix field value if set, zero value otherwise.

func (*SmPolicyUpdateContextData) GetRelIpv6AddressPrefixOk

func (o *SmPolicyUpdateContextData) GetRelIpv6AddressPrefixOk() (*Ipv6Prefix, bool)

GetRelIpv6AddressPrefixOk returns a tuple with the RelIpv6AddressPrefix field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyUpdateContextData) GetRelUeMac

func (o *SmPolicyUpdateContextData) GetRelUeMac() string

GetRelUeMac returns the RelUeMac field value if set, zero value otherwise.

func (*SmPolicyUpdateContextData) GetRelUeMacOk

func (o *SmPolicyUpdateContextData) GetRelUeMacOk() (*string, bool)

GetRelUeMacOk returns a tuple with the RelUeMac field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyUpdateContextData) GetRepPolicyCtrlReqTriggers

func (o *SmPolicyUpdateContextData) GetRepPolicyCtrlReqTriggers() []PolicyControlRequestTrigger

GetRepPolicyCtrlReqTriggers returns the RepPolicyCtrlReqTriggers field value if set, zero value otherwise.

func (*SmPolicyUpdateContextData) GetRepPolicyCtrlReqTriggersOk

func (o *SmPolicyUpdateContextData) GetRepPolicyCtrlReqTriggersOk() ([]PolicyControlRequestTrigger, bool)

GetRepPolicyCtrlReqTriggersOk returns a tuple with the RepPolicyCtrlReqTriggers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyUpdateContextData) GetRepPraInfos

func (o *SmPolicyUpdateContextData) GetRepPraInfos() map[string]PresenceInfo

GetRepPraInfos returns the RepPraInfos field value if set, zero value otherwise.

func (*SmPolicyUpdateContextData) GetRepPraInfosOk

func (o *SmPolicyUpdateContextData) GetRepPraInfosOk() (*map[string]PresenceInfo, bool)

GetRepPraInfosOk returns a tuple with the RepPraInfos field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyUpdateContextData) GetRuleReports

func (o *SmPolicyUpdateContextData) GetRuleReports() []RuleReport

GetRuleReports returns the RuleReports field value if set, zero value otherwise.

func (*SmPolicyUpdateContextData) GetRuleReportsOk

func (o *SmPolicyUpdateContextData) GetRuleReportsOk() ([]RuleReport, bool)

GetRuleReportsOk returns a tuple with the RuleReports field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyUpdateContextData) GetSatBackhaulCategory

func (o *SmPolicyUpdateContextData) GetSatBackhaulCategory() SatelliteBackhaulCategory

GetSatBackhaulCategory returns the SatBackhaulCategory field value if set, zero value otherwise.

func (*SmPolicyUpdateContextData) GetSatBackhaulCategoryOk

func (o *SmPolicyUpdateContextData) GetSatBackhaulCategoryOk() (*SatelliteBackhaulCategory, bool)

GetSatBackhaulCategoryOk returns a tuple with the SatBackhaulCategory field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyUpdateContextData) GetServNfId

GetServNfId returns the ServNfId field value if set, zero value otherwise.

func (*SmPolicyUpdateContextData) GetServNfIdOk

func (o *SmPolicyUpdateContextData) GetServNfIdOk() (*ServingNfIdentity, bool)

GetServNfIdOk returns a tuple with the ServNfId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyUpdateContextData) GetServingNetwork

func (o *SmPolicyUpdateContextData) GetServingNetwork() PlmnIdNid

GetServingNetwork returns the ServingNetwork field value if set, zero value otherwise.

func (*SmPolicyUpdateContextData) GetServingNetworkOk

func (o *SmPolicyUpdateContextData) GetServingNetworkOk() (*PlmnIdNid, bool)

GetServingNetworkOk returns a tuple with the ServingNetwork field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyUpdateContextData) GetSessRuleReports

func (o *SmPolicyUpdateContextData) GetSessRuleReports() []SessionRuleReport

GetSessRuleReports returns the SessRuleReports field value if set, zero value otherwise.

func (*SmPolicyUpdateContextData) GetSessRuleReportsOk

func (o *SmPolicyUpdateContextData) GetSessRuleReportsOk() ([]SessionRuleReport, bool)

GetSessRuleReportsOk returns a tuple with the SessRuleReports field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyUpdateContextData) GetSubsDefQos

GetSubsDefQos returns the SubsDefQos field value if set, zero value otherwise.

func (*SmPolicyUpdateContextData) GetSubsDefQosOk

func (o *SmPolicyUpdateContextData) GetSubsDefQosOk() (*SubscribedDefaultQos, bool)

GetSubsDefQosOk returns a tuple with the SubsDefQos field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyUpdateContextData) GetSubsSessAmbr

func (o *SmPolicyUpdateContextData) GetSubsSessAmbr() Ambr

GetSubsSessAmbr returns the SubsSessAmbr field value if set, zero value otherwise.

func (*SmPolicyUpdateContextData) GetSubsSessAmbrOk

func (o *SmPolicyUpdateContextData) GetSubsSessAmbrOk() (*Ambr, bool)

GetSubsSessAmbrOk returns a tuple with the SubsSessAmbr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyUpdateContextData) GetTraceReq

func (o *SmPolicyUpdateContextData) GetTraceReq() TraceData

GetTraceReq returns the TraceReq field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SmPolicyUpdateContextData) GetTraceReqOk

func (o *SmPolicyUpdateContextData) GetTraceReqOk() (*TraceData, bool)

GetTraceReqOk returns a tuple with the TraceReq 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 (*SmPolicyUpdateContextData) GetTrafficDescriptors

func (o *SmPolicyUpdateContextData) GetTrafficDescriptors() []DddTrafficDescriptor

GetTrafficDescriptors returns the TrafficDescriptors field value if set, zero value otherwise.

func (*SmPolicyUpdateContextData) GetTrafficDescriptorsOk

func (o *SmPolicyUpdateContextData) GetTrafficDescriptorsOk() ([]DddTrafficDescriptor, bool)

GetTrafficDescriptorsOk returns a tuple with the TrafficDescriptors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyUpdateContextData) GetTsnBridgeInfo

func (o *SmPolicyUpdateContextData) GetTsnBridgeInfo() TsnBridgeInfo

GetTsnBridgeInfo returns the TsnBridgeInfo field value if set, zero value otherwise.

func (*SmPolicyUpdateContextData) GetTsnBridgeInfoOk

func (o *SmPolicyUpdateContextData) GetTsnBridgeInfoOk() (*TsnBridgeInfo, bool)

GetTsnBridgeInfoOk returns a tuple with the TsnBridgeInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyUpdateContextData) GetTsnBridgeManCont

func (o *SmPolicyUpdateContextData) GetTsnBridgeManCont() BridgeManagementContainer

GetTsnBridgeManCont returns the TsnBridgeManCont field value if set, zero value otherwise.

func (*SmPolicyUpdateContextData) GetTsnBridgeManContOk

func (o *SmPolicyUpdateContextData) GetTsnBridgeManContOk() (*BridgeManagementContainer, bool)

GetTsnBridgeManContOk returns a tuple with the TsnBridgeManCont field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyUpdateContextData) GetTsnPortManContDstt

func (o *SmPolicyUpdateContextData) GetTsnPortManContDstt() PortManagementContainer

GetTsnPortManContDstt returns the TsnPortManContDstt field value if set, zero value otherwise.

func (*SmPolicyUpdateContextData) GetTsnPortManContDsttOk

func (o *SmPolicyUpdateContextData) GetTsnPortManContDsttOk() (*PortManagementContainer, bool)

GetTsnPortManContDsttOk returns a tuple with the TsnPortManContDstt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyUpdateContextData) GetTsnPortManContNwtts

func (o *SmPolicyUpdateContextData) GetTsnPortManContNwtts() []PortManagementContainer

GetTsnPortManContNwtts returns the TsnPortManContNwtts field value if set, zero value otherwise.

func (*SmPolicyUpdateContextData) GetTsnPortManContNwttsOk

func (o *SmPolicyUpdateContextData) GetTsnPortManContNwttsOk() ([]PortManagementContainer, bool)

GetTsnPortManContNwttsOk returns a tuple with the TsnPortManContNwtts field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyUpdateContextData) GetTypesOfNotif

func (o *SmPolicyUpdateContextData) GetTypesOfNotif() []DlDataDeliveryStatus

GetTypesOfNotif returns the TypesOfNotif field value if set, zero value otherwise.

func (*SmPolicyUpdateContextData) GetTypesOfNotifOk

func (o *SmPolicyUpdateContextData) GetTypesOfNotifOk() ([]DlDataDeliveryStatus, bool)

GetTypesOfNotifOk returns a tuple with the TypesOfNotif field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyUpdateContextData) GetUeInitResReq

GetUeInitResReq returns the UeInitResReq field value if set, zero value otherwise.

func (*SmPolicyUpdateContextData) GetUeInitResReqOk

func (o *SmPolicyUpdateContextData) GetUeInitResReqOk() (*UeInitiatedResourceRequest, bool)

GetUeInitResReqOk returns a tuple with the UeInitResReq field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyUpdateContextData) GetUeMac

func (o *SmPolicyUpdateContextData) GetUeMac() string

GetUeMac returns the UeMac field value if set, zero value otherwise.

func (*SmPolicyUpdateContextData) GetUeMacOk

func (o *SmPolicyUpdateContextData) GetUeMacOk() (*string, bool)

GetUeMacOk returns a tuple with the UeMac field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyUpdateContextData) GetUeTimeZone

func (o *SmPolicyUpdateContextData) GetUeTimeZone() string

GetUeTimeZone returns the UeTimeZone field value if set, zero value otherwise.

func (*SmPolicyUpdateContextData) GetUeTimeZoneOk

func (o *SmPolicyUpdateContextData) GetUeTimeZoneOk() (*string, bool)

GetUeTimeZoneOk returns a tuple with the UeTimeZone field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyUpdateContextData) GetUserLocationInfo

func (o *SmPolicyUpdateContextData) GetUserLocationInfo() UserLocation

GetUserLocationInfo returns the UserLocationInfo field value if set, zero value otherwise.

func (*SmPolicyUpdateContextData) GetUserLocationInfoOk

func (o *SmPolicyUpdateContextData) GetUserLocationInfoOk() (*UserLocation, bool)

GetUserLocationInfoOk returns a tuple with the UserLocationInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyUpdateContextData) GetUserLocationInfoTime

func (o *SmPolicyUpdateContextData) GetUserLocationInfoTime() time.Time

GetUserLocationInfoTime returns the UserLocationInfoTime field value if set, zero value otherwise.

func (*SmPolicyUpdateContextData) GetUserLocationInfoTimeOk

func (o *SmPolicyUpdateContextData) GetUserLocationInfoTimeOk() (*time.Time, bool)

GetUserLocationInfoTimeOk returns a tuple with the UserLocationInfoTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyUpdateContextData) GetVar3gppPsDataOffStatus

func (o *SmPolicyUpdateContextData) GetVar3gppPsDataOffStatus() bool

GetVar3gppPsDataOffStatus returns the Var3gppPsDataOffStatus field value if set, zero value otherwise.

func (*SmPolicyUpdateContextData) GetVar3gppPsDataOffStatusOk

func (o *SmPolicyUpdateContextData) GetVar3gppPsDataOffStatusOk() (*bool, bool)

GetVar3gppPsDataOffStatusOk returns a tuple with the Var3gppPsDataOffStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyUpdateContextData) GetVplmnQos

func (o *SmPolicyUpdateContextData) GetVplmnQos() VplmnQos

GetVplmnQos returns the VplmnQos field value if set, zero value otherwise.

func (*SmPolicyUpdateContextData) GetVplmnQosNotApp

func (o *SmPolicyUpdateContextData) GetVplmnQosNotApp() bool

GetVplmnQosNotApp returns the VplmnQosNotApp field value if set, zero value otherwise.

func (*SmPolicyUpdateContextData) GetVplmnQosNotAppOk

func (o *SmPolicyUpdateContextData) GetVplmnQosNotAppOk() (*bool, bool)

GetVplmnQosNotAppOk returns a tuple with the VplmnQosNotApp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyUpdateContextData) GetVplmnQosOk

func (o *SmPolicyUpdateContextData) GetVplmnQosOk() (*VplmnQos, bool)

GetVplmnQosOk returns a tuple with the VplmnQos field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmPolicyUpdateContextData) HasAccNetChIds

func (o *SmPolicyUpdateContextData) HasAccNetChIds() bool

HasAccNetChIds returns a boolean if a field has been set.

func (*SmPolicyUpdateContextData) HasAccessType

func (o *SmPolicyUpdateContextData) HasAccessType() bool

HasAccessType returns a boolean if a field has been set.

func (*SmPolicyUpdateContextData) HasAccuUsageReports

func (o *SmPolicyUpdateContextData) HasAccuUsageReports() bool

HasAccuUsageReports returns a boolean if a field has been set.

func (*SmPolicyUpdateContextData) HasAddAccessInfo

func (o *SmPolicyUpdateContextData) HasAddAccessInfo() bool

HasAddAccessInfo returns a boolean if a field has been set.

func (*SmPolicyUpdateContextData) HasAddIpv6AddrPrefixes

func (o *SmPolicyUpdateContextData) HasAddIpv6AddrPrefixes() bool

HasAddIpv6AddrPrefixes returns a boolean if a field has been set.

func (*SmPolicyUpdateContextData) HasAddRelIpv6AddrPrefixes

func (o *SmPolicyUpdateContextData) HasAddRelIpv6AddrPrefixes() bool

HasAddRelIpv6AddrPrefixes returns a boolean if a field has been set.

func (*SmPolicyUpdateContextData) HasAnGwStatus

func (o *SmPolicyUpdateContextData) HasAnGwStatus() bool

HasAnGwStatus returns a boolean if a field has been set.

func (*SmPolicyUpdateContextData) HasAppDetectionInfos

func (o *SmPolicyUpdateContextData) HasAppDetectionInfos() bool

HasAppDetectionInfos returns a boolean if a field has been set.

func (*SmPolicyUpdateContextData) HasAtsssCapab

func (o *SmPolicyUpdateContextData) HasAtsssCapab() bool

HasAtsssCapab returns a boolean if a field has been set.

func (*SmPolicyUpdateContextData) HasAuthProfIndex

func (o *SmPolicyUpdateContextData) HasAuthProfIndex() bool

HasAuthProfIndex returns a boolean if a field has been set.

func (*SmPolicyUpdateContextData) HasCreditManageStatus

func (o *SmPolicyUpdateContextData) HasCreditManageStatus() bool

HasCreditManageStatus returns a boolean if a field has been set.

func (*SmPolicyUpdateContextData) HasInterGrpIds

func (o *SmPolicyUpdateContextData) HasInterGrpIds() bool

HasInterGrpIds returns a boolean if a field has been set.

func (*SmPolicyUpdateContextData) HasInvalidPolicyDecs

func (o *SmPolicyUpdateContextData) HasInvalidPolicyDecs() bool

HasInvalidPolicyDecs returns a boolean if a field has been set.

func (*SmPolicyUpdateContextData) HasIpDomain

func (o *SmPolicyUpdateContextData) HasIpDomain() bool

HasIpDomain returns a boolean if a field has been set.

func (*SmPolicyUpdateContextData) HasIpv4Address

func (o *SmPolicyUpdateContextData) HasIpv4Address() bool

HasIpv4Address returns a boolean if a field has been set.

func (*SmPolicyUpdateContextData) HasIpv6AddressPrefix

func (o *SmPolicyUpdateContextData) HasIpv6AddressPrefix() bool

HasIpv6AddressPrefix returns a boolean if a field has been set.

func (*SmPolicyUpdateContextData) HasMaPduInd

func (o *SmPolicyUpdateContextData) HasMaPduInd() bool

HasMaPduInd returns a boolean if a field has been set.

func (*SmPolicyUpdateContextData) HasMulAddrInfos

func (o *SmPolicyUpdateContextData) HasMulAddrInfos() bool

HasMulAddrInfos returns a boolean if a field has been set.

func (*SmPolicyUpdateContextData) HasNumOfPackFilter

func (o *SmPolicyUpdateContextData) HasNumOfPackFilter() bool

HasNumOfPackFilter returns a boolean if a field has been set.

func (*SmPolicyUpdateContextData) HasNwdafDatas

func (o *SmPolicyUpdateContextData) HasNwdafDatas() bool

HasNwdafDatas returns a boolean if a field has been set.

func (*SmPolicyUpdateContextData) HasPccRuleId

func (o *SmPolicyUpdateContextData) HasPccRuleId() bool

HasPccRuleId returns a boolean if a field has been set.

func (*SmPolicyUpdateContextData) HasPcfUeInfo

func (o *SmPolicyUpdateContextData) HasPcfUeInfo() bool

HasPcfUeInfo returns a boolean if a field has been set.

func (*SmPolicyUpdateContextData) HasPolicyDecFailureReports

func (o *SmPolicyUpdateContextData) HasPolicyDecFailureReports() bool

HasPolicyDecFailureReports returns a boolean if a field has been set.

func (*SmPolicyUpdateContextData) HasQncReports

func (o *SmPolicyUpdateContextData) HasQncReports() bool

HasQncReports returns a boolean if a field has been set.

func (*SmPolicyUpdateContextData) HasQosFlowUsage

func (o *SmPolicyUpdateContextData) HasQosFlowUsage() bool

HasQosFlowUsage returns a boolean if a field has been set.

func (*SmPolicyUpdateContextData) HasQosMonReports

func (o *SmPolicyUpdateContextData) HasQosMonReports() bool

HasQosMonReports returns a boolean if a field has been set.

func (*SmPolicyUpdateContextData) HasRatType

func (o *SmPolicyUpdateContextData) HasRatType() bool

HasRatType returns a boolean if a field has been set.

func (*SmPolicyUpdateContextData) HasRefQosIndication

func (o *SmPolicyUpdateContextData) HasRefQosIndication() bool

HasRefQosIndication returns a boolean if a field has been set.

func (*SmPolicyUpdateContextData) HasRelAccessInfo

func (o *SmPolicyUpdateContextData) HasRelAccessInfo() bool

HasRelAccessInfo returns a boolean if a field has been set.

func (*SmPolicyUpdateContextData) HasRelIpv4Address

func (o *SmPolicyUpdateContextData) HasRelIpv4Address() bool

HasRelIpv4Address returns a boolean if a field has been set.

func (*SmPolicyUpdateContextData) HasRelIpv6AddressPrefix

func (o *SmPolicyUpdateContextData) HasRelIpv6AddressPrefix() bool

HasRelIpv6AddressPrefix returns a boolean if a field has been set.

func (*SmPolicyUpdateContextData) HasRelUeMac

func (o *SmPolicyUpdateContextData) HasRelUeMac() bool

HasRelUeMac returns a boolean if a field has been set.

func (*SmPolicyUpdateContextData) HasRepPolicyCtrlReqTriggers

func (o *SmPolicyUpdateContextData) HasRepPolicyCtrlReqTriggers() bool

HasRepPolicyCtrlReqTriggers returns a boolean if a field has been set.

func (*SmPolicyUpdateContextData) HasRepPraInfos

func (o *SmPolicyUpdateContextData) HasRepPraInfos() bool

HasRepPraInfos returns a boolean if a field has been set.

func (*SmPolicyUpdateContextData) HasRuleReports

func (o *SmPolicyUpdateContextData) HasRuleReports() bool

HasRuleReports returns a boolean if a field has been set.

func (*SmPolicyUpdateContextData) HasSatBackhaulCategory

func (o *SmPolicyUpdateContextData) HasSatBackhaulCategory() bool

HasSatBackhaulCategory returns a boolean if a field has been set.

func (*SmPolicyUpdateContextData) HasServNfId

func (o *SmPolicyUpdateContextData) HasServNfId() bool

HasServNfId returns a boolean if a field has been set.

func (*SmPolicyUpdateContextData) HasServingNetwork

func (o *SmPolicyUpdateContextData) HasServingNetwork() bool

HasServingNetwork returns a boolean if a field has been set.

func (*SmPolicyUpdateContextData) HasSessRuleReports

func (o *SmPolicyUpdateContextData) HasSessRuleReports() bool

HasSessRuleReports returns a boolean if a field has been set.

func (*SmPolicyUpdateContextData) HasSubsDefQos

func (o *SmPolicyUpdateContextData) HasSubsDefQos() bool

HasSubsDefQos returns a boolean if a field has been set.

func (*SmPolicyUpdateContextData) HasSubsSessAmbr

func (o *SmPolicyUpdateContextData) HasSubsSessAmbr() bool

HasSubsSessAmbr returns a boolean if a field has been set.

func (*SmPolicyUpdateContextData) HasTraceReq

func (o *SmPolicyUpdateContextData) HasTraceReq() bool

HasTraceReq returns a boolean if a field has been set.

func (*SmPolicyUpdateContextData) HasTrafficDescriptors

func (o *SmPolicyUpdateContextData) HasTrafficDescriptors() bool

HasTrafficDescriptors returns a boolean if a field has been set.

func (*SmPolicyUpdateContextData) HasTsnBridgeInfo

func (o *SmPolicyUpdateContextData) HasTsnBridgeInfo() bool

HasTsnBridgeInfo returns a boolean if a field has been set.

func (*SmPolicyUpdateContextData) HasTsnBridgeManCont

func (o *SmPolicyUpdateContextData) HasTsnBridgeManCont() bool

HasTsnBridgeManCont returns a boolean if a field has been set.

func (*SmPolicyUpdateContextData) HasTsnPortManContDstt

func (o *SmPolicyUpdateContextData) HasTsnPortManContDstt() bool

HasTsnPortManContDstt returns a boolean if a field has been set.

func (*SmPolicyUpdateContextData) HasTsnPortManContNwtts

func (o *SmPolicyUpdateContextData) HasTsnPortManContNwtts() bool

HasTsnPortManContNwtts returns a boolean if a field has been set.

func (*SmPolicyUpdateContextData) HasTypesOfNotif

func (o *SmPolicyUpdateContextData) HasTypesOfNotif() bool

HasTypesOfNotif returns a boolean if a field has been set.

func (*SmPolicyUpdateContextData) HasUeInitResReq

func (o *SmPolicyUpdateContextData) HasUeInitResReq() bool

HasUeInitResReq returns a boolean if a field has been set.

func (*SmPolicyUpdateContextData) HasUeMac

func (o *SmPolicyUpdateContextData) HasUeMac() bool

HasUeMac returns a boolean if a field has been set.

func (*SmPolicyUpdateContextData) HasUeTimeZone

func (o *SmPolicyUpdateContextData) HasUeTimeZone() bool

HasUeTimeZone returns a boolean if a field has been set.

func (*SmPolicyUpdateContextData) HasUserLocationInfo

func (o *SmPolicyUpdateContextData) HasUserLocationInfo() bool

HasUserLocationInfo returns a boolean if a field has been set.

func (*SmPolicyUpdateContextData) HasUserLocationInfoTime

func (o *SmPolicyUpdateContextData) HasUserLocationInfoTime() bool

HasUserLocationInfoTime returns a boolean if a field has been set.

func (*SmPolicyUpdateContextData) HasVar3gppPsDataOffStatus

func (o *SmPolicyUpdateContextData) HasVar3gppPsDataOffStatus() bool

HasVar3gppPsDataOffStatus returns a boolean if a field has been set.

func (*SmPolicyUpdateContextData) HasVplmnQos

func (o *SmPolicyUpdateContextData) HasVplmnQos() bool

HasVplmnQos returns a boolean if a field has been set.

func (*SmPolicyUpdateContextData) HasVplmnQosNotApp

func (o *SmPolicyUpdateContextData) HasVplmnQosNotApp() bool

HasVplmnQosNotApp returns a boolean if a field has been set.

func (SmPolicyUpdateContextData) MarshalJSON

func (o SmPolicyUpdateContextData) MarshalJSON() ([]byte, error)

func (*SmPolicyUpdateContextData) SetAccNetChIds

func (o *SmPolicyUpdateContextData) SetAccNetChIds(v []AccNetChId)

SetAccNetChIds gets a reference to the given []AccNetChId and assigns it to the AccNetChIds field.

func (*SmPolicyUpdateContextData) SetAccessType

func (o *SmPolicyUpdateContextData) SetAccessType(v AccessType)

SetAccessType gets a reference to the given AccessType and assigns it to the AccessType field.

func (*SmPolicyUpdateContextData) SetAccuUsageReports

func (o *SmPolicyUpdateContextData) SetAccuUsageReports(v []AccuUsageReport)

SetAccuUsageReports gets a reference to the given []AccuUsageReport and assigns it to the AccuUsageReports field.

func (*SmPolicyUpdateContextData) SetAddAccessInfo

func (o *SmPolicyUpdateContextData) SetAddAccessInfo(v AdditionalAccessInfo)

SetAddAccessInfo gets a reference to the given AdditionalAccessInfo and assigns it to the AddAccessInfo field.

func (*SmPolicyUpdateContextData) SetAddIpv6AddrPrefixes

func (o *SmPolicyUpdateContextData) SetAddIpv6AddrPrefixes(v Ipv6Prefix)

SetAddIpv6AddrPrefixes gets a reference to the given Ipv6Prefix and assigns it to the AddIpv6AddrPrefixes field.

func (*SmPolicyUpdateContextData) SetAddRelIpv6AddrPrefixes

func (o *SmPolicyUpdateContextData) SetAddRelIpv6AddrPrefixes(v Ipv6Prefix)

SetAddRelIpv6AddrPrefixes gets a reference to the given Ipv6Prefix and assigns it to the AddRelIpv6AddrPrefixes field.

func (*SmPolicyUpdateContextData) SetAnGwStatus

func (o *SmPolicyUpdateContextData) SetAnGwStatus(v bool)

SetAnGwStatus gets a reference to the given bool and assigns it to the AnGwStatus field.

func (*SmPolicyUpdateContextData) SetAppDetectionInfos

func (o *SmPolicyUpdateContextData) SetAppDetectionInfos(v []AppDetectionInfo)

SetAppDetectionInfos gets a reference to the given []AppDetectionInfo and assigns it to the AppDetectionInfos field.

func (*SmPolicyUpdateContextData) SetAtsssCapab

func (o *SmPolicyUpdateContextData) SetAtsssCapab(v AtsssCapability)

SetAtsssCapab gets a reference to the given AtsssCapability and assigns it to the AtsssCapab field.

func (*SmPolicyUpdateContextData) SetAuthProfIndex

func (o *SmPolicyUpdateContextData) SetAuthProfIndex(v string)

SetAuthProfIndex gets a reference to the given string and assigns it to the AuthProfIndex field.

func (*SmPolicyUpdateContextData) SetCreditManageStatus

func (o *SmPolicyUpdateContextData) SetCreditManageStatus(v CreditManagementStatus)

SetCreditManageStatus gets a reference to the given CreditManagementStatus and assigns it to the CreditManageStatus field.

func (*SmPolicyUpdateContextData) SetInterGrpIds

func (o *SmPolicyUpdateContextData) SetInterGrpIds(v []string)

SetInterGrpIds gets a reference to the given []string and assigns it to the InterGrpIds field.

func (*SmPolicyUpdateContextData) SetInvalidPolicyDecs

func (o *SmPolicyUpdateContextData) SetInvalidPolicyDecs(v []InvalidParam)

SetInvalidPolicyDecs gets a reference to the given []InvalidParam and assigns it to the InvalidPolicyDecs field.

func (*SmPolicyUpdateContextData) SetIpDomain

func (o *SmPolicyUpdateContextData) SetIpDomain(v string)

SetIpDomain gets a reference to the given string and assigns it to the IpDomain field.

func (*SmPolicyUpdateContextData) SetIpv4Address

func (o *SmPolicyUpdateContextData) SetIpv4Address(v string)

SetIpv4Address gets a reference to the given string and assigns it to the Ipv4Address field.

func (*SmPolicyUpdateContextData) SetIpv6AddressPrefix

func (o *SmPolicyUpdateContextData) SetIpv6AddressPrefix(v Ipv6Prefix)

SetIpv6AddressPrefix gets a reference to the given Ipv6Prefix and assigns it to the Ipv6AddressPrefix field.

func (*SmPolicyUpdateContextData) SetMaPduInd

func (o *SmPolicyUpdateContextData) SetMaPduInd(v MaPduIndication)

SetMaPduInd gets a reference to the given MaPduIndication and assigns it to the MaPduInd field.

func (*SmPolicyUpdateContextData) SetMulAddrInfos

func (o *SmPolicyUpdateContextData) SetMulAddrInfos(v []IpMulticastAddressInfo)

SetMulAddrInfos gets a reference to the given []IpMulticastAddressInfo and assigns it to the MulAddrInfos field.

func (*SmPolicyUpdateContextData) SetNumOfPackFilter

func (o *SmPolicyUpdateContextData) SetNumOfPackFilter(v int32)

SetNumOfPackFilter gets a reference to the given int32 and assigns it to the NumOfPackFilter field.

func (*SmPolicyUpdateContextData) SetNwdafDatas

func (o *SmPolicyUpdateContextData) SetNwdafDatas(v []NwdafData)

SetNwdafDatas gets a reference to the given []NwdafData and assigns it to the NwdafDatas field.

func (*SmPolicyUpdateContextData) SetPccRuleId

func (o *SmPolicyUpdateContextData) SetPccRuleId(v string)

SetPccRuleId gets a reference to the given string and assigns it to the PccRuleId field.

func (*SmPolicyUpdateContextData) SetPcfUeInfo

func (o *SmPolicyUpdateContextData) SetPcfUeInfo(v PcfUeCallbackInfo)

SetPcfUeInfo gets a reference to the given NullablePcfUeCallbackInfo and assigns it to the PcfUeInfo field.

func (*SmPolicyUpdateContextData) SetPcfUeInfoNil

func (o *SmPolicyUpdateContextData) SetPcfUeInfoNil()

SetPcfUeInfoNil sets the value for PcfUeInfo to be an explicit nil

func (*SmPolicyUpdateContextData) SetPolicyDecFailureReports

func (o *SmPolicyUpdateContextData) SetPolicyDecFailureReports(v []PolicyDecisionFailureCode)

SetPolicyDecFailureReports gets a reference to the given []PolicyDecisionFailureCode and assigns it to the PolicyDecFailureReports field.

func (*SmPolicyUpdateContextData) SetQncReports

SetQncReports gets a reference to the given []QosNotificationControlInfo and assigns it to the QncReports field.

func (*SmPolicyUpdateContextData) SetQosFlowUsage

func (o *SmPolicyUpdateContextData) SetQosFlowUsage(v QosFlowUsage)

SetQosFlowUsage gets a reference to the given QosFlowUsage and assigns it to the QosFlowUsage field.

func (*SmPolicyUpdateContextData) SetQosMonReports

func (o *SmPolicyUpdateContextData) SetQosMonReports(v []QosMonitoringReport)

SetQosMonReports gets a reference to the given []QosMonitoringReport and assigns it to the QosMonReports field.

func (*SmPolicyUpdateContextData) SetRatType

func (o *SmPolicyUpdateContextData) SetRatType(v RatType)

SetRatType gets a reference to the given RatType and assigns it to the RatType field.

func (*SmPolicyUpdateContextData) SetRefQosIndication

func (o *SmPolicyUpdateContextData) SetRefQosIndication(v bool)

SetRefQosIndication gets a reference to the given bool and assigns it to the RefQosIndication field.

func (*SmPolicyUpdateContextData) SetRelAccessInfo

func (o *SmPolicyUpdateContextData) SetRelAccessInfo(v AdditionalAccessInfo)

SetRelAccessInfo gets a reference to the given AdditionalAccessInfo and assigns it to the RelAccessInfo field.

func (*SmPolicyUpdateContextData) SetRelIpv4Address

func (o *SmPolicyUpdateContextData) SetRelIpv4Address(v string)

SetRelIpv4Address gets a reference to the given string and assigns it to the RelIpv4Address field.

func (*SmPolicyUpdateContextData) SetRelIpv6AddressPrefix

func (o *SmPolicyUpdateContextData) SetRelIpv6AddressPrefix(v Ipv6Prefix)

SetRelIpv6AddressPrefix gets a reference to the given Ipv6Prefix and assigns it to the RelIpv6AddressPrefix field.

func (*SmPolicyUpdateContextData) SetRelUeMac

func (o *SmPolicyUpdateContextData) SetRelUeMac(v string)

SetRelUeMac gets a reference to the given string and assigns it to the RelUeMac field.

func (*SmPolicyUpdateContextData) SetRepPolicyCtrlReqTriggers

func (o *SmPolicyUpdateContextData) SetRepPolicyCtrlReqTriggers(v []PolicyControlRequestTrigger)

SetRepPolicyCtrlReqTriggers gets a reference to the given []PolicyControlRequestTrigger and assigns it to the RepPolicyCtrlReqTriggers field.

func (*SmPolicyUpdateContextData) SetRepPraInfos

func (o *SmPolicyUpdateContextData) SetRepPraInfos(v map[string]PresenceInfo)

SetRepPraInfos gets a reference to the given map[string]PresenceInfo and assigns it to the RepPraInfos field.

func (*SmPolicyUpdateContextData) SetRuleReports

func (o *SmPolicyUpdateContextData) SetRuleReports(v []RuleReport)

SetRuleReports gets a reference to the given []RuleReport and assigns it to the RuleReports field.

func (*SmPolicyUpdateContextData) SetSatBackhaulCategory

func (o *SmPolicyUpdateContextData) SetSatBackhaulCategory(v SatelliteBackhaulCategory)

SetSatBackhaulCategory gets a reference to the given SatelliteBackhaulCategory and assigns it to the SatBackhaulCategory field.

func (*SmPolicyUpdateContextData) SetServNfId

func (o *SmPolicyUpdateContextData) SetServNfId(v ServingNfIdentity)

SetServNfId gets a reference to the given ServingNfIdentity and assigns it to the ServNfId field.

func (*SmPolicyUpdateContextData) SetServingNetwork

func (o *SmPolicyUpdateContextData) SetServingNetwork(v PlmnIdNid)

SetServingNetwork gets a reference to the given PlmnIdNid and assigns it to the ServingNetwork field.

func (*SmPolicyUpdateContextData) SetSessRuleReports

func (o *SmPolicyUpdateContextData) SetSessRuleReports(v []SessionRuleReport)

SetSessRuleReports gets a reference to the given []SessionRuleReport and assigns it to the SessRuleReports field.

func (*SmPolicyUpdateContextData) SetSubsDefQos

func (o *SmPolicyUpdateContextData) SetSubsDefQos(v SubscribedDefaultQos)

SetSubsDefQos gets a reference to the given SubscribedDefaultQos and assigns it to the SubsDefQos field.

func (*SmPolicyUpdateContextData) SetSubsSessAmbr

func (o *SmPolicyUpdateContextData) SetSubsSessAmbr(v Ambr)

SetSubsSessAmbr gets a reference to the given Ambr and assigns it to the SubsSessAmbr field.

func (*SmPolicyUpdateContextData) SetTraceReq

func (o *SmPolicyUpdateContextData) SetTraceReq(v TraceData)

SetTraceReq gets a reference to the given NullableTraceData and assigns it to the TraceReq field.

func (*SmPolicyUpdateContextData) SetTraceReqNil

func (o *SmPolicyUpdateContextData) SetTraceReqNil()

SetTraceReqNil sets the value for TraceReq to be an explicit nil

func (*SmPolicyUpdateContextData) SetTrafficDescriptors

func (o *SmPolicyUpdateContextData) SetTrafficDescriptors(v []DddTrafficDescriptor)

SetTrafficDescriptors gets a reference to the given []DddTrafficDescriptor and assigns it to the TrafficDescriptors field.

func (*SmPolicyUpdateContextData) SetTsnBridgeInfo

func (o *SmPolicyUpdateContextData) SetTsnBridgeInfo(v TsnBridgeInfo)

SetTsnBridgeInfo gets a reference to the given TsnBridgeInfo and assigns it to the TsnBridgeInfo field.

func (*SmPolicyUpdateContextData) SetTsnBridgeManCont

func (o *SmPolicyUpdateContextData) SetTsnBridgeManCont(v BridgeManagementContainer)

SetTsnBridgeManCont gets a reference to the given BridgeManagementContainer and assigns it to the TsnBridgeManCont field.

func (*SmPolicyUpdateContextData) SetTsnPortManContDstt

func (o *SmPolicyUpdateContextData) SetTsnPortManContDstt(v PortManagementContainer)

SetTsnPortManContDstt gets a reference to the given PortManagementContainer and assigns it to the TsnPortManContDstt field.

func (*SmPolicyUpdateContextData) SetTsnPortManContNwtts

func (o *SmPolicyUpdateContextData) SetTsnPortManContNwtts(v []PortManagementContainer)

SetTsnPortManContNwtts gets a reference to the given []PortManagementContainer and assigns it to the TsnPortManContNwtts field.

func (*SmPolicyUpdateContextData) SetTypesOfNotif

func (o *SmPolicyUpdateContextData) SetTypesOfNotif(v []DlDataDeliveryStatus)

SetTypesOfNotif gets a reference to the given []DlDataDeliveryStatus and assigns it to the TypesOfNotif field.

func (*SmPolicyUpdateContextData) SetUeInitResReq

SetUeInitResReq gets a reference to the given UeInitiatedResourceRequest and assigns it to the UeInitResReq field.

func (*SmPolicyUpdateContextData) SetUeMac

func (o *SmPolicyUpdateContextData) SetUeMac(v string)

SetUeMac gets a reference to the given string and assigns it to the UeMac field.

func (*SmPolicyUpdateContextData) SetUeTimeZone

func (o *SmPolicyUpdateContextData) SetUeTimeZone(v string)

SetUeTimeZone gets a reference to the given string and assigns it to the UeTimeZone field.

func (*SmPolicyUpdateContextData) SetUserLocationInfo

func (o *SmPolicyUpdateContextData) SetUserLocationInfo(v UserLocation)

SetUserLocationInfo gets a reference to the given UserLocation and assigns it to the UserLocationInfo field.

func (*SmPolicyUpdateContextData) SetUserLocationInfoTime

func (o *SmPolicyUpdateContextData) SetUserLocationInfoTime(v time.Time)

SetUserLocationInfoTime gets a reference to the given time.Time and assigns it to the UserLocationInfoTime field.

func (*SmPolicyUpdateContextData) SetVar3gppPsDataOffStatus

func (o *SmPolicyUpdateContextData) SetVar3gppPsDataOffStatus(v bool)

SetVar3gppPsDataOffStatus gets a reference to the given bool and assigns it to the Var3gppPsDataOffStatus field.

func (*SmPolicyUpdateContextData) SetVplmnQos

func (o *SmPolicyUpdateContextData) SetVplmnQos(v VplmnQos)

SetVplmnQos gets a reference to the given VplmnQos and assigns it to the VplmnQos field.

func (*SmPolicyUpdateContextData) SetVplmnQosNotApp

func (o *SmPolicyUpdateContextData) SetVplmnQosNotApp(v bool)

SetVplmnQosNotApp gets a reference to the given bool and assigns it to the VplmnQosNotApp field.

func (SmPolicyUpdateContextData) ToMap

func (o SmPolicyUpdateContextData) ToMap() (map[string]interface{}, error)

func (*SmPolicyUpdateContextData) UnsetPcfUeInfo

func (o *SmPolicyUpdateContextData) UnsetPcfUeInfo()

UnsetPcfUeInfo ensures that no value is present for PcfUeInfo, not even an explicit nil

func (*SmPolicyUpdateContextData) UnsetTraceReq

func (o *SmPolicyUpdateContextData) UnsetTraceReq()

UnsetTraceReq ensures that no value is present for TraceReq, not even an explicit nil

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 SteerModeIndicator

type SteerModeIndicator struct {
	String *string
}

SteerModeIndicator Contains Autonomous load-balance indicator or UE-assistance indicator.

func (*SteerModeIndicator) MarshalJSON

func (src *SteerModeIndicator) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*SteerModeIndicator) UnmarshalJSON

func (dst *SteerModeIndicator) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type SteerModeValue

type SteerModeValue struct {
	String *string
}

SteerModeValue Indicates the steering mode value determined by the PCF.

func (*SteerModeValue) MarshalJSON

func (src *SteerModeValue) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*SteerModeValue) UnmarshalJSON

func (dst *SteerModeValue) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type SteeringFunctionality

type SteeringFunctionality struct {
	String *string
}

SteeringFunctionality Possible values are - MPTCP: Indicates that PCF authorizes the MPTCP functionality to support traffic steering, switching and splitting. - ATSSS_LL: Indicates that PCF authorizes the ATSSS-LL functionality to support traffic steering, switching and splitting.

func (*SteeringFunctionality) MarshalJSON

func (src *SteeringFunctionality) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*SteeringFunctionality) UnmarshalJSON

func (dst *SteeringFunctionality) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type SteeringMode

type SteeringMode struct {
	SteerModeValue SteerModeValue `json:"steerModeValue"`
	Active         *AccessType    `json:"active,omitempty"`
	Standby        *AccessTypeRm  `json:"standby,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	Var3gLoad    *int32                 `json:"3gLoad,omitempty"`
	PrioAcc      *AccessType            `json:"prioAcc,omitempty"`
	ThresValue   NullableThresholdValue `json:"thresValue,omitempty"`
	SteerModeInd *SteerModeIndicator    `json:"steerModeInd,omitempty"`
}

SteeringMode Contains the steering mode value and parameters determined by the PCF.

func NewSteeringMode

func NewSteeringMode(steerModeValue SteerModeValue) *SteeringMode

NewSteeringMode instantiates a new SteeringMode object This constructor will assign default values to properties that have it defined, 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 NewSteeringModeWithDefaults

func NewSteeringModeWithDefaults() *SteeringMode

NewSteeringModeWithDefaults instantiates a new SteeringMode object This 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 (*SteeringMode) GetActive

func (o *SteeringMode) GetActive() AccessType

GetActive returns the Active field value if set, zero value otherwise.

func (*SteeringMode) GetActiveOk

func (o *SteeringMode) GetActiveOk() (*AccessType, bool)

GetActiveOk returns a tuple with the Active field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SteeringMode) GetPrioAcc

func (o *SteeringMode) GetPrioAcc() AccessType

GetPrioAcc returns the PrioAcc field value if set, zero value otherwise.

func (*SteeringMode) GetPrioAccOk

func (o *SteeringMode) GetPrioAccOk() (*AccessType, bool)

GetPrioAccOk returns a tuple with the PrioAcc field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SteeringMode) GetStandby

func (o *SteeringMode) GetStandby() AccessTypeRm

GetStandby returns the Standby field value if set, zero value otherwise.

func (*SteeringMode) GetStandbyOk

func (o *SteeringMode) GetStandbyOk() (*AccessTypeRm, bool)

GetStandbyOk returns a tuple with the Standby field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SteeringMode) GetSteerModeInd

func (o *SteeringMode) GetSteerModeInd() SteerModeIndicator

GetSteerModeInd returns the SteerModeInd field value if set, zero value otherwise.

func (*SteeringMode) GetSteerModeIndOk

func (o *SteeringMode) GetSteerModeIndOk() (*SteerModeIndicator, bool)

GetSteerModeIndOk returns a tuple with the SteerModeInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SteeringMode) GetSteerModeValue

func (o *SteeringMode) GetSteerModeValue() SteerModeValue

GetSteerModeValue returns the SteerModeValue field value

func (*SteeringMode) GetSteerModeValueOk

func (o *SteeringMode) GetSteerModeValueOk() (*SteerModeValue, bool)

GetSteerModeValueOk returns a tuple with the SteerModeValue field value and a boolean to check if the value has been set.

func (*SteeringMode) GetThresValue

func (o *SteeringMode) GetThresValue() ThresholdValue

GetThresValue returns the ThresValue field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SteeringMode) GetThresValueOk

func (o *SteeringMode) GetThresValueOk() (*ThresholdValue, bool)

GetThresValueOk returns a tuple with the ThresValue 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 (*SteeringMode) GetVar3gLoad

func (o *SteeringMode) GetVar3gLoad() int32

GetVar3gLoad returns the Var3gLoad field value if set, zero value otherwise.

func (*SteeringMode) GetVar3gLoadOk

func (o *SteeringMode) GetVar3gLoadOk() (*int32, bool)

GetVar3gLoadOk returns a tuple with the Var3gLoad field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SteeringMode) HasActive

func (o *SteeringMode) HasActive() bool

HasActive returns a boolean if a field has been set.

func (*SteeringMode) HasPrioAcc

func (o *SteeringMode) HasPrioAcc() bool

HasPrioAcc returns a boolean if a field has been set.

func (*SteeringMode) HasStandby

func (o *SteeringMode) HasStandby() bool

HasStandby returns a boolean if a field has been set.

func (*SteeringMode) HasSteerModeInd

func (o *SteeringMode) HasSteerModeInd() bool

HasSteerModeInd returns a boolean if a field has been set.

func (*SteeringMode) HasThresValue

func (o *SteeringMode) HasThresValue() bool

HasThresValue returns a boolean if a field has been set.

func (*SteeringMode) HasVar3gLoad

func (o *SteeringMode) HasVar3gLoad() bool

HasVar3gLoad returns a boolean if a field has been set.

func (SteeringMode) MarshalJSON

func (o SteeringMode) MarshalJSON() ([]byte, error)

func (*SteeringMode) SetActive

func (o *SteeringMode) SetActive(v AccessType)

SetActive gets a reference to the given AccessType and assigns it to the Active field.

func (*SteeringMode) SetPrioAcc

func (o *SteeringMode) SetPrioAcc(v AccessType)

SetPrioAcc gets a reference to the given AccessType and assigns it to the PrioAcc field.

func (*SteeringMode) SetStandby

func (o *SteeringMode) SetStandby(v AccessTypeRm)

SetStandby gets a reference to the given AccessTypeRm and assigns it to the Standby field.

func (*SteeringMode) SetSteerModeInd

func (o *SteeringMode) SetSteerModeInd(v SteerModeIndicator)

SetSteerModeInd gets a reference to the given SteerModeIndicator and assigns it to the SteerModeInd field.

func (*SteeringMode) SetSteerModeValue

func (o *SteeringMode) SetSteerModeValue(v SteerModeValue)

SetSteerModeValue sets field value

func (*SteeringMode) SetThresValue

func (o *SteeringMode) SetThresValue(v ThresholdValue)

SetThresValue gets a reference to the given NullableThresholdValue and assigns it to the ThresValue field.

func (*SteeringMode) SetThresValueNil

func (o *SteeringMode) SetThresValueNil()

SetThresValueNil sets the value for ThresValue to be an explicit nil

func (*SteeringMode) SetVar3gLoad

func (o *SteeringMode) SetVar3gLoad(v int32)

SetVar3gLoad gets a reference to the given int32 and assigns it to the Var3gLoad field.

func (SteeringMode) ToMap

func (o SteeringMode) ToMap() (map[string]interface{}, error)

func (*SteeringMode) UnsetThresValue

func (o *SteeringMode) UnsetThresValue()

UnsetThresValue ensures that no value is present for ThresValue, not even an explicit nil

type SubscribedDefaultQos

type SubscribedDefaultQos struct {
	// Unsigned integer representing a 5G QoS Identifier (see clause 5.7.2.1 of 3GPP TS 23.501, within the range 0 to 255.
	Var5qi int32 `json:"5qi"`
	Arp    Arp   `json:"arp"`
	// Unsigned integer indicating the 5QI Priority Level (see clauses 5.7.3.3 and 5.7.4 of 3GPP TS 23.501, within the range 1 to 127.Values are ordered in decreasing order of priority,  i.e. with 1 as the highest priority and 127 as the lowest priority.
	PriorityLevel *int32 `json:"priorityLevel,omitempty"`
}

SubscribedDefaultQos Provides the subsribed 5QI and the ARP, it may contain the priority level.

func NewSubscribedDefaultQos

func NewSubscribedDefaultQos(var5qi int32, arp Arp) *SubscribedDefaultQos

NewSubscribedDefaultQos instantiates a new SubscribedDefaultQos object This constructor will assign default values to properties that have it defined, 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 NewSubscribedDefaultQosWithDefaults

func NewSubscribedDefaultQosWithDefaults() *SubscribedDefaultQos

NewSubscribedDefaultQosWithDefaults instantiates a new SubscribedDefaultQos object This 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 (*SubscribedDefaultQos) GetArp

func (o *SubscribedDefaultQos) GetArp() Arp

GetArp returns the Arp field value

func (*SubscribedDefaultQos) GetArpOk

func (o *SubscribedDefaultQos) GetArpOk() (*Arp, bool)

GetArpOk returns a tuple with the Arp field value and a boolean to check if the value has been set.

func (*SubscribedDefaultQos) GetPriorityLevel

func (o *SubscribedDefaultQos) GetPriorityLevel() int32

GetPriorityLevel returns the PriorityLevel field value if set, zero value otherwise.

func (*SubscribedDefaultQos) GetPriorityLevelOk

func (o *SubscribedDefaultQos) GetPriorityLevelOk() (*int32, bool)

GetPriorityLevelOk returns a tuple with the PriorityLevel field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscribedDefaultQos) GetVar5qi

func (o *SubscribedDefaultQos) GetVar5qi() int32

GetVar5qi returns the Var5qi field value

func (*SubscribedDefaultQos) GetVar5qiOk

func (o *SubscribedDefaultQos) GetVar5qiOk() (*int32, bool)

GetVar5qiOk returns a tuple with the Var5qi field value and a boolean to check if the value has been set.

func (*SubscribedDefaultQos) HasPriorityLevel

func (o *SubscribedDefaultQos) HasPriorityLevel() bool

HasPriorityLevel returns a boolean if a field has been set.

func (SubscribedDefaultQos) MarshalJSON

func (o SubscribedDefaultQos) MarshalJSON() ([]byte, error)

func (*SubscribedDefaultQos) SetArp

func (o *SubscribedDefaultQos) SetArp(v Arp)

SetArp sets field value

func (*SubscribedDefaultQos) SetPriorityLevel

func (o *SubscribedDefaultQos) SetPriorityLevel(v int32)

SetPriorityLevel gets a reference to the given int32 and assigns it to the PriorityLevel field.

func (*SubscribedDefaultQos) SetVar5qi

func (o *SubscribedDefaultQos) SetVar5qi(v int32)

SetVar5qi sets field value

func (SubscribedDefaultQos) ToMap

func (o SubscribedDefaultQos) ToMap() (map[string]interface{}, error)

type Tai

type Tai struct {
	PlmnId PlmnId `json:"plmnId"`
	// 2 or 3-octet string identifying a tracking area code as specified in clause 9.3.3.10  of 3GPP TS 38.413, 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 TAC shall  appear first in the string, and the character representing the 4 least significant bit  of the TAC shall appear last in the string.
	Tac string `json:"tac"`
	// 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"`
}

Tai Contains the tracking area identity as described in 3GPP 23.003

func NewTai

func NewTai(plmnId PlmnId, tac string) *Tai

NewTai instantiates a new Tai object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTaiWithDefaults

func NewTaiWithDefaults() *Tai

NewTaiWithDefaults instantiates a new Tai object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Tai) GetNid

func (o *Tai) GetNid() string

GetNid returns the Nid field value if set, zero value otherwise.

func (*Tai) GetNidOk

func (o *Tai) 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 (*Tai) GetPlmnId

func (o *Tai) GetPlmnId() PlmnId

GetPlmnId returns the PlmnId field value

func (*Tai) GetPlmnIdOk

func (o *Tai) GetPlmnIdOk() (*PlmnId, bool)

GetPlmnIdOk returns a tuple with the PlmnId field value and a boolean to check if the value has been set.

func (*Tai) GetTac

func (o *Tai) GetTac() string

GetTac returns the Tac field value

func (*Tai) GetTacOk

func (o *Tai) GetTacOk() (*string, bool)

GetTacOk returns a tuple with the Tac field value and a boolean to check if the value has been set.

func (*Tai) HasNid

func (o *Tai) HasNid() bool

HasNid returns a boolean if a field has been set.

func (Tai) MarshalJSON

func (o Tai) MarshalJSON() ([]byte, error)

func (*Tai) SetNid

func (o *Tai) SetNid(v string)

SetNid gets a reference to the given string and assigns it to the Nid field.

func (*Tai) SetPlmnId

func (o *Tai) SetPlmnId(v PlmnId)

SetPlmnId sets field value

func (*Tai) SetTac

func (o *Tai) SetTac(v string)

SetTac sets field value

func (Tai) ToMap

func (o Tai) ToMap() (map[string]interface{}, error)

type TerminationNotification

type TerminationNotification struct {
	// String providing an URI formatted according to RFC 3986.
	ResourceUri string                          `json:"resourceUri"`
	Cause       SmPolicyAssociationReleaseCause `json:"cause"`
}

TerminationNotification Represents a Termination Notification.

func NewTerminationNotification

func NewTerminationNotification(resourceUri string, cause SmPolicyAssociationReleaseCause) *TerminationNotification

NewTerminationNotification instantiates a new TerminationNotification object This constructor will assign default values to properties that have it defined, 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 NewTerminationNotificationWithDefaults

func NewTerminationNotificationWithDefaults() *TerminationNotification

NewTerminationNotificationWithDefaults instantiates a new TerminationNotification object This 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 (*TerminationNotification) GetCause

GetCause returns the Cause field value

func (*TerminationNotification) GetCauseOk

GetCauseOk returns a tuple with the Cause field value and a boolean to check if the value has been set.

func (*TerminationNotification) GetResourceUri

func (o *TerminationNotification) GetResourceUri() string

GetResourceUri returns the ResourceUri field value

func (*TerminationNotification) GetResourceUriOk

func (o *TerminationNotification) GetResourceUriOk() (*string, bool)

GetResourceUriOk returns a tuple with the ResourceUri field value and a boolean to check if the value has been set.

func (TerminationNotification) MarshalJSON

func (o TerminationNotification) MarshalJSON() ([]byte, error)

func (*TerminationNotification) SetCause

SetCause sets field value

func (*TerminationNotification) SetResourceUri

func (o *TerminationNotification) SetResourceUri(v string)

SetResourceUri sets field value

func (TerminationNotification) ToMap

func (o TerminationNotification) ToMap() (map[string]interface{}, error)

type ThresholdValue

type ThresholdValue struct {
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible with the OpenAPI 'nullable: true' property.
	RttThres NullableInt32 `json:"rttThres,omitempty"`
	// This data type is defined in the same way as the 'PacketLossRate' data type, but with the OpenAPI 'nullable: true' property.
	PlrThres NullableInt32 `json:"plrThres,omitempty"`
}

ThresholdValue Indicates the threshold value(s) for RTT and/or Packet Loss Rate.

func NewThresholdValue

func NewThresholdValue() *ThresholdValue

NewThresholdValue instantiates a new ThresholdValue object This constructor will assign default values to properties that have it defined, 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 NewThresholdValueWithDefaults

func NewThresholdValueWithDefaults() *ThresholdValue

NewThresholdValueWithDefaults instantiates a new ThresholdValue object This 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 (*ThresholdValue) GetPlrThres

func (o *ThresholdValue) GetPlrThres() int32

GetPlrThres returns the PlrThres field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThresholdValue) GetPlrThresOk

func (o *ThresholdValue) GetPlrThresOk() (*int32, bool)

GetPlrThresOk returns a tuple with the PlrThres 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 (*ThresholdValue) GetRttThres

func (o *ThresholdValue) GetRttThres() int32

GetRttThres returns the RttThres field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThresholdValue) GetRttThresOk

func (o *ThresholdValue) GetRttThresOk() (*int32, bool)

GetRttThresOk returns a tuple with the RttThres 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 (*ThresholdValue) HasPlrThres

func (o *ThresholdValue) HasPlrThres() bool

HasPlrThres returns a boolean if a field has been set.

func (*ThresholdValue) HasRttThres

func (o *ThresholdValue) HasRttThres() bool

HasRttThres returns a boolean if a field has been set.

func (ThresholdValue) MarshalJSON

func (o ThresholdValue) MarshalJSON() ([]byte, error)

func (*ThresholdValue) SetPlrThres

func (o *ThresholdValue) SetPlrThres(v int32)

SetPlrThres gets a reference to the given NullableInt32 and assigns it to the PlrThres field.

func (*ThresholdValue) SetPlrThresNil

func (o *ThresholdValue) SetPlrThresNil()

SetPlrThresNil sets the value for PlrThres to be an explicit nil

func (*ThresholdValue) SetRttThres

func (o *ThresholdValue) SetRttThres(v int32)

SetRttThres gets a reference to the given NullableInt32 and assigns it to the RttThres field.

func (*ThresholdValue) SetRttThresNil

func (o *ThresholdValue) SetRttThresNil()

SetRttThresNil sets the value for RttThres to be an explicit nil

func (ThresholdValue) ToMap

func (o ThresholdValue) ToMap() (map[string]interface{}, error)

func (*ThresholdValue) UnsetPlrThres

func (o *ThresholdValue) UnsetPlrThres()

UnsetPlrThres ensures that no value is present for PlrThres, not even an explicit nil

func (*ThresholdValue) UnsetRttThres

func (o *ThresholdValue) UnsetRttThres()

UnsetRttThres ensures that no value is present for RttThres, not even an explicit nil

type TnapId

type TnapId struct {
	// This IE shall be present if the UE is accessing the 5GC via a trusted WLAN access network.When present, it shall contain the SSID of the access point to which the UE is attached, that is received over NGAP,  see IEEE Std 802.11-2012.
	SsId *string `json:"ssId,omitempty"`
	// When present, it shall contain the BSSID of the access point to which the UE is attached, that is received over NGAP, see IEEE Std 802.11-2012.
	BssId *string `json:"bssId,omitempty"`
	// string with format 'bytes' as defined in OpenAPI
	CivicAddress *string `json:"civicAddress,omitempty"`
}

TnapId Contain the TNAP Identifier see clause5.6.2 of 3GPP TS 23.501.

func NewTnapId

func NewTnapId() *TnapId

NewTnapId instantiates a new TnapId object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTnapIdWithDefaults

func NewTnapIdWithDefaults() *TnapId

NewTnapIdWithDefaults instantiates a new TnapId object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TnapId) GetBssId

func (o *TnapId) GetBssId() string

GetBssId returns the BssId field value if set, zero value otherwise.

func (*TnapId) GetBssIdOk

func (o *TnapId) GetBssIdOk() (*string, bool)

GetBssIdOk returns a tuple with the BssId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TnapId) GetCivicAddress

func (o *TnapId) GetCivicAddress() string

GetCivicAddress returns the CivicAddress field value if set, zero value otherwise.

func (*TnapId) GetCivicAddressOk

func (o *TnapId) GetCivicAddressOk() (*string, bool)

GetCivicAddressOk returns a tuple with the CivicAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TnapId) GetSsId

func (o *TnapId) GetSsId() string

GetSsId returns the SsId field value if set, zero value otherwise.

func (*TnapId) GetSsIdOk

func (o *TnapId) GetSsIdOk() (*string, bool)

GetSsIdOk returns a tuple with the SsId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TnapId) HasBssId

func (o *TnapId) HasBssId() bool

HasBssId returns a boolean if a field has been set.

func (*TnapId) HasCivicAddress

func (o *TnapId) HasCivicAddress() bool

HasCivicAddress returns a boolean if a field has been set.

func (*TnapId) HasSsId

func (o *TnapId) HasSsId() bool

HasSsId returns a boolean if a field has been set.

func (TnapId) MarshalJSON

func (o TnapId) MarshalJSON() ([]byte, error)

func (*TnapId) SetBssId

func (o *TnapId) SetBssId(v string)

SetBssId gets a reference to the given string and assigns it to the BssId field.

func (*TnapId) SetCivicAddress

func (o *TnapId) SetCivicAddress(v string)

SetCivicAddress gets a reference to the given string and assigns it to the CivicAddress field.

func (*TnapId) SetSsId

func (o *TnapId) SetSsId(v string)

SetSsId gets a reference to the given string and assigns it to the SsId field.

func (TnapId) ToMap

func (o TnapId) ToMap() (map[string]interface{}, error)

type TraceData

type TraceData struct {
	// Trace Reference (see 3GPP TS 32.422).It shall be encoded as the concatenation of MCC, MNC and Trace ID as follows: 'MCC'<MNC'-'Trace ID'The Trace ID shall be encoded as a 3 octet string in hexadecimal representation. Each character in the Trace ID 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 Trace ID shall appear first  in the string, and the character representing the 4 least significant bit of the Trace ID shall appear last in the string.
	TraceRef   string     `json:"traceRef"`
	TraceDepth TraceDepth `json:"traceDepth"`
	// List of NE Types (see 3GPP TS 32.422).It shall be encoded as an octet string 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 shall appear first in the string, and the character representing the 4 least significant bit shall appear last in the string.Octets shall be coded according to 3GPP TS 32.422.
	NeTypeList string `json:"neTypeList"`
	// Triggering events (see 3GPP TS 32.422).It shall be encoded as an octet string 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 shall appear first in the string, and the character representing the 4 least significant bit shall appear last in the string. Octets shall be coded according to 3GPP TS 32.422.
	EventList string `json:"eventList"`
	// String identifying a IPv4 address formatted in the 'dotted decimal' notation as defined in RFC 1166.
	CollectionEntityIpv4Addr *string   `json:"collectionEntityIpv4Addr,omitempty"`
	CollectionEntityIpv6Addr *Ipv6Addr `json:"collectionEntityIpv6Addr,omitempty"`
	// List of Interfaces (see 3GPP TS 32.422).It shall be encoded as an octet string 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 shall appear first in the string, and the character representing the  4 least significant bit shall appear last in the string. Octets shall be coded according to 3GPP TS 32.422. If this attribute is not present, all the interfaces applicable to the list of NE types indicated in the neTypeList attribute should be traced.
	InterfaceList *string `json:"interfaceList,omitempty"`
}

TraceData contains Trace control and configuration parameters.

func NewTraceData

func NewTraceData(traceRef string, traceDepth TraceDepth, neTypeList string, eventList string) *TraceData

NewTraceData instantiates a new TraceData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTraceDataWithDefaults

func NewTraceDataWithDefaults() *TraceData

NewTraceDataWithDefaults instantiates a new TraceData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TraceData) GetCollectionEntityIpv4Addr

func (o *TraceData) GetCollectionEntityIpv4Addr() string

GetCollectionEntityIpv4Addr returns the CollectionEntityIpv4Addr field value if set, zero value otherwise.

func (*TraceData) GetCollectionEntityIpv4AddrOk

func (o *TraceData) GetCollectionEntityIpv4AddrOk() (*string, bool)

GetCollectionEntityIpv4AddrOk returns a tuple with the CollectionEntityIpv4Addr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TraceData) GetCollectionEntityIpv6Addr

func (o *TraceData) GetCollectionEntityIpv6Addr() Ipv6Addr

GetCollectionEntityIpv6Addr returns the CollectionEntityIpv6Addr field value if set, zero value otherwise.

func (*TraceData) GetCollectionEntityIpv6AddrOk

func (o *TraceData) GetCollectionEntityIpv6AddrOk() (*Ipv6Addr, bool)

GetCollectionEntityIpv6AddrOk returns a tuple with the CollectionEntityIpv6Addr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TraceData) GetEventList

func (o *TraceData) GetEventList() string

GetEventList returns the EventList field value

func (*TraceData) GetEventListOk

func (o *TraceData) GetEventListOk() (*string, bool)

GetEventListOk returns a tuple with the EventList field value and a boolean to check if the value has been set.

func (*TraceData) GetInterfaceList

func (o *TraceData) GetInterfaceList() string

GetInterfaceList returns the InterfaceList field value if set, zero value otherwise.

func (*TraceData) GetInterfaceListOk

func (o *TraceData) GetInterfaceListOk() (*string, bool)

GetInterfaceListOk returns a tuple with the InterfaceList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TraceData) GetNeTypeList

func (o *TraceData) GetNeTypeList() string

GetNeTypeList returns the NeTypeList field value

func (*TraceData) GetNeTypeListOk

func (o *TraceData) GetNeTypeListOk() (*string, bool)

GetNeTypeListOk returns a tuple with the NeTypeList field value and a boolean to check if the value has been set.

func (*TraceData) GetTraceDepth

func (o *TraceData) GetTraceDepth() TraceDepth

GetTraceDepth returns the TraceDepth field value

func (*TraceData) GetTraceDepthOk

func (o *TraceData) GetTraceDepthOk() (*TraceDepth, bool)

GetTraceDepthOk returns a tuple with the TraceDepth field value and a boolean to check if the value has been set.

func (*TraceData) GetTraceRef

func (o *TraceData) GetTraceRef() string

GetTraceRef returns the TraceRef field value

func (*TraceData) GetTraceRefOk

func (o *TraceData) GetTraceRefOk() (*string, bool)

GetTraceRefOk returns a tuple with the TraceRef field value and a boolean to check if the value has been set.

func (*TraceData) HasCollectionEntityIpv4Addr

func (o *TraceData) HasCollectionEntityIpv4Addr() bool

HasCollectionEntityIpv4Addr returns a boolean if a field has been set.

func (*TraceData) HasCollectionEntityIpv6Addr

func (o *TraceData) HasCollectionEntityIpv6Addr() bool

HasCollectionEntityIpv6Addr returns a boolean if a field has been set.

func (*TraceData) HasInterfaceList

func (o *TraceData) HasInterfaceList() bool

HasInterfaceList returns a boolean if a field has been set.

func (TraceData) MarshalJSON

func (o TraceData) MarshalJSON() ([]byte, error)

func (*TraceData) SetCollectionEntityIpv4Addr

func (o *TraceData) SetCollectionEntityIpv4Addr(v string)

SetCollectionEntityIpv4Addr gets a reference to the given string and assigns it to the CollectionEntityIpv4Addr field.

func (*TraceData) SetCollectionEntityIpv6Addr

func (o *TraceData) SetCollectionEntityIpv6Addr(v Ipv6Addr)

SetCollectionEntityIpv6Addr gets a reference to the given Ipv6Addr and assigns it to the CollectionEntityIpv6Addr field.

func (*TraceData) SetEventList

func (o *TraceData) SetEventList(v string)

SetEventList sets field value

func (*TraceData) SetInterfaceList

func (o *TraceData) SetInterfaceList(v string)

SetInterfaceList gets a reference to the given string and assigns it to the InterfaceList field.

func (*TraceData) SetNeTypeList

func (o *TraceData) SetNeTypeList(v string)

SetNeTypeList sets field value

func (*TraceData) SetTraceDepth

func (o *TraceData) SetTraceDepth(v TraceDepth)

SetTraceDepth sets field value

func (*TraceData) SetTraceRef

func (o *TraceData) SetTraceRef(v string)

SetTraceRef sets field value

func (TraceData) ToMap

func (o TraceData) ToMap() (map[string]interface{}, error)

type TraceDepth

type TraceDepth struct {
	String *string
}

TraceDepth The enumeration TraceDepth defines how detailed information should be recorded in the trace. See 3GPP TS 32.422 for further description of the values. It shall comply with the provisions defined in table 5.6.3.1-1

func (*TraceDepth) MarshalJSON

func (src *TraceDepth) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*TraceDepth) UnmarshalJSON

func (dst *TraceDepth) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type TrafficControlData

type TrafficControlData struct {
	// Univocally identifies the traffic control policy data within a PDU session.
	TcId            string                `json:"tcId"`
	FlowStatus      *FlowStatus           `json:"flowStatus,omitempty"`
	RedirectInfo    *RedirectInformation  `json:"redirectInfo,omitempty"`
	AddRedirectInfo []RedirectInformation `json:"addRedirectInfo,omitempty"`
	// Indicates whether applicat'on's start or stop notification is to be muted.
	MuteNotif *bool `json:"muteNotif,omitempty"`
	// Reference to a pre-configured traffic steering policy for downlink traffic at the SMF.
	TrafficSteeringPolIdDl NullableString `json:"trafficSteeringPolIdDl,omitempty"`
	// Reference to a pre-configured traffic steering policy for uplink traffic at the SMF.
	TrafficSteeringPolIdUl NullableString `json:"trafficSteeringPolIdUl,omitempty"`
	// A list of location which the traffic shall be routed to for the AF request
	RouteToLocs []RouteToLocation `json:"routeToLocs,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible with the OpenAPI 'nullable: true' property.
	MaxAllowedUpLat NullableInt32 `json:"maxAllowedUpLat,omitempty"`
	// Contains EAS IP replacement information.
	EasIpReplaceInfos []EasIpReplacementInfo `json:"easIpReplaceInfos,omitempty"`
	TraffCorreInd     *bool                  `json:"traffCorreInd,omitempty"`
	// Indicates whether simultaneous connectivity should be temporarily maintained for the  source and target PSA.
	SimConnInd *bool `json:"simConnInd,omitempty"`
	// indicating a time in seconds.
	SimConnTerm    *int32                  `json:"simConnTerm,omitempty"`
	UpPathChgEvent NullableUpPathChgEvent  `json:"upPathChgEvent,omitempty"`
	SteerFun       *SteeringFunctionality  `json:"steerFun,omitempty"`
	SteerModeDl    *SteeringMode           `json:"steerModeDl,omitempty"`
	SteerModeUl    *SteeringMode           `json:"steerModeUl,omitempty"`
	MulAccCtrl     *MulticastAccessControl `json:"mulAccCtrl,omitempty"`
}

TrafficControlData Contains parameters determining how flows associated with a PCC Rule are treated (e.g. blocked, redirected, etc).

func NewTrafficControlData

func NewTrafficControlData(tcId string) *TrafficControlData

NewTrafficControlData instantiates a new TrafficControlData object This constructor will assign default values to properties that have it defined, 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 NewTrafficControlDataWithDefaults

func NewTrafficControlDataWithDefaults() *TrafficControlData

NewTrafficControlDataWithDefaults instantiates a new TrafficControlData object This 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 (*TrafficControlData) GetAddRedirectInfo

func (o *TrafficControlData) GetAddRedirectInfo() []RedirectInformation

GetAddRedirectInfo returns the AddRedirectInfo field value if set, zero value otherwise.

func (*TrafficControlData) GetAddRedirectInfoOk

func (o *TrafficControlData) GetAddRedirectInfoOk() ([]RedirectInformation, bool)

GetAddRedirectInfoOk returns a tuple with the AddRedirectInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrafficControlData) GetEasIpReplaceInfos

func (o *TrafficControlData) GetEasIpReplaceInfos() []EasIpReplacementInfo

GetEasIpReplaceInfos returns the EasIpReplaceInfos field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TrafficControlData) GetEasIpReplaceInfosOk

func (o *TrafficControlData) GetEasIpReplaceInfosOk() ([]EasIpReplacementInfo, bool)

GetEasIpReplaceInfosOk returns a tuple with the EasIpReplaceInfos 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 (*TrafficControlData) GetFlowStatus

func (o *TrafficControlData) GetFlowStatus() FlowStatus

GetFlowStatus returns the FlowStatus field value if set, zero value otherwise.

func (*TrafficControlData) GetFlowStatusOk

func (o *TrafficControlData) GetFlowStatusOk() (*FlowStatus, bool)

GetFlowStatusOk returns a tuple with the FlowStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrafficControlData) GetMaxAllowedUpLat

func (o *TrafficControlData) GetMaxAllowedUpLat() int32

GetMaxAllowedUpLat returns the MaxAllowedUpLat field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TrafficControlData) GetMaxAllowedUpLatOk

func (o *TrafficControlData) GetMaxAllowedUpLatOk() (*int32, bool)

GetMaxAllowedUpLatOk returns a tuple with the MaxAllowedUpLat 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 (*TrafficControlData) GetMulAccCtrl

func (o *TrafficControlData) GetMulAccCtrl() MulticastAccessControl

GetMulAccCtrl returns the MulAccCtrl field value if set, zero value otherwise.

func (*TrafficControlData) GetMulAccCtrlOk

func (o *TrafficControlData) GetMulAccCtrlOk() (*MulticastAccessControl, bool)

GetMulAccCtrlOk returns a tuple with the MulAccCtrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrafficControlData) GetMuteNotif

func (o *TrafficControlData) GetMuteNotif() bool

GetMuteNotif returns the MuteNotif field value if set, zero value otherwise.

func (*TrafficControlData) GetMuteNotifOk

func (o *TrafficControlData) GetMuteNotifOk() (*bool, bool)

GetMuteNotifOk returns a tuple with the MuteNotif field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrafficControlData) GetRedirectInfo

func (o *TrafficControlData) GetRedirectInfo() RedirectInformation

GetRedirectInfo returns the RedirectInfo field value if set, zero value otherwise.

func (*TrafficControlData) GetRedirectInfoOk

func (o *TrafficControlData) GetRedirectInfoOk() (*RedirectInformation, bool)

GetRedirectInfoOk returns a tuple with the RedirectInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrafficControlData) GetRouteToLocs

func (o *TrafficControlData) GetRouteToLocs() []RouteToLocation

GetRouteToLocs returns the RouteToLocs field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TrafficControlData) GetRouteToLocsOk

func (o *TrafficControlData) GetRouteToLocsOk() ([]RouteToLocation, bool)

GetRouteToLocsOk returns a tuple with the RouteToLocs 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 (*TrafficControlData) GetSimConnInd

func (o *TrafficControlData) GetSimConnInd() bool

GetSimConnInd returns the SimConnInd field value if set, zero value otherwise.

func (*TrafficControlData) GetSimConnIndOk

func (o *TrafficControlData) GetSimConnIndOk() (*bool, bool)

GetSimConnIndOk returns a tuple with the SimConnInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrafficControlData) GetSimConnTerm

func (o *TrafficControlData) GetSimConnTerm() int32

GetSimConnTerm returns the SimConnTerm field value if set, zero value otherwise.

func (*TrafficControlData) GetSimConnTermOk

func (o *TrafficControlData) GetSimConnTermOk() (*int32, bool)

GetSimConnTermOk returns a tuple with the SimConnTerm field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrafficControlData) GetSteerFun

func (o *TrafficControlData) GetSteerFun() SteeringFunctionality

GetSteerFun returns the SteerFun field value if set, zero value otherwise.

func (*TrafficControlData) GetSteerFunOk

func (o *TrafficControlData) GetSteerFunOk() (*SteeringFunctionality, bool)

GetSteerFunOk returns a tuple with the SteerFun field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrafficControlData) GetSteerModeDl

func (o *TrafficControlData) GetSteerModeDl() SteeringMode

GetSteerModeDl returns the SteerModeDl field value if set, zero value otherwise.

func (*TrafficControlData) GetSteerModeDlOk

func (o *TrafficControlData) GetSteerModeDlOk() (*SteeringMode, bool)

GetSteerModeDlOk returns a tuple with the SteerModeDl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrafficControlData) GetSteerModeUl

func (o *TrafficControlData) GetSteerModeUl() SteeringMode

GetSteerModeUl returns the SteerModeUl field value if set, zero value otherwise.

func (*TrafficControlData) GetSteerModeUlOk

func (o *TrafficControlData) GetSteerModeUlOk() (*SteeringMode, bool)

GetSteerModeUlOk returns a tuple with the SteerModeUl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrafficControlData) GetTcId

func (o *TrafficControlData) GetTcId() string

GetTcId returns the TcId field value

func (*TrafficControlData) GetTcIdOk

func (o *TrafficControlData) GetTcIdOk() (*string, bool)

GetTcIdOk returns a tuple with the TcId field value and a boolean to check if the value has been set.

func (*TrafficControlData) GetTraffCorreInd

func (o *TrafficControlData) GetTraffCorreInd() bool

GetTraffCorreInd returns the TraffCorreInd field value if set, zero value otherwise.

func (*TrafficControlData) GetTraffCorreIndOk

func (o *TrafficControlData) GetTraffCorreIndOk() (*bool, bool)

GetTraffCorreIndOk returns a tuple with the TraffCorreInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrafficControlData) GetTrafficSteeringPolIdDl

func (o *TrafficControlData) GetTrafficSteeringPolIdDl() string

GetTrafficSteeringPolIdDl returns the TrafficSteeringPolIdDl field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TrafficControlData) GetTrafficSteeringPolIdDlOk

func (o *TrafficControlData) GetTrafficSteeringPolIdDlOk() (*string, bool)

GetTrafficSteeringPolIdDlOk returns a tuple with the TrafficSteeringPolIdDl 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 (*TrafficControlData) GetTrafficSteeringPolIdUl

func (o *TrafficControlData) GetTrafficSteeringPolIdUl() string

GetTrafficSteeringPolIdUl returns the TrafficSteeringPolIdUl field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TrafficControlData) GetTrafficSteeringPolIdUlOk

func (o *TrafficControlData) GetTrafficSteeringPolIdUlOk() (*string, bool)

GetTrafficSteeringPolIdUlOk returns a tuple with the TrafficSteeringPolIdUl 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 (*TrafficControlData) GetUpPathChgEvent

func (o *TrafficControlData) GetUpPathChgEvent() UpPathChgEvent

GetUpPathChgEvent returns the UpPathChgEvent field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TrafficControlData) GetUpPathChgEventOk

func (o *TrafficControlData) GetUpPathChgEventOk() (*UpPathChgEvent, bool)

GetUpPathChgEventOk returns a tuple with the UpPathChgEvent 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 (*TrafficControlData) HasAddRedirectInfo

func (o *TrafficControlData) HasAddRedirectInfo() bool

HasAddRedirectInfo returns a boolean if a field has been set.

func (*TrafficControlData) HasEasIpReplaceInfos

func (o *TrafficControlData) HasEasIpReplaceInfos() bool

HasEasIpReplaceInfos returns a boolean if a field has been set.

func (*TrafficControlData) HasFlowStatus

func (o *TrafficControlData) HasFlowStatus() bool

HasFlowStatus returns a boolean if a field has been set.

func (*TrafficControlData) HasMaxAllowedUpLat

func (o *TrafficControlData) HasMaxAllowedUpLat() bool

HasMaxAllowedUpLat returns a boolean if a field has been set.

func (*TrafficControlData) HasMulAccCtrl

func (o *TrafficControlData) HasMulAccCtrl() bool

HasMulAccCtrl returns a boolean if a field has been set.

func (*TrafficControlData) HasMuteNotif

func (o *TrafficControlData) HasMuteNotif() bool

HasMuteNotif returns a boolean if a field has been set.

func (*TrafficControlData) HasRedirectInfo

func (o *TrafficControlData) HasRedirectInfo() bool

HasRedirectInfo returns a boolean if a field has been set.

func (*TrafficControlData) HasRouteToLocs

func (o *TrafficControlData) HasRouteToLocs() bool

HasRouteToLocs returns a boolean if a field has been set.

func (*TrafficControlData) HasSimConnInd

func (o *TrafficControlData) HasSimConnInd() bool

HasSimConnInd returns a boolean if a field has been set.

func (*TrafficControlData) HasSimConnTerm

func (o *TrafficControlData) HasSimConnTerm() bool

HasSimConnTerm returns a boolean if a field has been set.

func (*TrafficControlData) HasSteerFun

func (o *TrafficControlData) HasSteerFun() bool

HasSteerFun returns a boolean if a field has been set.

func (*TrafficControlData) HasSteerModeDl

func (o *TrafficControlData) HasSteerModeDl() bool

HasSteerModeDl returns a boolean if a field has been set.

func (*TrafficControlData) HasSteerModeUl

func (o *TrafficControlData) HasSteerModeUl() bool

HasSteerModeUl returns a boolean if a field has been set.

func (*TrafficControlData) HasTraffCorreInd

func (o *TrafficControlData) HasTraffCorreInd() bool

HasTraffCorreInd returns a boolean if a field has been set.

func (*TrafficControlData) HasTrafficSteeringPolIdDl

func (o *TrafficControlData) HasTrafficSteeringPolIdDl() bool

HasTrafficSteeringPolIdDl returns a boolean if a field has been set.

func (*TrafficControlData) HasTrafficSteeringPolIdUl

func (o *TrafficControlData) HasTrafficSteeringPolIdUl() bool

HasTrafficSteeringPolIdUl returns a boolean if a field has been set.

func (*TrafficControlData) HasUpPathChgEvent

func (o *TrafficControlData) HasUpPathChgEvent() bool

HasUpPathChgEvent returns a boolean if a field has been set.

func (TrafficControlData) MarshalJSON

func (o TrafficControlData) MarshalJSON() ([]byte, error)

func (*TrafficControlData) SetAddRedirectInfo

func (o *TrafficControlData) SetAddRedirectInfo(v []RedirectInformation)

SetAddRedirectInfo gets a reference to the given []RedirectInformation and assigns it to the AddRedirectInfo field.

func (*TrafficControlData) SetEasIpReplaceInfos

func (o *TrafficControlData) SetEasIpReplaceInfos(v []EasIpReplacementInfo)

SetEasIpReplaceInfos gets a reference to the given []EasIpReplacementInfo and assigns it to the EasIpReplaceInfos field.

func (*TrafficControlData) SetFlowStatus

func (o *TrafficControlData) SetFlowStatus(v FlowStatus)

SetFlowStatus gets a reference to the given FlowStatus and assigns it to the FlowStatus field.

func (*TrafficControlData) SetMaxAllowedUpLat

func (o *TrafficControlData) SetMaxAllowedUpLat(v int32)

SetMaxAllowedUpLat gets a reference to the given NullableInt32 and assigns it to the MaxAllowedUpLat field.

func (*TrafficControlData) SetMaxAllowedUpLatNil

func (o *TrafficControlData) SetMaxAllowedUpLatNil()

SetMaxAllowedUpLatNil sets the value for MaxAllowedUpLat to be an explicit nil

func (*TrafficControlData) SetMulAccCtrl

func (o *TrafficControlData) SetMulAccCtrl(v MulticastAccessControl)

SetMulAccCtrl gets a reference to the given MulticastAccessControl and assigns it to the MulAccCtrl field.

func (*TrafficControlData) SetMuteNotif

func (o *TrafficControlData) SetMuteNotif(v bool)

SetMuteNotif gets a reference to the given bool and assigns it to the MuteNotif field.

func (*TrafficControlData) SetRedirectInfo

func (o *TrafficControlData) SetRedirectInfo(v RedirectInformation)

SetRedirectInfo gets a reference to the given RedirectInformation and assigns it to the RedirectInfo field.

func (*TrafficControlData) SetRouteToLocs

func (o *TrafficControlData) SetRouteToLocs(v []RouteToLocation)

SetRouteToLocs gets a reference to the given []RouteToLocation and assigns it to the RouteToLocs field.

func (*TrafficControlData) SetSimConnInd

func (o *TrafficControlData) SetSimConnInd(v bool)

SetSimConnInd gets a reference to the given bool and assigns it to the SimConnInd field.

func (*TrafficControlData) SetSimConnTerm

func (o *TrafficControlData) SetSimConnTerm(v int32)

SetSimConnTerm gets a reference to the given int32 and assigns it to the SimConnTerm field.

func (*TrafficControlData) SetSteerFun

func (o *TrafficControlData) SetSteerFun(v SteeringFunctionality)

SetSteerFun gets a reference to the given SteeringFunctionality and assigns it to the SteerFun field.

func (*TrafficControlData) SetSteerModeDl

func (o *TrafficControlData) SetSteerModeDl(v SteeringMode)

SetSteerModeDl gets a reference to the given SteeringMode and assigns it to the SteerModeDl field.

func (*TrafficControlData) SetSteerModeUl

func (o *TrafficControlData) SetSteerModeUl(v SteeringMode)

SetSteerModeUl gets a reference to the given SteeringMode and assigns it to the SteerModeUl field.

func (*TrafficControlData) SetTcId

func (o *TrafficControlData) SetTcId(v string)

SetTcId sets field value

func (*TrafficControlData) SetTraffCorreInd

func (o *TrafficControlData) SetTraffCorreInd(v bool)

SetTraffCorreInd gets a reference to the given bool and assigns it to the TraffCorreInd field.

func (*TrafficControlData) SetTrafficSteeringPolIdDl

func (o *TrafficControlData) SetTrafficSteeringPolIdDl(v string)

SetTrafficSteeringPolIdDl gets a reference to the given NullableString and assigns it to the TrafficSteeringPolIdDl field.

func (*TrafficControlData) SetTrafficSteeringPolIdDlNil

func (o *TrafficControlData) SetTrafficSteeringPolIdDlNil()

SetTrafficSteeringPolIdDlNil sets the value for TrafficSteeringPolIdDl to be an explicit nil

func (*TrafficControlData) SetTrafficSteeringPolIdUl

func (o *TrafficControlData) SetTrafficSteeringPolIdUl(v string)

SetTrafficSteeringPolIdUl gets a reference to the given NullableString and assigns it to the TrafficSteeringPolIdUl field.

func (*TrafficControlData) SetTrafficSteeringPolIdUlNil

func (o *TrafficControlData) SetTrafficSteeringPolIdUlNil()

SetTrafficSteeringPolIdUlNil sets the value for TrafficSteeringPolIdUl to be an explicit nil

func (*TrafficControlData) SetUpPathChgEvent

func (o *TrafficControlData) SetUpPathChgEvent(v UpPathChgEvent)

SetUpPathChgEvent gets a reference to the given NullableUpPathChgEvent and assigns it to the UpPathChgEvent field.

func (*TrafficControlData) SetUpPathChgEventNil

func (o *TrafficControlData) SetUpPathChgEventNil()

SetUpPathChgEventNil sets the value for UpPathChgEvent to be an explicit nil

func (TrafficControlData) ToMap

func (o TrafficControlData) ToMap() (map[string]interface{}, error)

func (*TrafficControlData) UnsetMaxAllowedUpLat

func (o *TrafficControlData) UnsetMaxAllowedUpLat()

UnsetMaxAllowedUpLat ensures that no value is present for MaxAllowedUpLat, not even an explicit nil

func (*TrafficControlData) UnsetTrafficSteeringPolIdDl

func (o *TrafficControlData) UnsetTrafficSteeringPolIdDl()

UnsetTrafficSteeringPolIdDl ensures that no value is present for TrafficSteeringPolIdDl, not even an explicit nil

func (*TrafficControlData) UnsetTrafficSteeringPolIdUl

func (o *TrafficControlData) UnsetTrafficSteeringPolIdUl()

UnsetTrafficSteeringPolIdUl ensures that no value is present for TrafficSteeringPolIdUl, not even an explicit nil

func (*TrafficControlData) UnsetUpPathChgEvent

func (o *TrafficControlData) UnsetUpPathChgEvent()

UnsetUpPathChgEvent ensures that no value is present for UpPathChgEvent, not even an explicit nil

type TransportProtocol

type TransportProtocol struct {
	String *string
}

TransportProtocol Possible values are: - UDP: User Datagram Protocol. - TCP: Transmission Control Protocol.

func (*TransportProtocol) MarshalJSON

func (src *TransportProtocol) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*TransportProtocol) UnmarshalJSON

func (dst *TransportProtocol) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type TscaiInputContainer

type TscaiInputContainer struct {
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	Periodicity *int32 `json:"periodicity,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	BurstArrivalTime *time.Time `json:"burstArrivalTime,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	SurTimeInNumMsg *int32 `json:"surTimeInNumMsg,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	SurTimeInTime *int32 `json:"surTimeInTime,omitempty"`
}

TscaiInputContainer Indicates TSC Traffic pattern.

func NewTscaiInputContainer

func NewTscaiInputContainer() *TscaiInputContainer

NewTscaiInputContainer instantiates a new TscaiInputContainer object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTscaiInputContainerWithDefaults

func NewTscaiInputContainerWithDefaults() *TscaiInputContainer

NewTscaiInputContainerWithDefaults instantiates a new TscaiInputContainer object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TscaiInputContainer) GetBurstArrivalTime

func (o *TscaiInputContainer) GetBurstArrivalTime() time.Time

GetBurstArrivalTime returns the BurstArrivalTime field value if set, zero value otherwise.

func (*TscaiInputContainer) GetBurstArrivalTimeOk

func (o *TscaiInputContainer) GetBurstArrivalTimeOk() (*time.Time, bool)

GetBurstArrivalTimeOk returns a tuple with the BurstArrivalTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TscaiInputContainer) GetPeriodicity

func (o *TscaiInputContainer) GetPeriodicity() int32

GetPeriodicity returns the Periodicity field value if set, zero value otherwise.

func (*TscaiInputContainer) GetPeriodicityOk

func (o *TscaiInputContainer) GetPeriodicityOk() (*int32, bool)

GetPeriodicityOk returns a tuple with the Periodicity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TscaiInputContainer) GetSurTimeInNumMsg

func (o *TscaiInputContainer) GetSurTimeInNumMsg() int32

GetSurTimeInNumMsg returns the SurTimeInNumMsg field value if set, zero value otherwise.

func (*TscaiInputContainer) GetSurTimeInNumMsgOk

func (o *TscaiInputContainer) GetSurTimeInNumMsgOk() (*int32, bool)

GetSurTimeInNumMsgOk returns a tuple with the SurTimeInNumMsg field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TscaiInputContainer) GetSurTimeInTime

func (o *TscaiInputContainer) GetSurTimeInTime() int32

GetSurTimeInTime returns the SurTimeInTime field value if set, zero value otherwise.

func (*TscaiInputContainer) GetSurTimeInTimeOk

func (o *TscaiInputContainer) GetSurTimeInTimeOk() (*int32, bool)

GetSurTimeInTimeOk returns a tuple with the SurTimeInTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TscaiInputContainer) HasBurstArrivalTime

func (o *TscaiInputContainer) HasBurstArrivalTime() bool

HasBurstArrivalTime returns a boolean if a field has been set.

func (*TscaiInputContainer) HasPeriodicity

func (o *TscaiInputContainer) HasPeriodicity() bool

HasPeriodicity returns a boolean if a field has been set.

func (*TscaiInputContainer) HasSurTimeInNumMsg

func (o *TscaiInputContainer) HasSurTimeInNumMsg() bool

HasSurTimeInNumMsg returns a boolean if a field has been set.

func (*TscaiInputContainer) HasSurTimeInTime

func (o *TscaiInputContainer) HasSurTimeInTime() bool

HasSurTimeInTime returns a boolean if a field has been set.

func (TscaiInputContainer) MarshalJSON

func (o TscaiInputContainer) MarshalJSON() ([]byte, error)

func (*TscaiInputContainer) SetBurstArrivalTime

func (o *TscaiInputContainer) SetBurstArrivalTime(v time.Time)

SetBurstArrivalTime gets a reference to the given time.Time and assigns it to the BurstArrivalTime field.

func (*TscaiInputContainer) SetPeriodicity

func (o *TscaiInputContainer) SetPeriodicity(v int32)

SetPeriodicity gets a reference to the given int32 and assigns it to the Periodicity field.

func (*TscaiInputContainer) SetSurTimeInNumMsg

func (o *TscaiInputContainer) SetSurTimeInNumMsg(v int32)

SetSurTimeInNumMsg gets a reference to the given int32 and assigns it to the SurTimeInNumMsg field.

func (*TscaiInputContainer) SetSurTimeInTime

func (o *TscaiInputContainer) SetSurTimeInTime(v int32)

SetSurTimeInTime gets a reference to the given int32 and assigns it to the SurTimeInTime field.

func (TscaiInputContainer) ToMap

func (o TscaiInputContainer) ToMap() (map[string]interface{}, error)

type TsnBridgeInfo

type TsnBridgeInfo struct {
	// Integer where the allowed values correspond to the value range of an unsigned 64-bit integer.
	BridgeId *int32 `json:"bridgeId,omitempty"`
	// String identifying a MAC address formatted in the hexadecimal notation according to clause 1.1 and clause 2.1 of RFC 7042.
	DsttAddr *string `json:"dsttAddr,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	DsttPortNum *int32 `json:"dsttPortNum,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	DsttResidTime *int32 `json:"dsttResidTime,omitempty"`
}

TsnBridgeInfo Contains parameters that describe and identify the TSC user plane node.

func NewTsnBridgeInfo

func NewTsnBridgeInfo() *TsnBridgeInfo

NewTsnBridgeInfo instantiates a new TsnBridgeInfo object This constructor will assign default values to properties that have it defined, 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 NewTsnBridgeInfoWithDefaults

func NewTsnBridgeInfoWithDefaults() *TsnBridgeInfo

NewTsnBridgeInfoWithDefaults instantiates a new TsnBridgeInfo object This 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 (*TsnBridgeInfo) GetBridgeId

func (o *TsnBridgeInfo) GetBridgeId() int32

GetBridgeId returns the BridgeId field value if set, zero value otherwise.

func (*TsnBridgeInfo) GetBridgeIdOk

func (o *TsnBridgeInfo) GetBridgeIdOk() (*int32, bool)

GetBridgeIdOk returns a tuple with the BridgeId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TsnBridgeInfo) GetDsttAddr

func (o *TsnBridgeInfo) GetDsttAddr() string

GetDsttAddr returns the DsttAddr field value if set, zero value otherwise.

func (*TsnBridgeInfo) GetDsttAddrOk

func (o *TsnBridgeInfo) GetDsttAddrOk() (*string, bool)

GetDsttAddrOk returns a tuple with the DsttAddr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TsnBridgeInfo) GetDsttPortNum

func (o *TsnBridgeInfo) GetDsttPortNum() int32

GetDsttPortNum returns the DsttPortNum field value if set, zero value otherwise.

func (*TsnBridgeInfo) GetDsttPortNumOk

func (o *TsnBridgeInfo) GetDsttPortNumOk() (*int32, bool)

GetDsttPortNumOk returns a tuple with the DsttPortNum field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TsnBridgeInfo) GetDsttResidTime

func (o *TsnBridgeInfo) GetDsttResidTime() int32

GetDsttResidTime returns the DsttResidTime field value if set, zero value otherwise.

func (*TsnBridgeInfo) GetDsttResidTimeOk

func (o *TsnBridgeInfo) GetDsttResidTimeOk() (*int32, bool)

GetDsttResidTimeOk returns a tuple with the DsttResidTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TsnBridgeInfo) HasBridgeId

func (o *TsnBridgeInfo) HasBridgeId() bool

HasBridgeId returns a boolean if a field has been set.

func (*TsnBridgeInfo) HasDsttAddr

func (o *TsnBridgeInfo) HasDsttAddr() bool

HasDsttAddr returns a boolean if a field has been set.

func (*TsnBridgeInfo) HasDsttPortNum

func (o *TsnBridgeInfo) HasDsttPortNum() bool

HasDsttPortNum returns a boolean if a field has been set.

func (*TsnBridgeInfo) HasDsttResidTime

func (o *TsnBridgeInfo) HasDsttResidTime() bool

HasDsttResidTime returns a boolean if a field has been set.

func (TsnBridgeInfo) MarshalJSON

func (o TsnBridgeInfo) MarshalJSON() ([]byte, error)

func (*TsnBridgeInfo) SetBridgeId

func (o *TsnBridgeInfo) SetBridgeId(v int32)

SetBridgeId gets a reference to the given int32 and assigns it to the BridgeId field.

func (*TsnBridgeInfo) SetDsttAddr

func (o *TsnBridgeInfo) SetDsttAddr(v string)

SetDsttAddr gets a reference to the given string and assigns it to the DsttAddr field.

func (*TsnBridgeInfo) SetDsttPortNum

func (o *TsnBridgeInfo) SetDsttPortNum(v int32)

SetDsttPortNum gets a reference to the given int32 and assigns it to the DsttPortNum field.

func (*TsnBridgeInfo) SetDsttResidTime

func (o *TsnBridgeInfo) SetDsttResidTime(v int32)

SetDsttResidTime gets a reference to the given int32 and assigns it to the DsttResidTime field.

func (TsnBridgeInfo) ToMap

func (o TsnBridgeInfo) ToMap() (map[string]interface{}, error)

type TwapId

type TwapId struct {
	// This IE shall contain the SSID of the access point to which the UE is attached, that is received over NGAP, see IEEE Std 802.11-2012.
	SsId string `json:"ssId"`
	// When present, it shall contain the BSSID of the access point to which the UE is attached, for trusted WLAN access, see IEEE Std 802.11-2012.
	BssId *string `json:"bssId,omitempty"`
	// string with format 'bytes' as defined in OpenAPI
	CivicAddress *string `json:"civicAddress,omitempty"`
}

TwapId Contain the TWAP Identifier as defined in clause 4.2.8.5.3 of 3GPP TS 23.501 or the WLAN location information as defined in clause 4.5.7.2.8 of 3GPP TS 23.402.

func NewTwapId

func NewTwapId(ssId string) *TwapId

NewTwapId instantiates a new TwapId object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTwapIdWithDefaults

func NewTwapIdWithDefaults() *TwapId

NewTwapIdWithDefaults instantiates a new TwapId object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TwapId) GetBssId

func (o *TwapId) GetBssId() string

GetBssId returns the BssId field value if set, zero value otherwise.

func (*TwapId) GetBssIdOk

func (o *TwapId) GetBssIdOk() (*string, bool)

GetBssIdOk returns a tuple with the BssId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TwapId) GetCivicAddress

func (o *TwapId) GetCivicAddress() string

GetCivicAddress returns the CivicAddress field value if set, zero value otherwise.

func (*TwapId) GetCivicAddressOk

func (o *TwapId) GetCivicAddressOk() (*string, bool)

GetCivicAddressOk returns a tuple with the CivicAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TwapId) GetSsId

func (o *TwapId) GetSsId() string

GetSsId returns the SsId field value

func (*TwapId) GetSsIdOk

func (o *TwapId) GetSsIdOk() (*string, bool)

GetSsIdOk returns a tuple with the SsId field value and a boolean to check if the value has been set.

func (*TwapId) HasBssId

func (o *TwapId) HasBssId() bool

HasBssId returns a boolean if a field has been set.

func (*TwapId) HasCivicAddress

func (o *TwapId) HasCivicAddress() bool

HasCivicAddress returns a boolean if a field has been set.

func (TwapId) MarshalJSON

func (o TwapId) MarshalJSON() ([]byte, error)

func (*TwapId) SetBssId

func (o *TwapId) SetBssId(v string)

SetBssId gets a reference to the given string and assigns it to the BssId field.

func (*TwapId) SetCivicAddress

func (o *TwapId) SetCivicAddress(v string)

SetCivicAddress gets a reference to the given string and assigns it to the CivicAddress field.

func (*TwapId) SetSsId

func (o *TwapId) SetSsId(v string)

SetSsId sets field value

func (TwapId) ToMap

func (o TwapId) ToMap() (map[string]interface{}, error)

type UeCampingRep

type UeCampingRep struct {
	AccessType       *AccessType        `json:"accessType,omitempty"`
	RatType          *RatType           `json:"ratType,omitempty"`
	ServNfId         *ServingNfIdentity `json:"servNfId,omitempty"`
	ServingNetwork   *PlmnIdNid         `json:"servingNetwork,omitempty"`
	UserLocationInfo *UserLocation      `json:"userLocationInfo,omitempty"`
	// String with format \"time-numoffset\" optionally appended by \"daylightSavingTime\", where  - \"time-numoffset\" shall represent the time zone adjusted for daylight saving time and be    encoded as time-numoffset as defined in clause 5.6 of IETF RFC 3339;  - \"daylightSavingTime\" shall represent the adjustment that has been made and shall be    encoded as \"+1\" or \"+2\" for a +1 or +2 hours adjustment.   The example is for 8 hours behind UTC, +1 hour adjustment for Daylight Saving Time.
	UeTimeZone          *string                    `json:"ueTimeZone,omitempty"`
	NetLocAccSupp       *NetLocAccessSupport       `json:"netLocAccSupp,omitempty"`
	SatBackhaulCategory *SatelliteBackhaulCategory `json:"satBackhaulCategory,omitempty"`
}

UeCampingRep Contains the current applicable values corresponding to the policy control request triggers.

func NewUeCampingRep

func NewUeCampingRep() *UeCampingRep

NewUeCampingRep instantiates a new UeCampingRep object This constructor will assign default values to properties that have it defined, 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 NewUeCampingRepWithDefaults

func NewUeCampingRepWithDefaults() *UeCampingRep

NewUeCampingRepWithDefaults instantiates a new UeCampingRep object This 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 (*UeCampingRep) GetAccessType

func (o *UeCampingRep) GetAccessType() AccessType

GetAccessType returns the AccessType field value if set, zero value otherwise.

func (*UeCampingRep) GetAccessTypeOk

func (o *UeCampingRep) GetAccessTypeOk() (*AccessType, bool)

GetAccessTypeOk returns a tuple with the AccessType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UeCampingRep) GetNetLocAccSupp

func (o *UeCampingRep) GetNetLocAccSupp() NetLocAccessSupport

GetNetLocAccSupp returns the NetLocAccSupp field value if set, zero value otherwise.

func (*UeCampingRep) GetNetLocAccSuppOk

func (o *UeCampingRep) GetNetLocAccSuppOk() (*NetLocAccessSupport, bool)

GetNetLocAccSuppOk returns a tuple with the NetLocAccSupp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UeCampingRep) GetRatType

func (o *UeCampingRep) GetRatType() RatType

GetRatType returns the RatType field value if set, zero value otherwise.

func (*UeCampingRep) GetRatTypeOk

func (o *UeCampingRep) 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 (*UeCampingRep) GetSatBackhaulCategory

func (o *UeCampingRep) GetSatBackhaulCategory() SatelliteBackhaulCategory

GetSatBackhaulCategory returns the SatBackhaulCategory field value if set, zero value otherwise.

func (*UeCampingRep) GetSatBackhaulCategoryOk

func (o *UeCampingRep) GetSatBackhaulCategoryOk() (*SatelliteBackhaulCategory, bool)

GetSatBackhaulCategoryOk returns a tuple with the SatBackhaulCategory field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UeCampingRep) GetServNfId

func (o *UeCampingRep) GetServNfId() ServingNfIdentity

GetServNfId returns the ServNfId field value if set, zero value otherwise.

func (*UeCampingRep) GetServNfIdOk

func (o *UeCampingRep) GetServNfIdOk() (*ServingNfIdentity, bool)

GetServNfIdOk returns a tuple with the ServNfId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UeCampingRep) GetServingNetwork

func (o *UeCampingRep) GetServingNetwork() PlmnIdNid

GetServingNetwork returns the ServingNetwork field value if set, zero value otherwise.

func (*UeCampingRep) GetServingNetworkOk

func (o *UeCampingRep) GetServingNetworkOk() (*PlmnIdNid, bool)

GetServingNetworkOk returns a tuple with the ServingNetwork field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UeCampingRep) GetUeTimeZone

func (o *UeCampingRep) GetUeTimeZone() string

GetUeTimeZone returns the UeTimeZone field value if set, zero value otherwise.

func (*UeCampingRep) GetUeTimeZoneOk

func (o *UeCampingRep) GetUeTimeZoneOk() (*string, bool)

GetUeTimeZoneOk returns a tuple with the UeTimeZone field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UeCampingRep) GetUserLocationInfo

func (o *UeCampingRep) GetUserLocationInfo() UserLocation

GetUserLocationInfo returns the UserLocationInfo field value if set, zero value otherwise.

func (*UeCampingRep) GetUserLocationInfoOk

func (o *UeCampingRep) GetUserLocationInfoOk() (*UserLocation, bool)

GetUserLocationInfoOk returns a tuple with the UserLocationInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UeCampingRep) HasAccessType

func (o *UeCampingRep) HasAccessType() bool

HasAccessType returns a boolean if a field has been set.

func (*UeCampingRep) HasNetLocAccSupp

func (o *UeCampingRep) HasNetLocAccSupp() bool

HasNetLocAccSupp returns a boolean if a field has been set.

func (*UeCampingRep) HasRatType

func (o *UeCampingRep) HasRatType() bool

HasRatType returns a boolean if a field has been set.

func (*UeCampingRep) HasSatBackhaulCategory

func (o *UeCampingRep) HasSatBackhaulCategory() bool

HasSatBackhaulCategory returns a boolean if a field has been set.

func (*UeCampingRep) HasServNfId

func (o *UeCampingRep) HasServNfId() bool

HasServNfId returns a boolean if a field has been set.

func (*UeCampingRep) HasServingNetwork

func (o *UeCampingRep) HasServingNetwork() bool

HasServingNetwork returns a boolean if a field has been set.

func (*UeCampingRep) HasUeTimeZone

func (o *UeCampingRep) HasUeTimeZone() bool

HasUeTimeZone returns a boolean if a field has been set.

func (*UeCampingRep) HasUserLocationInfo

func (o *UeCampingRep) HasUserLocationInfo() bool

HasUserLocationInfo returns a boolean if a field has been set.

func (UeCampingRep) MarshalJSON

func (o UeCampingRep) MarshalJSON() ([]byte, error)

func (*UeCampingRep) SetAccessType

func (o *UeCampingRep) SetAccessType(v AccessType)

SetAccessType gets a reference to the given AccessType and assigns it to the AccessType field.

func (*UeCampingRep) SetNetLocAccSupp

func (o *UeCampingRep) SetNetLocAccSupp(v NetLocAccessSupport)

SetNetLocAccSupp gets a reference to the given NetLocAccessSupport and assigns it to the NetLocAccSupp field.

func (*UeCampingRep) SetRatType

func (o *UeCampingRep) SetRatType(v RatType)

SetRatType gets a reference to the given RatType and assigns it to the RatType field.

func (*UeCampingRep) SetSatBackhaulCategory

func (o *UeCampingRep) SetSatBackhaulCategory(v SatelliteBackhaulCategory)

SetSatBackhaulCategory gets a reference to the given SatelliteBackhaulCategory and assigns it to the SatBackhaulCategory field.

func (*UeCampingRep) SetServNfId

func (o *UeCampingRep) SetServNfId(v ServingNfIdentity)

SetServNfId gets a reference to the given ServingNfIdentity and assigns it to the ServNfId field.

func (*UeCampingRep) SetServingNetwork

func (o *UeCampingRep) SetServingNetwork(v PlmnIdNid)

SetServingNetwork gets a reference to the given PlmnIdNid and assigns it to the ServingNetwork field.

func (*UeCampingRep) SetUeTimeZone

func (o *UeCampingRep) SetUeTimeZone(v string)

SetUeTimeZone gets a reference to the given string and assigns it to the UeTimeZone field.

func (*UeCampingRep) SetUserLocationInfo

func (o *UeCampingRep) SetUserLocationInfo(v UserLocation)

SetUserLocationInfo gets a reference to the given UserLocation and assigns it to the UserLocationInfo field.

func (UeCampingRep) ToMap

func (o UeCampingRep) ToMap() (map[string]interface{}, error)

type UeInitiatedResourceRequest

type UeInitiatedResourceRequest struct {
	PccRuleId    *string            `json:"pccRuleId,omitempty"`
	RuleOp       RuleOperation      `json:"ruleOp"`
	Precedence   *int32             `json:"precedence,omitempty"`
	PackFiltInfo []PacketFilterInfo `json:"packFiltInfo"`
	ReqQos       *RequestedQos      `json:"reqQos,omitempty"`
}

UeInitiatedResourceRequest Indicates that a UE requests specific QoS handling for the selected SDF.

func NewUeInitiatedResourceRequest

func NewUeInitiatedResourceRequest(ruleOp RuleOperation, packFiltInfo []PacketFilterInfo) *UeInitiatedResourceRequest

NewUeInitiatedResourceRequest instantiates a new UeInitiatedResourceRequest object This constructor will assign default values to properties that have it defined, 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 NewUeInitiatedResourceRequestWithDefaults

func NewUeInitiatedResourceRequestWithDefaults() *UeInitiatedResourceRequest

NewUeInitiatedResourceRequestWithDefaults instantiates a new UeInitiatedResourceRequest object This 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 (*UeInitiatedResourceRequest) GetPackFiltInfo

func (o *UeInitiatedResourceRequest) GetPackFiltInfo() []PacketFilterInfo

GetPackFiltInfo returns the PackFiltInfo field value

func (*UeInitiatedResourceRequest) GetPackFiltInfoOk

func (o *UeInitiatedResourceRequest) GetPackFiltInfoOk() ([]PacketFilterInfo, bool)

GetPackFiltInfoOk returns a tuple with the PackFiltInfo field value and a boolean to check if the value has been set.

func (*UeInitiatedResourceRequest) GetPccRuleId

func (o *UeInitiatedResourceRequest) GetPccRuleId() string

GetPccRuleId returns the PccRuleId field value if set, zero value otherwise.

func (*UeInitiatedResourceRequest) GetPccRuleIdOk

func (o *UeInitiatedResourceRequest) GetPccRuleIdOk() (*string, bool)

GetPccRuleIdOk returns a tuple with the PccRuleId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UeInitiatedResourceRequest) GetPrecedence

func (o *UeInitiatedResourceRequest) GetPrecedence() int32

GetPrecedence returns the Precedence field value if set, zero value otherwise.

func (*UeInitiatedResourceRequest) GetPrecedenceOk

func (o *UeInitiatedResourceRequest) GetPrecedenceOk() (*int32, bool)

GetPrecedenceOk returns a tuple with the Precedence field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UeInitiatedResourceRequest) GetReqQos

GetReqQos returns the ReqQos field value if set, zero value otherwise.

func (*UeInitiatedResourceRequest) GetReqQosOk

func (o *UeInitiatedResourceRequest) GetReqQosOk() (*RequestedQos, bool)

GetReqQosOk returns a tuple with the ReqQos field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UeInitiatedResourceRequest) GetRuleOp

GetRuleOp returns the RuleOp field value

func (*UeInitiatedResourceRequest) GetRuleOpOk

func (o *UeInitiatedResourceRequest) GetRuleOpOk() (*RuleOperation, bool)

GetRuleOpOk returns a tuple with the RuleOp field value and a boolean to check if the value has been set.

func (*UeInitiatedResourceRequest) HasPccRuleId

func (o *UeInitiatedResourceRequest) HasPccRuleId() bool

HasPccRuleId returns a boolean if a field has been set.

func (*UeInitiatedResourceRequest) HasPrecedence

func (o *UeInitiatedResourceRequest) HasPrecedence() bool

HasPrecedence returns a boolean if a field has been set.

func (*UeInitiatedResourceRequest) HasReqQos

func (o *UeInitiatedResourceRequest) HasReqQos() bool

HasReqQos returns a boolean if a field has been set.

func (UeInitiatedResourceRequest) MarshalJSON

func (o UeInitiatedResourceRequest) MarshalJSON() ([]byte, error)

func (*UeInitiatedResourceRequest) SetPackFiltInfo

func (o *UeInitiatedResourceRequest) SetPackFiltInfo(v []PacketFilterInfo)

SetPackFiltInfo sets field value

func (*UeInitiatedResourceRequest) SetPccRuleId

func (o *UeInitiatedResourceRequest) SetPccRuleId(v string)

SetPccRuleId gets a reference to the given string and assigns it to the PccRuleId field.

func (*UeInitiatedResourceRequest) SetPrecedence

func (o *UeInitiatedResourceRequest) SetPrecedence(v int32)

SetPrecedence gets a reference to the given int32 and assigns it to the Precedence field.

func (*UeInitiatedResourceRequest) SetReqQos

func (o *UeInitiatedResourceRequest) SetReqQos(v RequestedQos)

SetReqQos gets a reference to the given RequestedQos and assigns it to the ReqQos field.

func (*UeInitiatedResourceRequest) SetRuleOp

func (o *UeInitiatedResourceRequest) SetRuleOp(v RuleOperation)

SetRuleOp sets field value

func (UeInitiatedResourceRequest) ToMap

func (o UeInitiatedResourceRequest) ToMap() (map[string]interface{}, error)

type UpPathChgEvent

type UpPathChgEvent struct {
	// String providing an URI formatted according to RFC 3986.
	NotificationUri string `json:"notificationUri"`
	// It is used to set the value of Notification Correlation ID in the notification sent by  the SMF.
	NotifCorreId string         `json:"notifCorreId"`
	DnaiChgType  DnaiChangeType `json:"dnaiChgType"`
	AfAckInd     *bool          `json:"afAckInd,omitempty"`
}

UpPathChgEvent Contains the UP path change event subscription from the AF.

func NewUpPathChgEvent

func NewUpPathChgEvent(notificationUri string, notifCorreId string, dnaiChgType DnaiChangeType) *UpPathChgEvent

NewUpPathChgEvent instantiates a new UpPathChgEvent object This constructor will assign default values to properties that have it defined, 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 NewUpPathChgEventWithDefaults

func NewUpPathChgEventWithDefaults() *UpPathChgEvent

NewUpPathChgEventWithDefaults instantiates a new UpPathChgEvent object This 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 (*UpPathChgEvent) GetAfAckInd

func (o *UpPathChgEvent) GetAfAckInd() bool

GetAfAckInd returns the AfAckInd field value if set, zero value otherwise.

func (*UpPathChgEvent) GetAfAckIndOk

func (o *UpPathChgEvent) GetAfAckIndOk() (*bool, bool)

GetAfAckIndOk returns a tuple with the AfAckInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpPathChgEvent) GetDnaiChgType

func (o *UpPathChgEvent) GetDnaiChgType() DnaiChangeType

GetDnaiChgType returns the DnaiChgType field value

func (*UpPathChgEvent) GetDnaiChgTypeOk

func (o *UpPathChgEvent) GetDnaiChgTypeOk() (*DnaiChangeType, bool)

GetDnaiChgTypeOk returns a tuple with the DnaiChgType field value and a boolean to check if the value has been set.

func (*UpPathChgEvent) GetNotifCorreId

func (o *UpPathChgEvent) GetNotifCorreId() string

GetNotifCorreId returns the NotifCorreId field value

func (*UpPathChgEvent) GetNotifCorreIdOk

func (o *UpPathChgEvent) GetNotifCorreIdOk() (*string, bool)

GetNotifCorreIdOk returns a tuple with the NotifCorreId field value and a boolean to check if the value has been set.

func (*UpPathChgEvent) GetNotificationUri

func (o *UpPathChgEvent) GetNotificationUri() string

GetNotificationUri returns the NotificationUri field value

func (*UpPathChgEvent) GetNotificationUriOk

func (o *UpPathChgEvent) GetNotificationUriOk() (*string, bool)

GetNotificationUriOk returns a tuple with the NotificationUri field value and a boolean to check if the value has been set.

func (*UpPathChgEvent) HasAfAckInd

func (o *UpPathChgEvent) HasAfAckInd() bool

HasAfAckInd returns a boolean if a field has been set.

func (UpPathChgEvent) MarshalJSON

func (o UpPathChgEvent) MarshalJSON() ([]byte, error)

func (*UpPathChgEvent) SetAfAckInd

func (o *UpPathChgEvent) SetAfAckInd(v bool)

SetAfAckInd gets a reference to the given bool and assigns it to the AfAckInd field.

func (*UpPathChgEvent) SetDnaiChgType

func (o *UpPathChgEvent) SetDnaiChgType(v DnaiChangeType)

SetDnaiChgType sets field value

func (*UpPathChgEvent) SetNotifCorreId

func (o *UpPathChgEvent) SetNotifCorreId(v string)

SetNotifCorreId sets field value

func (*UpPathChgEvent) SetNotificationUri

func (o *UpPathChgEvent) SetNotificationUri(v string)

SetNotificationUri sets field value

func (UpPathChgEvent) ToMap

func (o UpPathChgEvent) ToMap() (map[string]interface{}, error)

type UsageMonitoringData

type UsageMonitoringData struct {
	// Univocally identifies the usage monitoring policy data within a PDU session.
	UmId string `json:"umId"`
	// Unsigned integer identifying a volume in units of bytes with \"nullable=true\" property.
	VolumeThreshold NullableInt64 `json:"volumeThreshold,omitempty"`
	// Unsigned integer identifying a volume in units of bytes with \"nullable=true\" property.
	VolumeThresholdUplink NullableInt64 `json:"volumeThresholdUplink,omitempty"`
	// Unsigned integer identifying a volume in units of bytes with \"nullable=true\" property.
	VolumeThresholdDownlink NullableInt64 `json:"volumeThresholdDownlink,omitempty"`
	// indicating a time in seconds with OpenAPI defined 'nullable: true' property.
	TimeThreshold NullableInt32 `json:"timeThreshold,omitempty"`
	// string with format 'date-time' as defined in OpenAPI with 'nullable:true' property.
	MonitoringTime NullableTime `json:"monitoringTime,omitempty"`
	// Unsigned integer identifying a volume in units of bytes with \"nullable=true\" property.
	NextVolThreshold NullableInt64 `json:"nextVolThreshold,omitempty"`
	// Unsigned integer identifying a volume in units of bytes with \"nullable=true\" property.
	NextVolThresholdUplink NullableInt64 `json:"nextVolThresholdUplink,omitempty"`
	// Unsigned integer identifying a volume in units of bytes with \"nullable=true\" property.
	NextVolThresholdDownlink NullableInt64 `json:"nextVolThresholdDownlink,omitempty"`
	// indicating a time in seconds with OpenAPI defined 'nullable: true' property.
	NextTimeThreshold NullableInt32 `json:"nextTimeThreshold,omitempty"`
	// indicating a time in seconds with OpenAPI defined 'nullable: true' property.
	InactivityTime NullableInt32 `json:"inactivityTime,omitempty"`
	// Contains the PCC rule identifier(s) which corresponding service data flow(s) shall be excluded from PDU Session usage monitoring. It is only included in the UsageMonitoringData instance for session level usage monitoring.
	ExUsagePccRuleIds []string `json:"exUsagePccRuleIds,omitempty"`
}

UsageMonitoringData Contains usage monitoring related control information.

func NewUsageMonitoringData

func NewUsageMonitoringData(umId string) *UsageMonitoringData

NewUsageMonitoringData instantiates a new UsageMonitoringData object This constructor will assign default values to properties that have it defined, 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 NewUsageMonitoringDataWithDefaults

func NewUsageMonitoringDataWithDefaults() *UsageMonitoringData

NewUsageMonitoringDataWithDefaults instantiates a new UsageMonitoringData object This 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 (*UsageMonitoringData) GetExUsagePccRuleIds

func (o *UsageMonitoringData) GetExUsagePccRuleIds() []string

GetExUsagePccRuleIds returns the ExUsagePccRuleIds field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UsageMonitoringData) GetExUsagePccRuleIdsOk

func (o *UsageMonitoringData) GetExUsagePccRuleIdsOk() ([]string, bool)

GetExUsagePccRuleIdsOk returns a tuple with the ExUsagePccRuleIds 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 (*UsageMonitoringData) GetInactivityTime

func (o *UsageMonitoringData) GetInactivityTime() int32

GetInactivityTime returns the InactivityTime field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UsageMonitoringData) GetInactivityTimeOk

func (o *UsageMonitoringData) GetInactivityTimeOk() (*int32, bool)

GetInactivityTimeOk returns a tuple with the InactivityTime 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 (*UsageMonitoringData) GetMonitoringTime

func (o *UsageMonitoringData) GetMonitoringTime() time.Time

GetMonitoringTime returns the MonitoringTime field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UsageMonitoringData) GetMonitoringTimeOk

func (o *UsageMonitoringData) GetMonitoringTimeOk() (*time.Time, bool)

GetMonitoringTimeOk returns a tuple with the MonitoringTime 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 (*UsageMonitoringData) GetNextTimeThreshold

func (o *UsageMonitoringData) GetNextTimeThreshold() int32

GetNextTimeThreshold returns the NextTimeThreshold field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UsageMonitoringData) GetNextTimeThresholdOk

func (o *UsageMonitoringData) GetNextTimeThresholdOk() (*int32, bool)

GetNextTimeThresholdOk returns a tuple with the NextTimeThreshold 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 (*UsageMonitoringData) GetNextVolThreshold

func (o *UsageMonitoringData) GetNextVolThreshold() int64

GetNextVolThreshold returns the NextVolThreshold field value if set, zero value otherwise (both if not set or set to explicit null).

func (o *UsageMonitoringData) GetNextVolThresholdDownlink() int64

GetNextVolThresholdDownlink returns the NextVolThresholdDownlink field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UsageMonitoringData) GetNextVolThresholdDownlinkOk

func (o *UsageMonitoringData) GetNextVolThresholdDownlinkOk() (*int64, bool)

GetNextVolThresholdDownlinkOk returns a tuple with the NextVolThresholdDownlink 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 (*UsageMonitoringData) GetNextVolThresholdOk

func (o *UsageMonitoringData) GetNextVolThresholdOk() (*int64, bool)

GetNextVolThresholdOk returns a tuple with the NextVolThreshold 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 (o *UsageMonitoringData) GetNextVolThresholdUplink() int64

GetNextVolThresholdUplink returns the NextVolThresholdUplink field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UsageMonitoringData) GetNextVolThresholdUplinkOk

func (o *UsageMonitoringData) GetNextVolThresholdUplinkOk() (*int64, bool)

GetNextVolThresholdUplinkOk returns a tuple with the NextVolThresholdUplink 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 (*UsageMonitoringData) GetTimeThreshold

func (o *UsageMonitoringData) GetTimeThreshold() int32

GetTimeThreshold returns the TimeThreshold field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UsageMonitoringData) GetTimeThresholdOk

func (o *UsageMonitoringData) GetTimeThresholdOk() (*int32, bool)

GetTimeThresholdOk returns a tuple with the TimeThreshold 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 (*UsageMonitoringData) GetUmId

func (o *UsageMonitoringData) GetUmId() string

GetUmId returns the UmId field value

func (*UsageMonitoringData) GetUmIdOk

func (o *UsageMonitoringData) GetUmIdOk() (*string, bool)

GetUmIdOk returns a tuple with the UmId field value and a boolean to check if the value has been set.

func (*UsageMonitoringData) GetVolumeThreshold

func (o *UsageMonitoringData) GetVolumeThreshold() int64

GetVolumeThreshold returns the VolumeThreshold field value if set, zero value otherwise (both if not set or set to explicit null).

func (o *UsageMonitoringData) GetVolumeThresholdDownlink() int64

GetVolumeThresholdDownlink returns the VolumeThresholdDownlink field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UsageMonitoringData) GetVolumeThresholdDownlinkOk

func (o *UsageMonitoringData) GetVolumeThresholdDownlinkOk() (*int64, bool)

GetVolumeThresholdDownlinkOk returns a tuple with the VolumeThresholdDownlink 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 (*UsageMonitoringData) GetVolumeThresholdOk

func (o *UsageMonitoringData) GetVolumeThresholdOk() (*int64, bool)

GetVolumeThresholdOk returns a tuple with the VolumeThreshold 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 (o *UsageMonitoringData) GetVolumeThresholdUplink() int64

GetVolumeThresholdUplink returns the VolumeThresholdUplink field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UsageMonitoringData) GetVolumeThresholdUplinkOk

func (o *UsageMonitoringData) GetVolumeThresholdUplinkOk() (*int64, bool)

GetVolumeThresholdUplinkOk returns a tuple with the VolumeThresholdUplink 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 (*UsageMonitoringData) HasExUsagePccRuleIds

func (o *UsageMonitoringData) HasExUsagePccRuleIds() bool

HasExUsagePccRuleIds returns a boolean if a field has been set.

func (*UsageMonitoringData) HasInactivityTime

func (o *UsageMonitoringData) HasInactivityTime() bool

HasInactivityTime returns a boolean if a field has been set.

func (*UsageMonitoringData) HasMonitoringTime

func (o *UsageMonitoringData) HasMonitoringTime() bool

HasMonitoringTime returns a boolean if a field has been set.

func (*UsageMonitoringData) HasNextTimeThreshold

func (o *UsageMonitoringData) HasNextTimeThreshold() bool

HasNextTimeThreshold returns a boolean if a field has been set.

func (*UsageMonitoringData) HasNextVolThreshold

func (o *UsageMonitoringData) HasNextVolThreshold() bool

HasNextVolThreshold returns a boolean if a field has been set.

func (o *UsageMonitoringData) HasNextVolThresholdDownlink() bool

HasNextVolThresholdDownlink returns a boolean if a field has been set.

func (o *UsageMonitoringData) HasNextVolThresholdUplink() bool

HasNextVolThresholdUplink returns a boolean if a field has been set.

func (*UsageMonitoringData) HasTimeThreshold

func (o *UsageMonitoringData) HasTimeThreshold() bool

HasTimeThreshold returns a boolean if a field has been set.

func (*UsageMonitoringData) HasVolumeThreshold

func (o *UsageMonitoringData) HasVolumeThreshold() bool

HasVolumeThreshold returns a boolean if a field has been set.

func (o *UsageMonitoringData) HasVolumeThresholdDownlink() bool

HasVolumeThresholdDownlink returns a boolean if a field has been set.

func (o *UsageMonitoringData) HasVolumeThresholdUplink() bool

HasVolumeThresholdUplink returns a boolean if a field has been set.

func (UsageMonitoringData) MarshalJSON

func (o UsageMonitoringData) MarshalJSON() ([]byte, error)

func (*UsageMonitoringData) SetExUsagePccRuleIds

func (o *UsageMonitoringData) SetExUsagePccRuleIds(v []string)

SetExUsagePccRuleIds gets a reference to the given []string and assigns it to the ExUsagePccRuleIds field.

func (*UsageMonitoringData) SetInactivityTime

func (o *UsageMonitoringData) SetInactivityTime(v int32)

SetInactivityTime gets a reference to the given NullableInt32 and assigns it to the InactivityTime field.

func (*UsageMonitoringData) SetInactivityTimeNil

func (o *UsageMonitoringData) SetInactivityTimeNil()

SetInactivityTimeNil sets the value for InactivityTime to be an explicit nil

func (*UsageMonitoringData) SetMonitoringTime

func (o *UsageMonitoringData) SetMonitoringTime(v time.Time)

SetMonitoringTime gets a reference to the given NullableTime and assigns it to the MonitoringTime field.

func (*UsageMonitoringData) SetMonitoringTimeNil

func (o *UsageMonitoringData) SetMonitoringTimeNil()

SetMonitoringTimeNil sets the value for MonitoringTime to be an explicit nil

func (*UsageMonitoringData) SetNextTimeThreshold

func (o *UsageMonitoringData) SetNextTimeThreshold(v int32)

SetNextTimeThreshold gets a reference to the given NullableInt32 and assigns it to the NextTimeThreshold field.

func (*UsageMonitoringData) SetNextTimeThresholdNil

func (o *UsageMonitoringData) SetNextTimeThresholdNil()

SetNextTimeThresholdNil sets the value for NextTimeThreshold to be an explicit nil

func (*UsageMonitoringData) SetNextVolThreshold

func (o *UsageMonitoringData) SetNextVolThreshold(v int64)

SetNextVolThreshold gets a reference to the given NullableInt64 and assigns it to the NextVolThreshold field.

func (o *UsageMonitoringData) SetNextVolThresholdDownlink(v int64)

SetNextVolThresholdDownlink gets a reference to the given NullableInt64 and assigns it to the NextVolThresholdDownlink field.

func (*UsageMonitoringData) SetNextVolThresholdDownlinkNil

func (o *UsageMonitoringData) SetNextVolThresholdDownlinkNil()

SetNextVolThresholdDownlinkNil sets the value for NextVolThresholdDownlink to be an explicit nil

func (*UsageMonitoringData) SetNextVolThresholdNil

func (o *UsageMonitoringData) SetNextVolThresholdNil()

SetNextVolThresholdNil sets the value for NextVolThreshold to be an explicit nil

func (o *UsageMonitoringData) SetNextVolThresholdUplink(v int64)

SetNextVolThresholdUplink gets a reference to the given NullableInt64 and assigns it to the NextVolThresholdUplink field.

func (*UsageMonitoringData) SetNextVolThresholdUplinkNil

func (o *UsageMonitoringData) SetNextVolThresholdUplinkNil()

SetNextVolThresholdUplinkNil sets the value for NextVolThresholdUplink to be an explicit nil

func (*UsageMonitoringData) SetTimeThreshold

func (o *UsageMonitoringData) SetTimeThreshold(v int32)

SetTimeThreshold gets a reference to the given NullableInt32 and assigns it to the TimeThreshold field.

func (*UsageMonitoringData) SetTimeThresholdNil

func (o *UsageMonitoringData) SetTimeThresholdNil()

SetTimeThresholdNil sets the value for TimeThreshold to be an explicit nil

func (*UsageMonitoringData) SetUmId

func (o *UsageMonitoringData) SetUmId(v string)

SetUmId sets field value

func (*UsageMonitoringData) SetVolumeThreshold

func (o *UsageMonitoringData) SetVolumeThreshold(v int64)

SetVolumeThreshold gets a reference to the given NullableInt64 and assigns it to the VolumeThreshold field.

func (o *UsageMonitoringData) SetVolumeThresholdDownlink(v int64)

SetVolumeThresholdDownlink gets a reference to the given NullableInt64 and assigns it to the VolumeThresholdDownlink field.

func (*UsageMonitoringData) SetVolumeThresholdDownlinkNil

func (o *UsageMonitoringData) SetVolumeThresholdDownlinkNil()

SetVolumeThresholdDownlinkNil sets the value for VolumeThresholdDownlink to be an explicit nil

func (*UsageMonitoringData) SetVolumeThresholdNil

func (o *UsageMonitoringData) SetVolumeThresholdNil()

SetVolumeThresholdNil sets the value for VolumeThreshold to be an explicit nil

func (o *UsageMonitoringData) SetVolumeThresholdUplink(v int64)

SetVolumeThresholdUplink gets a reference to the given NullableInt64 and assigns it to the VolumeThresholdUplink field.

func (*UsageMonitoringData) SetVolumeThresholdUplinkNil

func (o *UsageMonitoringData) SetVolumeThresholdUplinkNil()

SetVolumeThresholdUplinkNil sets the value for VolumeThresholdUplink to be an explicit nil

func (UsageMonitoringData) ToMap

func (o UsageMonitoringData) ToMap() (map[string]interface{}, error)

func (*UsageMonitoringData) UnsetInactivityTime

func (o *UsageMonitoringData) UnsetInactivityTime()

UnsetInactivityTime ensures that no value is present for InactivityTime, not even an explicit nil

func (*UsageMonitoringData) UnsetMonitoringTime

func (o *UsageMonitoringData) UnsetMonitoringTime()

UnsetMonitoringTime ensures that no value is present for MonitoringTime, not even an explicit nil

func (*UsageMonitoringData) UnsetNextTimeThreshold

func (o *UsageMonitoringData) UnsetNextTimeThreshold()

UnsetNextTimeThreshold ensures that no value is present for NextTimeThreshold, not even an explicit nil

func (*UsageMonitoringData) UnsetNextVolThreshold

func (o *UsageMonitoringData) UnsetNextVolThreshold()

UnsetNextVolThreshold ensures that no value is present for NextVolThreshold, not even an explicit nil

func (o *UsageMonitoringData) UnsetNextVolThresholdDownlink()

UnsetNextVolThresholdDownlink ensures that no value is present for NextVolThresholdDownlink, not even an explicit nil

func (o *UsageMonitoringData) UnsetNextVolThresholdUplink()

UnsetNextVolThresholdUplink ensures that no value is present for NextVolThresholdUplink, not even an explicit nil

func (*UsageMonitoringData) UnsetTimeThreshold

func (o *UsageMonitoringData) UnsetTimeThreshold()

UnsetTimeThreshold ensures that no value is present for TimeThreshold, not even an explicit nil

func (*UsageMonitoringData) UnsetVolumeThreshold

func (o *UsageMonitoringData) UnsetVolumeThreshold()

UnsetVolumeThreshold ensures that no value is present for VolumeThreshold, not even an explicit nil

func (o *UsageMonitoringData) UnsetVolumeThresholdDownlink()

UnsetVolumeThresholdDownlink ensures that no value is present for VolumeThresholdDownlink, not even an explicit nil

func (o *UsageMonitoringData) UnsetVolumeThresholdUplink()

UnsetVolumeThresholdUplink ensures that no value is present for VolumeThresholdUplink, not even an explicit nil

type UserLocation

type UserLocation struct {
	EutraLocation *EutraLocation `json:"eutraLocation,omitempty"`
	NrLocation    *NrLocation    `json:"nrLocation,omitempty"`
	N3gaLocation  *N3gaLocation  `json:"n3gaLocation,omitempty"`
	UtraLocation  *UtraLocation  `json:"utraLocation,omitempty"`
	GeraLocation  *GeraLocation  `json:"geraLocation,omitempty"`
}

UserLocation At least one of eutraLocation, nrLocation and n3gaLocation shall be present. Several of them may be present.

func NewUserLocation

func NewUserLocation() *UserLocation

NewUserLocation instantiates a new UserLocation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserLocationWithDefaults

func NewUserLocationWithDefaults() *UserLocation

NewUserLocationWithDefaults instantiates a new UserLocation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserLocation) GetEutraLocation

func (o *UserLocation) GetEutraLocation() EutraLocation

GetEutraLocation returns the EutraLocation field value if set, zero value otherwise.

func (*UserLocation) GetEutraLocationOk

func (o *UserLocation) GetEutraLocationOk() (*EutraLocation, bool)

GetEutraLocationOk returns a tuple with the EutraLocation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserLocation) GetGeraLocation

func (o *UserLocation) GetGeraLocation() GeraLocation

GetGeraLocation returns the GeraLocation field value if set, zero value otherwise.

func (*UserLocation) GetGeraLocationOk

func (o *UserLocation) GetGeraLocationOk() (*GeraLocation, bool)

GetGeraLocationOk returns a tuple with the GeraLocation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserLocation) GetN3gaLocation

func (o *UserLocation) GetN3gaLocation() N3gaLocation

GetN3gaLocation returns the N3gaLocation field value if set, zero value otherwise.

func (*UserLocation) GetN3gaLocationOk

func (o *UserLocation) GetN3gaLocationOk() (*N3gaLocation, bool)

GetN3gaLocationOk returns a tuple with the N3gaLocation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserLocation) GetNrLocation

func (o *UserLocation) GetNrLocation() NrLocation

GetNrLocation returns the NrLocation field value if set, zero value otherwise.

func (*UserLocation) GetNrLocationOk

func (o *UserLocation) GetNrLocationOk() (*NrLocation, bool)

GetNrLocationOk returns a tuple with the NrLocation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserLocation) GetUtraLocation

func (o *UserLocation) GetUtraLocation() UtraLocation

GetUtraLocation returns the UtraLocation field value if set, zero value otherwise.

func (*UserLocation) GetUtraLocationOk

func (o *UserLocation) GetUtraLocationOk() (*UtraLocation, bool)

GetUtraLocationOk returns a tuple with the UtraLocation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserLocation) HasEutraLocation

func (o *UserLocation) HasEutraLocation() bool

HasEutraLocation returns a boolean if a field has been set.

func (*UserLocation) HasGeraLocation

func (o *UserLocation) HasGeraLocation() bool

HasGeraLocation returns a boolean if a field has been set.

func (*UserLocation) HasN3gaLocation

func (o *UserLocation) HasN3gaLocation() bool

HasN3gaLocation returns a boolean if a field has been set.

func (*UserLocation) HasNrLocation

func (o *UserLocation) HasNrLocation() bool

HasNrLocation returns a boolean if a field has been set.

func (*UserLocation) HasUtraLocation

func (o *UserLocation) HasUtraLocation() bool

HasUtraLocation returns a boolean if a field has been set.

func (UserLocation) MarshalJSON

func (o UserLocation) MarshalJSON() ([]byte, error)

func (*UserLocation) SetEutraLocation

func (o *UserLocation) SetEutraLocation(v EutraLocation)

SetEutraLocation gets a reference to the given EutraLocation and assigns it to the EutraLocation field.

func (*UserLocation) SetGeraLocation

func (o *UserLocation) SetGeraLocation(v GeraLocation)

SetGeraLocation gets a reference to the given GeraLocation and assigns it to the GeraLocation field.

func (*UserLocation) SetN3gaLocation

func (o *UserLocation) SetN3gaLocation(v N3gaLocation)

SetN3gaLocation gets a reference to the given N3gaLocation and assigns it to the N3gaLocation field.

func (*UserLocation) SetNrLocation

func (o *UserLocation) SetNrLocation(v NrLocation)

SetNrLocation gets a reference to the given NrLocation and assigns it to the NrLocation field.

func (*UserLocation) SetUtraLocation

func (o *UserLocation) SetUtraLocation(v UtraLocation)

SetUtraLocation gets a reference to the given UtraLocation and assigns it to the UtraLocation field.

func (UserLocation) ToMap

func (o UserLocation) ToMap() (map[string]interface{}, error)

type UtraLocation

type UtraLocation struct {
	Interface *interface{}
}

UtraLocation - Exactly one of cgi, sai or lai shall be present.

func InterfaceAsUtraLocation

func InterfaceAsUtraLocation(v *interface{}) UtraLocation

interface{}AsUtraLocation is a convenience function that returns interface{} wrapped in UtraLocation

func (*UtraLocation) GetActualInstance

func (obj *UtraLocation) GetActualInstance() interface{}

Get the actual instance

func (UtraLocation) MarshalJSON

func (src UtraLocation) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*UtraLocation) UnmarshalJSON

func (dst *UtraLocation) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type VplmnQos

type VplmnQos struct {
	// Unsigned integer representing a 5G QoS Identifier (see clause 5.7.2.1 of 3GPP TS 23.501, within the range 0 to 255.
	Var5qi      *int32 `json:"5qi,omitempty"`
	Arp         *Arp   `json:"arp,omitempty"`
	SessionAmbr *Ambr  `json:"sessionAmbr,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\".
	MaxFbrDl *string `json:"maxFbrDl,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\".
	MaxFbrUl *string `json:"maxFbrUl,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\".
	GuaFbrDl *string `json:"guaFbrDl,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\".
	GuaFbrUl *string `json:"guaFbrUl,omitempty"`
}

VplmnQos VPLMN QoS

func NewVplmnQos

func NewVplmnQos() *VplmnQos

NewVplmnQos instantiates a new VplmnQos object This constructor will assign default values to properties that have it defined, 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 NewVplmnQosWithDefaults

func NewVplmnQosWithDefaults() *VplmnQos

NewVplmnQosWithDefaults instantiates a new VplmnQos object This 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 (*VplmnQos) GetArp

func (o *VplmnQos) GetArp() Arp

GetArp returns the Arp field value if set, zero value otherwise.

func (*VplmnQos) GetArpOk

func (o *VplmnQos) GetArpOk() (*Arp, bool)

GetArpOk returns a tuple with the Arp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VplmnQos) GetGuaFbrDl

func (o *VplmnQos) GetGuaFbrDl() string

GetGuaFbrDl returns the GuaFbrDl field value if set, zero value otherwise.

func (*VplmnQos) GetGuaFbrDlOk

func (o *VplmnQos) GetGuaFbrDlOk() (*string, bool)

GetGuaFbrDlOk returns a tuple with the GuaFbrDl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VplmnQos) GetGuaFbrUl

func (o *VplmnQos) GetGuaFbrUl() string

GetGuaFbrUl returns the GuaFbrUl field value if set, zero value otherwise.

func (*VplmnQos) GetGuaFbrUlOk

func (o *VplmnQos) GetGuaFbrUlOk() (*string, bool)

GetGuaFbrUlOk returns a tuple with the GuaFbrUl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VplmnQos) GetMaxFbrDl

func (o *VplmnQos) GetMaxFbrDl() string

GetMaxFbrDl returns the MaxFbrDl field value if set, zero value otherwise.

func (*VplmnQos) GetMaxFbrDlOk

func (o *VplmnQos) GetMaxFbrDlOk() (*string, bool)

GetMaxFbrDlOk returns a tuple with the MaxFbrDl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VplmnQos) GetMaxFbrUl

func (o *VplmnQos) GetMaxFbrUl() string

GetMaxFbrUl returns the MaxFbrUl field value if set, zero value otherwise.

func (*VplmnQos) GetMaxFbrUlOk

func (o *VplmnQos) GetMaxFbrUlOk() (*string, bool)

GetMaxFbrUlOk returns a tuple with the MaxFbrUl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VplmnQos) GetSessionAmbr

func (o *VplmnQos) GetSessionAmbr() Ambr

GetSessionAmbr returns the SessionAmbr field value if set, zero value otherwise.

func (*VplmnQos) GetSessionAmbrOk

func (o *VplmnQos) GetSessionAmbrOk() (*Ambr, bool)

GetSessionAmbrOk returns a tuple with the SessionAmbr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VplmnQos) GetVar5qi

func (o *VplmnQos) GetVar5qi() int32

GetVar5qi returns the Var5qi field value if set, zero value otherwise.

func (*VplmnQos) GetVar5qiOk

func (o *VplmnQos) GetVar5qiOk() (*int32, bool)

GetVar5qiOk returns a tuple with the Var5qi field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VplmnQos) HasArp

func (o *VplmnQos) HasArp() bool

HasArp returns a boolean if a field has been set.

func (*VplmnQos) HasGuaFbrDl

func (o *VplmnQos) HasGuaFbrDl() bool

HasGuaFbrDl returns a boolean if a field has been set.

func (*VplmnQos) HasGuaFbrUl

func (o *VplmnQos) HasGuaFbrUl() bool

HasGuaFbrUl returns a boolean if a field has been set.

func (*VplmnQos) HasMaxFbrDl

func (o *VplmnQos) HasMaxFbrDl() bool

HasMaxFbrDl returns a boolean if a field has been set.

func (*VplmnQos) HasMaxFbrUl

func (o *VplmnQos) HasMaxFbrUl() bool

HasMaxFbrUl returns a boolean if a field has been set.

func (*VplmnQos) HasSessionAmbr

func (o *VplmnQos) HasSessionAmbr() bool

HasSessionAmbr returns a boolean if a field has been set.

func (*VplmnQos) HasVar5qi

func (o *VplmnQos) HasVar5qi() bool

HasVar5qi returns a boolean if a field has been set.

func (VplmnQos) MarshalJSON

func (o VplmnQos) MarshalJSON() ([]byte, error)

func (*VplmnQos) SetArp

func (o *VplmnQos) SetArp(v Arp)

SetArp gets a reference to the given Arp and assigns it to the Arp field.

func (*VplmnQos) SetGuaFbrDl

func (o *VplmnQos) SetGuaFbrDl(v string)

SetGuaFbrDl gets a reference to the given string and assigns it to the GuaFbrDl field.

func (*VplmnQos) SetGuaFbrUl

func (o *VplmnQos) SetGuaFbrUl(v string)

SetGuaFbrUl gets a reference to the given string and assigns it to the GuaFbrUl field.

func (*VplmnQos) SetMaxFbrDl

func (o *VplmnQos) SetMaxFbrDl(v string)

SetMaxFbrDl gets a reference to the given string and assigns it to the MaxFbrDl field.

func (*VplmnQos) SetMaxFbrUl

func (o *VplmnQos) SetMaxFbrUl(v string)

SetMaxFbrUl gets a reference to the given string and assigns it to the MaxFbrUl field.

func (*VplmnQos) SetSessionAmbr

func (o *VplmnQos) SetSessionAmbr(v Ambr)

SetSessionAmbr gets a reference to the given Ambr and assigns it to the SessionAmbr field.

func (*VplmnQos) SetVar5qi

func (o *VplmnQos) SetVar5qi(v int32)

SetVar5qi gets a reference to the given int32 and assigns it to the Var5qi field.

func (VplmnQos) ToMap

func (o VplmnQos) ToMap() (map[string]interface{}, error)

Source Files

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL