openapi_ChargeableParty

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_ChargeableParty

API for Chargeable Party management.
© 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.2.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_ChargeableParty "github.com/GIT_USER_ID/GIT_REPO_ID/openapi_ChargeableParty"

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

Documentation for API Endpoints

All URIs are relative to https://example.com/3gpp-chargeable-party/v1

Class Method HTTP request Description
ChargeablePartyTransactionOperationApi CreateChargeablePartyTransaction Post /{scsAsId}/transactions Create a new chargeable party transaction resource.
ChargeablePartyTransactionOperationApi FetchAllChargeablePartyTransactions Get /{scsAsId}/transactions Read all or queried chargeable party transaction resources for a given SCS/AS.
IndividualChargeablePartyResourceOperationApi DeleteChargeablePartyTransaction Delete /{scsAsId}/transactions/{transactionId} Deletes a chargeable party resource for a given SCS/AS and a transcation Id.
IndividualChargeablePartyResourceOperationApi FetchIndChargeablePartyTransaction Get /{scsAsId}/transactions/{transactionId} Read a chargeable party resource for a given SCS/AS and a transaction Id.
IndividualChargeablePartyResourceOperationApi UpdateChargeablePartyTransaction Patch /{scsAsId}/transactions/{transactionId} Updates a existing chargeable party resource for a given SCS/AS and transaction Id.

Documentation For Models

Documentation For Authorization

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

Example

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

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

import "golang.org/x/oauth2"

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

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

Documentation for Utility Methods

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

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

Author

Documentation

Index

Constants

This section is empty.

Variables

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

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

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

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

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

Functions

func CacheExpires

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

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

func IsNil 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 {
	ChargeablePartyTransactionOperationApi *ChargeablePartyTransactionOperationApiService

	IndividualChargeablePartyResourceOperationApi *IndividualChargeablePartyResourceOperationApiService
	// contains filtered or unexported fields
}

APIClient manages communication with the 3gpp-chargeable-party API v1.2.1 In most cases there should be only one, shared, APIClient.

func NewAPIClient

func NewAPIClient(cfg *Configuration) *APIClient

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

func (*APIClient) GetConfig

func (c *APIClient) GetConfig() *Configuration

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

type APIKey

type APIKey struct {
	Key    string
	Prefix string
}

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

type APIResponse

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

APIResponse stores the API response returned by the server.

func NewAPIResponse

func NewAPIResponse(r *http.Response) *APIResponse

NewAPIResponse returns a new APIResponse object.

func NewAPIResponseWithError

func NewAPIResponseWithError(errorMessage string) *APIResponse

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

type AccumulatedUsage

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

AccumulatedUsage Represents an accumulated usage.

func NewAccumulatedUsage

func NewAccumulatedUsage() *AccumulatedUsage

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

func NewAccumulatedUsageWithDefaults

func NewAccumulatedUsageWithDefaults() *AccumulatedUsage

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

func (*AccumulatedUsage) GetDownlinkVolume

func (o *AccumulatedUsage) GetDownlinkVolume() int64

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

func (*AccumulatedUsage) GetDownlinkVolumeOk

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

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

func (*AccumulatedUsage) GetDuration

func (o *AccumulatedUsage) GetDuration() int32

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

func (*AccumulatedUsage) GetDurationOk

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

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

func (*AccumulatedUsage) GetTotalVolume

func (o *AccumulatedUsage) GetTotalVolume() int64

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

func (*AccumulatedUsage) GetTotalVolumeOk

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

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

func (*AccumulatedUsage) GetUplinkVolume

func (o *AccumulatedUsage) GetUplinkVolume() int64

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

func (*AccumulatedUsage) GetUplinkVolumeOk

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

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

func (*AccumulatedUsage) HasDownlinkVolume

func (o *AccumulatedUsage) HasDownlinkVolume() bool

HasDownlinkVolume returns a boolean if a field has been set.

func (*AccumulatedUsage) HasDuration

func (o *AccumulatedUsage) HasDuration() bool

HasDuration returns a boolean if a field has been set.

func (*AccumulatedUsage) HasTotalVolume

func (o *AccumulatedUsage) HasTotalVolume() bool

HasTotalVolume returns a boolean if a field has been set.

func (*AccumulatedUsage) HasUplinkVolume

func (o *AccumulatedUsage) HasUplinkVolume() bool

HasUplinkVolume returns a boolean if a field has been set.

func (AccumulatedUsage) MarshalJSON

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

func (*AccumulatedUsage) SetDownlinkVolume

func (o *AccumulatedUsage) SetDownlinkVolume(v int64)

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

func (*AccumulatedUsage) SetDuration

func (o *AccumulatedUsage) SetDuration(v int32)

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

func (*AccumulatedUsage) SetTotalVolume

func (o *AccumulatedUsage) SetTotalVolume(v int64)

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

func (*AccumulatedUsage) SetUplinkVolume

func (o *AccumulatedUsage) SetUplinkVolume(v int64)

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

func (AccumulatedUsage) ToMap

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

type ApiCreateChargeablePartyTransactionRequest

type ApiCreateChargeablePartyTransactionRequest struct {
	ApiService *ChargeablePartyTransactionOperationApiService
	// contains filtered or unexported fields
}

func (ApiCreateChargeablePartyTransactionRequest) ChargeableParty

representation of the Chargeable Party resource to be Created in the SCEF

func (ApiCreateChargeablePartyTransactionRequest) Execute

type ApiDeleteChargeablePartyTransactionRequest

type ApiDeleteChargeablePartyTransactionRequest struct {
	ApiService *IndividualChargeablePartyResourceOperationApiService
	// contains filtered or unexported fields
}

func (ApiDeleteChargeablePartyTransactionRequest) Execute

type ApiFetchAllChargeablePartyTransactionsRequest

type ApiFetchAllChargeablePartyTransactionsRequest struct {
	ApiService *ChargeablePartyTransactionOperationApiService
	// contains filtered or unexported fields
}

func (ApiFetchAllChargeablePartyTransactionsRequest) Execute

func (ApiFetchAllChargeablePartyTransactionsRequest) IpAddrs

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

func (ApiFetchAllChargeablePartyTransactionsRequest) IpDomain

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

func (ApiFetchAllChargeablePartyTransactionsRequest) MacAddrs

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

type ApiFetchIndChargeablePartyTransactionRequest

type ApiFetchIndChargeablePartyTransactionRequest struct {
	ApiService *IndividualChargeablePartyResourceOperationApiService
	// contains filtered or unexported fields
}

func (ApiFetchIndChargeablePartyTransactionRequest) Execute

type ApiUpdateChargeablePartyTransactionRequest

type ApiUpdateChargeablePartyTransactionRequest struct {
	ApiService *IndividualChargeablePartyResourceOperationApiService
	// contains filtered or unexported fields
}

func (ApiUpdateChargeablePartyTransactionRequest) ChargeablePartyPatch

representation of the chargeable party resource to be udpated in the SCEF

func (ApiUpdateChargeablePartyTransactionRequest) Execute

type BasicAuth

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

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

type ChargeableParty

type ChargeableParty struct {
	// string formatted according to IETF RFC 3986 identifying a referenced resource.
	Self *string `json:"self,omitempty"`
	// A string used to indicate the features supported by an API that is used as defined in clause  6.6 in 3GPP TS 29.500. The string shall contain a bitmask indicating supported features in  hexadecimal representation Each character in the string shall take a value of \"0\" to \"9\",  \"a\" to \"f\" or \"A\" to \"F\" and shall represent the support of 4 features as described in  table 5.2.2-3. The most significant character representing the highest-numbered features shall  appear first in the string, and the character representing features 1 to 4 shall appear last  in the string. The list of features and their numbering (starting with 1) are defined  separately for each API. If the string contains a lower number of characters than there are  defined features for an API, all features that would be represented by characters that are not  present in the string are not supported.
	SupportedFeatures *string `json:"supportedFeatures,omitempty"`
	// String representing a Data Network as defined in clause 9A of 3GPP TS 23.003;  it shall contain either a DNN Network Identifier, or a full DNN with both the Network  Identifier and Operator Identifier, as specified in 3GPP TS 23.003 clause 9.1.1 and 9.1.2. It shall be coded as string in which the labels are separated by dots  (e.g. \"Label1.Label2.Label3\").
	Dnn    *string `json:"dnn,omitempty"`
	Snssai *Snssai `json:"snssai,omitempty"`
	// string formatted according to IETF RFC 3986 identifying a referenced resource.
	NotificationDestination string `json:"notificationDestination"`
	// Set to true by the SCS/AS to request the SCEF to send a test notification as defined in clause 5.2.5.3. Set to false or omitted otherwise.
	RequestTestNotification *bool               `json:"requestTestNotification,omitempty"`
	WebsockNotifConfig      *WebsockNotifConfig `json:"websockNotifConfig,omitempty"`
	// Identifies the external Application Identifier.
	ExterAppId *string `json:"exterAppId,omitempty"`
	// string identifying a Ipv4 address formatted in the \"dotted decimal\" notation as defined in IETF RFC 1166.
	Ipv4Addr *string `json:"ipv4Addr,omitempty"`
	IpDomain *string `json:"ipDomain,omitempty"`
	// string identifying a Ipv6 address formatted according to clause 4 in IETF RFC 5952. The mixed Ipv4 Ipv6 notation according to clause 5 of IETF RFC 5952 shall not be used.
	Ipv6Addr *string `json:"ipv6Addr,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"`
	// Describes the application flows.
	FlowInfo []FlowInfo `json:"flowInfo,omitempty"`
	// Identifies Ethernet packet flows.
	EthFlowInfo        []EthFlowDescription `json:"ethFlowInfo,omitempty"`
	SponsorInformation SponsorInformation   `json:"sponsorInformation"`
	// Indicates whether the sponsoring data connectivity is enabled (true) or not (false).
	SponsoringEnabled bool `json:"sponsoringEnabled"`
	// string identifying a BDT Reference ID as defined in clause 5.3.3 of 3GPP TS 29.154.
	ReferenceId    *string         `json:"referenceId,omitempty"`
	ServAuthInfo   *ServAuthInfo   `json:"servAuthInfo,omitempty"`
	UsageThreshold *UsageThreshold `json:"usageThreshold,omitempty"`
	// Represents the list of event(s) to which the SCS/AS requests to subscribe to.
	Events []Event `json:"events,omitempty"`
}

ChargeableParty Represents the configuration of a chargeable party.

func NewChargeableParty

func NewChargeableParty(notificationDestination string, sponsorInformation SponsorInformation, sponsoringEnabled bool) *ChargeableParty

NewChargeableParty instantiates a new ChargeableParty 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 NewChargeablePartyWithDefaults

func NewChargeablePartyWithDefaults() *ChargeableParty

NewChargeablePartyWithDefaults instantiates a new ChargeableParty 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 (*ChargeableParty) GetDnn

func (o *ChargeableParty) GetDnn() string

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

func (*ChargeableParty) GetDnnOk

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

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

func (*ChargeableParty) GetEthFlowInfo

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

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

func (*ChargeableParty) GetEthFlowInfoOk

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

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

func (*ChargeableParty) GetEvents

func (o *ChargeableParty) GetEvents() []Event

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

func (*ChargeableParty) GetEventsOk

func (o *ChargeableParty) GetEventsOk() ([]Event, bool)

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

func (*ChargeableParty) GetExterAppId

func (o *ChargeableParty) GetExterAppId() string

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

func (*ChargeableParty) GetExterAppIdOk

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

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

func (*ChargeableParty) GetFlowInfo

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

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

func (*ChargeableParty) GetFlowInfoOk

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

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

func (*ChargeableParty) GetIpDomain

func (o *ChargeableParty) GetIpDomain() string

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

func (*ChargeableParty) GetIpDomainOk

func (o *ChargeableParty) 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 (*ChargeableParty) GetIpv4Addr

func (o *ChargeableParty) GetIpv4Addr() string

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

func (*ChargeableParty) GetIpv4AddrOk

func (o *ChargeableParty) 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 (*ChargeableParty) GetIpv6Addr

func (o *ChargeableParty) GetIpv6Addr() string

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

func (*ChargeableParty) GetIpv6AddrOk

func (o *ChargeableParty) GetIpv6AddrOk() (*string, 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 (*ChargeableParty) GetMacAddr

func (o *ChargeableParty) GetMacAddr() string

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

func (*ChargeableParty) GetMacAddrOk

func (o *ChargeableParty) 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 (*ChargeableParty) GetNotificationDestination

func (o *ChargeableParty) GetNotificationDestination() string

GetNotificationDestination returns the NotificationDestination field value

func (*ChargeableParty) GetNotificationDestinationOk

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

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

func (*ChargeableParty) GetReferenceId

func (o *ChargeableParty) GetReferenceId() string

GetReferenceId returns the ReferenceId field value if set, zero value otherwise.

func (*ChargeableParty) GetReferenceIdOk

func (o *ChargeableParty) GetReferenceIdOk() (*string, bool)

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

func (*ChargeableParty) GetRequestTestNotification

func (o *ChargeableParty) GetRequestTestNotification() bool

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

func (*ChargeableParty) GetRequestTestNotificationOk

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

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

func (*ChargeableParty) GetSelf

func (o *ChargeableParty) GetSelf() string

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

func (*ChargeableParty) GetSelfOk

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

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

func (*ChargeableParty) GetServAuthInfo

func (o *ChargeableParty) GetServAuthInfo() ServAuthInfo

GetServAuthInfo returns the ServAuthInfo field value if set, zero value otherwise.

func (*ChargeableParty) GetServAuthInfoOk

func (o *ChargeableParty) GetServAuthInfoOk() (*ServAuthInfo, bool)

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

func (*ChargeableParty) GetSnssai

func (o *ChargeableParty) GetSnssai() Snssai

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

func (*ChargeableParty) GetSnssaiOk

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

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

func (*ChargeableParty) GetSponsorInformation

func (o *ChargeableParty) GetSponsorInformation() SponsorInformation

GetSponsorInformation returns the SponsorInformation field value

func (*ChargeableParty) GetSponsorInformationOk

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

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

func (*ChargeableParty) GetSponsoringEnabled

func (o *ChargeableParty) GetSponsoringEnabled() bool

GetSponsoringEnabled returns the SponsoringEnabled field value

func (*ChargeableParty) GetSponsoringEnabledOk

func (o *ChargeableParty) GetSponsoringEnabledOk() (*bool, bool)

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

func (*ChargeableParty) GetSupportedFeatures

func (o *ChargeableParty) GetSupportedFeatures() string

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

func (*ChargeableParty) GetSupportedFeaturesOk

func (o *ChargeableParty) 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 (*ChargeableParty) GetUsageThreshold

func (o *ChargeableParty) GetUsageThreshold() UsageThreshold

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

func (*ChargeableParty) GetUsageThresholdOk

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

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

func (*ChargeableParty) GetWebsockNotifConfig

func (o *ChargeableParty) GetWebsockNotifConfig() WebsockNotifConfig

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

func (*ChargeableParty) GetWebsockNotifConfigOk

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

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

func (*ChargeableParty) HasDnn

func (o *ChargeableParty) HasDnn() bool

HasDnn returns a boolean if a field has been set.

func (*ChargeableParty) HasEthFlowInfo

func (o *ChargeableParty) HasEthFlowInfo() bool

HasEthFlowInfo returns a boolean if a field has been set.

func (*ChargeableParty) HasEvents

func (o *ChargeableParty) HasEvents() bool

HasEvents returns a boolean if a field has been set.

func (*ChargeableParty) HasExterAppId

func (o *ChargeableParty) HasExterAppId() bool

HasExterAppId returns a boolean if a field has been set.

func (*ChargeableParty) HasFlowInfo

func (o *ChargeableParty) HasFlowInfo() bool

HasFlowInfo returns a boolean if a field has been set.

func (*ChargeableParty) HasIpDomain

func (o *ChargeableParty) HasIpDomain() bool

HasIpDomain returns a boolean if a field has been set.

func (*ChargeableParty) HasIpv4Addr

func (o *ChargeableParty) HasIpv4Addr() bool

HasIpv4Addr returns a boolean if a field has been set.

func (*ChargeableParty) HasIpv6Addr

func (o *ChargeableParty) HasIpv6Addr() bool

HasIpv6Addr returns a boolean if a field has been set.

func (*ChargeableParty) HasMacAddr

func (o *ChargeableParty) HasMacAddr() bool

HasMacAddr returns a boolean if a field has been set.

func (*ChargeableParty) HasReferenceId

func (o *ChargeableParty) HasReferenceId() bool

HasReferenceId returns a boolean if a field has been set.

func (*ChargeableParty) HasRequestTestNotification

func (o *ChargeableParty) HasRequestTestNotification() bool

HasRequestTestNotification returns a boolean if a field has been set.

func (*ChargeableParty) HasSelf

func (o *ChargeableParty) HasSelf() bool

HasSelf returns a boolean if a field has been set.

func (*ChargeableParty) HasServAuthInfo

func (o *ChargeableParty) HasServAuthInfo() bool

HasServAuthInfo returns a boolean if a field has been set.

func (*ChargeableParty) HasSnssai

func (o *ChargeableParty) HasSnssai() bool

HasSnssai returns a boolean if a field has been set.

func (*ChargeableParty) HasSupportedFeatures

func (o *ChargeableParty) HasSupportedFeatures() bool

HasSupportedFeatures returns a boolean if a field has been set.

func (*ChargeableParty) HasUsageThreshold

func (o *ChargeableParty) HasUsageThreshold() bool

HasUsageThreshold returns a boolean if a field has been set.

func (*ChargeableParty) HasWebsockNotifConfig

func (o *ChargeableParty) HasWebsockNotifConfig() bool

HasWebsockNotifConfig returns a boolean if a field has been set.

func (ChargeableParty) MarshalJSON

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

func (*ChargeableParty) SetDnn

func (o *ChargeableParty) SetDnn(v string)

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

func (*ChargeableParty) SetEthFlowInfo

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

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

func (*ChargeableParty) SetEvents

func (o *ChargeableParty) SetEvents(v []Event)

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

func (*ChargeableParty) SetExterAppId

func (o *ChargeableParty) SetExterAppId(v string)

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

func (*ChargeableParty) SetFlowInfo

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

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

func (*ChargeableParty) SetIpDomain

func (o *ChargeableParty) SetIpDomain(v string)

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

func (*ChargeableParty) SetIpv4Addr

func (o *ChargeableParty) SetIpv4Addr(v string)

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

func (*ChargeableParty) SetIpv6Addr

func (o *ChargeableParty) SetIpv6Addr(v string)

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

func (*ChargeableParty) SetMacAddr

func (o *ChargeableParty) SetMacAddr(v string)

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

func (*ChargeableParty) SetNotificationDestination

func (o *ChargeableParty) SetNotificationDestination(v string)

SetNotificationDestination sets field value

func (*ChargeableParty) SetReferenceId

func (o *ChargeableParty) SetReferenceId(v string)

SetReferenceId gets a reference to the given string and assigns it to the ReferenceId field.

func (*ChargeableParty) SetRequestTestNotification

func (o *ChargeableParty) SetRequestTestNotification(v bool)

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

func (*ChargeableParty) SetSelf

func (o *ChargeableParty) SetSelf(v string)

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

func (*ChargeableParty) SetServAuthInfo

func (o *ChargeableParty) SetServAuthInfo(v ServAuthInfo)

SetServAuthInfo gets a reference to the given ServAuthInfo and assigns it to the ServAuthInfo field.

func (*ChargeableParty) SetSnssai

func (o *ChargeableParty) SetSnssai(v Snssai)

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

func (*ChargeableParty) SetSponsorInformation

func (o *ChargeableParty) SetSponsorInformation(v SponsorInformation)

SetSponsorInformation sets field value

func (*ChargeableParty) SetSponsoringEnabled

func (o *ChargeableParty) SetSponsoringEnabled(v bool)

SetSponsoringEnabled sets field value

func (*ChargeableParty) SetSupportedFeatures

func (o *ChargeableParty) SetSupportedFeatures(v string)

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

func (*ChargeableParty) SetUsageThreshold

func (o *ChargeableParty) SetUsageThreshold(v UsageThreshold)

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

func (*ChargeableParty) SetWebsockNotifConfig

func (o *ChargeableParty) SetWebsockNotifConfig(v WebsockNotifConfig)

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

func (ChargeableParty) ToMap

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

type ChargeablePartyPatch

type ChargeablePartyPatch struct {
	// Describes the IP flows.
	FlowInfo []FlowInfo `json:"flowInfo,omitempty"`
	// Identifies the external Application Identifier.
	ExterAppId *string `json:"exterAppId,omitempty"`
	// Identifies Ethernet packet flows.
	EthFlowInfo []EthFlowDescription `json:"ethFlowInfo,omitempty"`
	// Indicates whether the sponsoring data connectivity is enabled (true) or not (false).
	SponsoringEnabled *bool `json:"sponsoringEnabled,omitempty"`
	// string identifying a BDT Reference ID as defined in clause 5.3.3 of 3GPP TS 29.154.
	ReferenceId    *string                  `json:"referenceId,omitempty"`
	UsageThreshold NullableUsageThresholdRm `json:"usageThreshold,omitempty"`
	// string formatted according to IETF RFC 3986 identifying a referenced resource.
	NotificationDestination *string `json:"notificationDestination,omitempty"`
	// Represents the list of event(s) to which the SCS/AS requests to subscribe to.
	Events []Event `json:"events,omitempty"`
}

ChargeablePartyPatch Represents a modification request of a chargeable party resource.

func NewChargeablePartyPatch

func NewChargeablePartyPatch() *ChargeablePartyPatch

NewChargeablePartyPatch instantiates a new ChargeablePartyPatch 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 NewChargeablePartyPatchWithDefaults

func NewChargeablePartyPatchWithDefaults() *ChargeablePartyPatch

NewChargeablePartyPatchWithDefaults instantiates a new ChargeablePartyPatch 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 (*ChargeablePartyPatch) GetEthFlowInfo

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

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

func (*ChargeablePartyPatch) GetEthFlowInfoOk

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

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

func (*ChargeablePartyPatch) GetEvents

func (o *ChargeablePartyPatch) GetEvents() []Event

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

func (*ChargeablePartyPatch) GetEventsOk

func (o *ChargeablePartyPatch) GetEventsOk() ([]Event, bool)

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

func (*ChargeablePartyPatch) GetExterAppId

func (o *ChargeablePartyPatch) GetExterAppId() string

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

func (*ChargeablePartyPatch) GetExterAppIdOk

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

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

func (*ChargeablePartyPatch) GetFlowInfo

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

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

func (*ChargeablePartyPatch) GetFlowInfoOk

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

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

func (*ChargeablePartyPatch) GetNotificationDestination

func (o *ChargeablePartyPatch) GetNotificationDestination() string

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

func (*ChargeablePartyPatch) GetNotificationDestinationOk

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

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

func (*ChargeablePartyPatch) GetReferenceId

func (o *ChargeablePartyPatch) GetReferenceId() string

GetReferenceId returns the ReferenceId field value if set, zero value otherwise.

func (*ChargeablePartyPatch) GetReferenceIdOk

func (o *ChargeablePartyPatch) GetReferenceIdOk() (*string, bool)

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

func (*ChargeablePartyPatch) GetSponsoringEnabled

func (o *ChargeablePartyPatch) GetSponsoringEnabled() bool

GetSponsoringEnabled returns the SponsoringEnabled field value if set, zero value otherwise.

func (*ChargeablePartyPatch) GetSponsoringEnabledOk

func (o *ChargeablePartyPatch) GetSponsoringEnabledOk() (*bool, bool)

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

func (*ChargeablePartyPatch) GetUsageThreshold

func (o *ChargeablePartyPatch) GetUsageThreshold() UsageThresholdRm

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

func (*ChargeablePartyPatch) GetUsageThresholdOk

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

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

func (*ChargeablePartyPatch) HasEthFlowInfo

func (o *ChargeablePartyPatch) HasEthFlowInfo() bool

HasEthFlowInfo returns a boolean if a field has been set.

func (*ChargeablePartyPatch) HasEvents

func (o *ChargeablePartyPatch) HasEvents() bool

HasEvents returns a boolean if a field has been set.

func (*ChargeablePartyPatch) HasExterAppId

func (o *ChargeablePartyPatch) HasExterAppId() bool

HasExterAppId returns a boolean if a field has been set.

func (*ChargeablePartyPatch) HasFlowInfo

func (o *ChargeablePartyPatch) HasFlowInfo() bool

HasFlowInfo returns a boolean if a field has been set.

func (*ChargeablePartyPatch) HasNotificationDestination

func (o *ChargeablePartyPatch) HasNotificationDestination() bool

HasNotificationDestination returns a boolean if a field has been set.

func (*ChargeablePartyPatch) HasReferenceId

func (o *ChargeablePartyPatch) HasReferenceId() bool

HasReferenceId returns a boolean if a field has been set.

func (*ChargeablePartyPatch) HasSponsoringEnabled

func (o *ChargeablePartyPatch) HasSponsoringEnabled() bool

HasSponsoringEnabled returns a boolean if a field has been set.

func (*ChargeablePartyPatch) HasUsageThreshold

func (o *ChargeablePartyPatch) HasUsageThreshold() bool

HasUsageThreshold returns a boolean if a field has been set.

func (ChargeablePartyPatch) MarshalJSON

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

func (*ChargeablePartyPatch) SetEthFlowInfo

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

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

func (*ChargeablePartyPatch) SetEvents

func (o *ChargeablePartyPatch) SetEvents(v []Event)

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

func (*ChargeablePartyPatch) SetExterAppId

func (o *ChargeablePartyPatch) SetExterAppId(v string)

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

func (*ChargeablePartyPatch) SetFlowInfo

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

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

func (*ChargeablePartyPatch) SetNotificationDestination

func (o *ChargeablePartyPatch) SetNotificationDestination(v string)

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

func (*ChargeablePartyPatch) SetReferenceId

func (o *ChargeablePartyPatch) SetReferenceId(v string)

SetReferenceId gets a reference to the given string and assigns it to the ReferenceId field.

func (*ChargeablePartyPatch) SetSponsoringEnabled

func (o *ChargeablePartyPatch) SetSponsoringEnabled(v bool)

SetSponsoringEnabled gets a reference to the given bool and assigns it to the SponsoringEnabled field.

func (*ChargeablePartyPatch) SetUsageThreshold

func (o *ChargeablePartyPatch) SetUsageThreshold(v UsageThresholdRm)

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

func (*ChargeablePartyPatch) SetUsageThresholdNil

func (o *ChargeablePartyPatch) SetUsageThresholdNil()

SetUsageThresholdNil sets the value for UsageThreshold to be an explicit nil

func (ChargeablePartyPatch) ToMap

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

func (*ChargeablePartyPatch) UnsetUsageThreshold

func (o *ChargeablePartyPatch) UnsetUsageThreshold()

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

type ChargeablePartyTransactionOperationApiService

type ChargeablePartyTransactionOperationApiService service

ChargeablePartyTransactionOperationApiService ChargeablePartyTransactionOperationApi service

func (*ChargeablePartyTransactionOperationApiService) CreateChargeablePartyTransaction

CreateChargeablePartyTransaction Create a new chargeable party transaction resource.

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

func (*ChargeablePartyTransactionOperationApiService) CreateChargeablePartyTransactionExecute

Execute executes the request

@return ChargeableParty

func (*ChargeablePartyTransactionOperationApiService) FetchAllChargeablePartyTransactions

FetchAllChargeablePartyTransactions Read all or queried chargeable party transaction resources for a given SCS/AS.

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

func (*ChargeablePartyTransactionOperationApiService) FetchAllChargeablePartyTransactionsExecute

Execute executes the request

@return []ChargeableParty

type Configuration

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

Configuration stores the configuration of the API client

func NewConfiguration

func NewConfiguration() *Configuration

NewConfiguration returns a new Configuration object

func (*Configuration) AddDefaultHeader

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

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

func (*Configuration) ServerURL

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

ServerURL returns URL based on server settings

func (*Configuration) ServerURLWithContext

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

ServerURLWithContext returns a new server URL given an endpoint

type EthFlowDescription

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

EthFlowDescription Identifies an Ethernet flow.

func NewEthFlowDescription

func NewEthFlowDescription(ethType string) *EthFlowDescription

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

func NewEthFlowDescriptionWithDefaults

func NewEthFlowDescriptionWithDefaults() *EthFlowDescription

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

func (*EthFlowDescription) GetDestMacAddr

func (o *EthFlowDescription) GetDestMacAddr() string

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

func (*EthFlowDescription) GetDestMacAddrEnd

func (o *EthFlowDescription) GetDestMacAddrEnd() string

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

func (*EthFlowDescription) GetDestMacAddrEndOk

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

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

func (*EthFlowDescription) GetDestMacAddrOk

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

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

func (*EthFlowDescription) GetEthType

func (o *EthFlowDescription) GetEthType() string

GetEthType returns the EthType field value

func (*EthFlowDescription) GetEthTypeOk

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

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

func (*EthFlowDescription) GetFDesc

func (o *EthFlowDescription) GetFDesc() string

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

func (*EthFlowDescription) GetFDescOk

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

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

func (*EthFlowDescription) GetFDir

func (o *EthFlowDescription) GetFDir() FlowDirection

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

func (*EthFlowDescription) GetFDirOk

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

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

func (*EthFlowDescription) GetSourceMacAddr

func (o *EthFlowDescription) GetSourceMacAddr() string

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

func (*EthFlowDescription) GetSourceMacAddrOk

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

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

func (*EthFlowDescription) GetSrcMacAddrEnd

func (o *EthFlowDescription) GetSrcMacAddrEnd() string

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

func (*EthFlowDescription) GetSrcMacAddrEndOk

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

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

func (*EthFlowDescription) GetVlanTags

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

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

func (*EthFlowDescription) GetVlanTagsOk

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

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

func (*EthFlowDescription) HasDestMacAddr

func (o *EthFlowDescription) HasDestMacAddr() bool

HasDestMacAddr returns a boolean if a field has been set.

func (*EthFlowDescription) HasDestMacAddrEnd

func (o *EthFlowDescription) HasDestMacAddrEnd() bool

HasDestMacAddrEnd returns a boolean if a field has been set.

func (*EthFlowDescription) HasFDesc

func (o *EthFlowDescription) HasFDesc() bool

HasFDesc returns a boolean if a field has been set.

func (*EthFlowDescription) HasFDir

func (o *EthFlowDescription) HasFDir() bool

HasFDir returns a boolean if a field has been set.

func (*EthFlowDescription) HasSourceMacAddr

func (o *EthFlowDescription) HasSourceMacAddr() bool

HasSourceMacAddr returns a boolean if a field has been set.

func (*EthFlowDescription) HasSrcMacAddrEnd

func (o *EthFlowDescription) HasSrcMacAddrEnd() bool

HasSrcMacAddrEnd returns a boolean if a field has been set.

func (*EthFlowDescription) HasVlanTags

func (o *EthFlowDescription) HasVlanTags() bool

HasVlanTags returns a boolean if a field has been set.

func (EthFlowDescription) MarshalJSON

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

func (*EthFlowDescription) SetDestMacAddr

func (o *EthFlowDescription) SetDestMacAddr(v string)

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

func (*EthFlowDescription) SetDestMacAddrEnd

func (o *EthFlowDescription) SetDestMacAddrEnd(v string)

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

func (*EthFlowDescription) SetEthType

func (o *EthFlowDescription) SetEthType(v string)

SetEthType sets field value

func (*EthFlowDescription) SetFDesc

func (o *EthFlowDescription) SetFDesc(v string)

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

func (*EthFlowDescription) SetFDir

func (o *EthFlowDescription) SetFDir(v FlowDirection)

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

func (*EthFlowDescription) SetSourceMacAddr

func (o *EthFlowDescription) SetSourceMacAddr(v string)

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

func (*EthFlowDescription) SetSrcMacAddrEnd

func (o *EthFlowDescription) SetSrcMacAddrEnd(v string)

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

func (*EthFlowDescription) SetVlanTags

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

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

func (EthFlowDescription) ToMap

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

type Event

type Event struct {
	String *string
}

Event Possible values are: - SESSION_TERMINATION: Indicates that Rx session is terminated. - LOSS_OF_BEARER : Indicates a loss of a bearer. - RECOVERY_OF_BEARER: Indicates a recovery of a bearer. - RELEASE_OF_BEARER: Indicates a release of a bearer. - USAGE_REPORT: Indicates the usage report event. - FAILED_RESOURCES_ALLOCATION: Indicates the resource allocation is failed. - SUCCESSFUL_RESOURCES_ALLOCATION: Indicates the resource allocation is successful.

func (*Event) MarshalJSON

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

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

func (*Event) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type EventReport

type EventReport struct {
	Event            Event             `json:"event"`
	AccumulatedUsage *AccumulatedUsage `json:"accumulatedUsage,omitempty"`
	// Identifies the IP flows that were sent during event subscription
	FlowIds []int32 `json:"flowIds,omitempty"`
}

EventReport Represents an event report.

func NewEventReport

func NewEventReport(event Event) *EventReport

NewEventReport instantiates a new EventReport 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 NewEventReportWithDefaults

func NewEventReportWithDefaults() *EventReport

NewEventReportWithDefaults instantiates a new EventReport 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 (*EventReport) GetAccumulatedUsage

func (o *EventReport) GetAccumulatedUsage() AccumulatedUsage

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

func (*EventReport) GetAccumulatedUsageOk

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

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

func (*EventReport) GetEvent

func (o *EventReport) GetEvent() Event

GetEvent returns the Event field value

func (*EventReport) GetEventOk

func (o *EventReport) GetEventOk() (*Event, bool)

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

func (*EventReport) GetFlowIds

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

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

func (*EventReport) GetFlowIdsOk

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

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

func (*EventReport) HasAccumulatedUsage

func (o *EventReport) HasAccumulatedUsage() bool

HasAccumulatedUsage returns a boolean if a field has been set.

func (*EventReport) HasFlowIds

func (o *EventReport) HasFlowIds() bool

HasFlowIds returns a boolean if a field has been set.

func (EventReport) MarshalJSON

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

func (*EventReport) SetAccumulatedUsage

func (o *EventReport) SetAccumulatedUsage(v AccumulatedUsage)

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

func (*EventReport) SetEvent

func (o *EventReport) SetEvent(v Event)

SetEvent sets field value

func (*EventReport) SetFlowIds

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

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

func (EventReport) ToMap

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

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 FlowInfo

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

FlowInfo Represents IP flow information.

func NewFlowInfo

func NewFlowInfo(flowId int32) *FlowInfo

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

func NewFlowInfoWithDefaults

func NewFlowInfoWithDefaults() *FlowInfo

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

func (*FlowInfo) GetFlowDescriptions

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

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

func (*FlowInfo) GetFlowDescriptionsOk

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

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

func (*FlowInfo) GetFlowId

func (o *FlowInfo) GetFlowId() int32

GetFlowId returns the FlowId field value

func (*FlowInfo) GetFlowIdOk

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

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

func (*FlowInfo) HasFlowDescriptions

func (o *FlowInfo) HasFlowDescriptions() bool

HasFlowDescriptions returns a boolean if a field has been set.

func (FlowInfo) MarshalJSON

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

func (*FlowInfo) SetFlowDescriptions

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

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

func (*FlowInfo) SetFlowId

func (o *FlowInfo) SetFlowId(v int32)

SetFlowId sets field value

func (FlowInfo) ToMap

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

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 IndividualChargeablePartyResourceOperationApiService

type IndividualChargeablePartyResourceOperationApiService service

IndividualChargeablePartyResourceOperationApiService IndividualChargeablePartyResourceOperationApi service

func (*IndividualChargeablePartyResourceOperationApiService) DeleteChargeablePartyTransaction

DeleteChargeablePartyTransaction Deletes a chargeable party resource for a given SCS/AS and a transcation Id.

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

func (*IndividualChargeablePartyResourceOperationApiService) DeleteChargeablePartyTransactionExecute

Execute executes the request

@return NotificationData

func (*IndividualChargeablePartyResourceOperationApiService) FetchIndChargeablePartyTransaction

FetchIndChargeablePartyTransaction Read a chargeable party resource for a given SCS/AS and a transaction Id.

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

func (*IndividualChargeablePartyResourceOperationApiService) FetchIndChargeablePartyTransactionExecute

Execute executes the request

@return ChargeableParty

func (*IndividualChargeablePartyResourceOperationApiService) UpdateChargeablePartyTransaction

UpdateChargeablePartyTransaction Updates a existing chargeable party resource for a given SCS/AS and transaction Id.

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

func (*IndividualChargeablePartyResourceOperationApiService) UpdateChargeablePartyTransactionExecute

Execute executes the request

@return ChargeableParty

type InvalidParam

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

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

func NewInvalidParam

func NewInvalidParam(param string) *InvalidParam

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

func NewInvalidParamWithDefaults

func NewInvalidParamWithDefaults() *InvalidParam

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

func (*InvalidParam) GetParam

func (o *InvalidParam) GetParam() string

GetParam returns the Param field value

func (*InvalidParam) GetParamOk

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

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

func (*InvalidParam) GetReason

func (o *InvalidParam) GetReason() string

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

func (*InvalidParam) GetReasonOk

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

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

func (*InvalidParam) HasReason

func (o *InvalidParam) HasReason() bool

HasReason returns a boolean if a field has been set.

func (InvalidParam) MarshalJSON

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

func (*InvalidParam) SetParam

func (o *InvalidParam) SetParam(v string)

SetParam sets field value

func (*InvalidParam) SetReason

func (o *InvalidParam) SetReason(v string)

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

func (InvalidParam) ToMap

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

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

type Ipv6Addr struct {
}

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

func NewIpv6Addr

func NewIpv6Addr() *Ipv6Addr

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

func NewIpv6AddrWithDefaults

func NewIpv6AddrWithDefaults() *Ipv6Addr

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

func (Ipv6Addr) MarshalJSON

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

func (Ipv6Addr) ToMap

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

type Ipv6Prefix

type Ipv6Prefix struct {
}

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

func NewIpv6Prefix

func NewIpv6Prefix() *Ipv6Prefix

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

func NewIpv6PrefixWithDefaults

func NewIpv6PrefixWithDefaults() *Ipv6Prefix

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

func (Ipv6Prefix) MarshalJSON

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

func (Ipv6Prefix) ToMap

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

type MappedNullable

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

type NotificationData

type NotificationData struct {
	// string formatted according to IETF RFC 3986 identifying a referenced resource.
	Transaction string `json:"transaction"`
	// Contains the reported event and applicable information
	EventReports []EventReport `json:"eventReports"`
}

NotificationData Represents the information to be conveyed in a bearer level event(s) notification.

func NewNotificationData

func NewNotificationData(transaction string, eventReports []EventReport) *NotificationData

NewNotificationData instantiates a new NotificationData 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 NewNotificationDataWithDefaults

func NewNotificationDataWithDefaults() *NotificationData

NewNotificationDataWithDefaults instantiates a new NotificationData 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 (*NotificationData) GetEventReports

func (o *NotificationData) GetEventReports() []EventReport

GetEventReports returns the EventReports field value

func (*NotificationData) GetEventReportsOk

func (o *NotificationData) GetEventReportsOk() ([]EventReport, bool)

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

func (*NotificationData) GetTransaction

func (o *NotificationData) GetTransaction() string

GetTransaction returns the Transaction field value

func (*NotificationData) GetTransactionOk

func (o *NotificationData) GetTransactionOk() (*string, bool)

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

func (NotificationData) MarshalJSON

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

func (*NotificationData) SetEventReports

func (o *NotificationData) SetEventReports(v []EventReport)

SetEventReports sets field value

func (*NotificationData) SetTransaction

func (o *NotificationData) SetTransaction(v string)

SetTransaction sets field value

func (NotificationData) ToMap

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

type NullableAccumulatedUsage

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

func NewNullableAccumulatedUsage

func NewNullableAccumulatedUsage(val *AccumulatedUsage) *NullableAccumulatedUsage

func (NullableAccumulatedUsage) Get

func (NullableAccumulatedUsage) IsSet

func (v NullableAccumulatedUsage) IsSet() bool

func (NullableAccumulatedUsage) MarshalJSON

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

func (*NullableAccumulatedUsage) Set

func (*NullableAccumulatedUsage) UnmarshalJSON

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

func (*NullableAccumulatedUsage) Unset

func (v *NullableAccumulatedUsage) Unset()

type NullableBool

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

func NewNullableBool

func NewNullableBool(val *bool) *NullableBool

func (NullableBool) Get

func (v NullableBool) Get() *bool

func (NullableBool) IsSet

func (v NullableBool) IsSet() bool

func (NullableBool) MarshalJSON

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

func (*NullableBool) Set

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

func (*NullableBool) UnmarshalJSON

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

func (*NullableBool) Unset

func (v *NullableBool) Unset()

type NullableChargeableParty

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

func NewNullableChargeableParty

func NewNullableChargeableParty(val *ChargeableParty) *NullableChargeableParty

func (NullableChargeableParty) Get

func (NullableChargeableParty) IsSet

func (v NullableChargeableParty) IsSet() bool

func (NullableChargeableParty) MarshalJSON

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

func (*NullableChargeableParty) Set

func (*NullableChargeableParty) UnmarshalJSON

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

func (*NullableChargeableParty) Unset

func (v *NullableChargeableParty) Unset()

type NullableChargeablePartyPatch

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

func NewNullableChargeablePartyPatch

func NewNullableChargeablePartyPatch(val *ChargeablePartyPatch) *NullableChargeablePartyPatch

func (NullableChargeablePartyPatch) Get

func (NullableChargeablePartyPatch) IsSet

func (NullableChargeablePartyPatch) MarshalJSON

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

func (*NullableChargeablePartyPatch) Set

func (*NullableChargeablePartyPatch) UnmarshalJSON

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

func (*NullableChargeablePartyPatch) Unset

func (v *NullableChargeablePartyPatch) 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 NullableEvent

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

func NewNullableEvent

func NewNullableEvent(val *Event) *NullableEvent

func (NullableEvent) Get

func (v NullableEvent) Get() *Event

func (NullableEvent) IsSet

func (v NullableEvent) IsSet() bool

func (NullableEvent) MarshalJSON

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

func (*NullableEvent) Set

func (v *NullableEvent) Set(val *Event)

func (*NullableEvent) UnmarshalJSON

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

func (*NullableEvent) Unset

func (v *NullableEvent) Unset()

type NullableEventReport

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

func NewNullableEventReport

func NewNullableEventReport(val *EventReport) *NullableEventReport

func (NullableEventReport) Get

func (NullableEventReport) IsSet

func (v NullableEventReport) IsSet() bool

func (NullableEventReport) MarshalJSON

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

func (*NullableEventReport) Set

func (v *NullableEventReport) Set(val *EventReport)

func (*NullableEventReport) UnmarshalJSON

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

func (*NullableEventReport) Unset

func (v *NullableEventReport) Unset()

type NullableFloat32

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

func NewNullableFloat32

func NewNullableFloat32(val *float32) *NullableFloat32

func (NullableFloat32) Get

func (v NullableFloat32) Get() *float32

func (NullableFloat32) IsSet

func (v NullableFloat32) IsSet() bool

func (NullableFloat32) MarshalJSON

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

func (*NullableFloat32) Set

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

func (*NullableFloat32) UnmarshalJSON

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

func (*NullableFloat32) Unset

func (v *NullableFloat32) Unset()

type NullableFloat64

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

func NewNullableFloat64

func NewNullableFloat64(val *float64) *NullableFloat64

func (NullableFloat64) Get

func (v NullableFloat64) Get() *float64

func (NullableFloat64) IsSet

func (v NullableFloat64) IsSet() bool

func (NullableFloat64) MarshalJSON

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

func (*NullableFloat64) Set

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

func (*NullableFloat64) UnmarshalJSON

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

func (*NullableFloat64) Unset

func (v *NullableFloat64) Unset()

type NullableFlowDirection

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

func NewNullableFlowDirection

func NewNullableFlowDirection(val *FlowDirection) *NullableFlowDirection

func (NullableFlowDirection) Get

func (NullableFlowDirection) IsSet

func (v NullableFlowDirection) IsSet() bool

func (NullableFlowDirection) MarshalJSON

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

func (*NullableFlowDirection) Set

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

func (*NullableFlowDirection) UnmarshalJSON

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

func (*NullableFlowDirection) Unset

func (v *NullableFlowDirection) Unset()

type NullableFlowInfo

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

func NewNullableFlowInfo

func NewNullableFlowInfo(val *FlowInfo) *NullableFlowInfo

func (NullableFlowInfo) Get

func (v NullableFlowInfo) Get() *FlowInfo

func (NullableFlowInfo) IsSet

func (v NullableFlowInfo) IsSet() bool

func (NullableFlowInfo) MarshalJSON

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

func (*NullableFlowInfo) Set

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

func (*NullableFlowInfo) UnmarshalJSON

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

func (*NullableFlowInfo) Unset

func (v *NullableFlowInfo) Unset()

type NullableInt

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

func NewNullableInt

func NewNullableInt(val *int) *NullableInt

func (NullableInt) Get

func (v NullableInt) Get() *int

func (NullableInt) IsSet

func (v NullableInt) IsSet() bool

func (NullableInt) MarshalJSON

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

func (*NullableInt) Set

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

func (*NullableInt) UnmarshalJSON

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

func (*NullableInt) Unset

func (v *NullableInt) Unset()

type NullableInt32

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

func NewNullableInt32

func NewNullableInt32(val *int32) *NullableInt32

func (NullableInt32) Get

func (v NullableInt32) Get() *int32

func (NullableInt32) IsSet

func (v NullableInt32) IsSet() bool

func (NullableInt32) MarshalJSON

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

func (*NullableInt32) Set

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

func (*NullableInt32) UnmarshalJSON

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

func (*NullableInt32) Unset

func (v *NullableInt32) Unset()

type NullableInt64

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

func NewNullableInt64

func NewNullableInt64(val *int64) *NullableInt64

func (NullableInt64) Get

func (v NullableInt64) Get() *int64

func (NullableInt64) IsSet

func (v NullableInt64) IsSet() bool

func (NullableInt64) MarshalJSON

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

func (*NullableInt64) Set

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

func (*NullableInt64) UnmarshalJSON

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

func (*NullableInt64) Unset

func (v *NullableInt64) Unset()

type NullableInvalidParam

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

func NewNullableInvalidParam

func NewNullableInvalidParam(val *InvalidParam) *NullableInvalidParam

func (NullableInvalidParam) Get

func (NullableInvalidParam) IsSet

func (v NullableInvalidParam) IsSet() bool

func (NullableInvalidParam) MarshalJSON

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

func (*NullableInvalidParam) Set

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

func (*NullableInvalidParam) UnmarshalJSON

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

func (*NullableInvalidParam) Unset

func (v *NullableInvalidParam) Unset()

type NullableIpAddr

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

func NewNullableIpAddr

func NewNullableIpAddr(val *IpAddr) *NullableIpAddr

func (NullableIpAddr) Get

func (v NullableIpAddr) Get() *IpAddr

func (NullableIpAddr) IsSet

func (v NullableIpAddr) IsSet() bool

func (NullableIpAddr) MarshalJSON

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

func (*NullableIpAddr) Set

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

func (*NullableIpAddr) UnmarshalJSON

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

func (*NullableIpAddr) Unset

func (v *NullableIpAddr) Unset()

type NullableIpv6Addr

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

func NewNullableIpv6Addr

func NewNullableIpv6Addr(val *Ipv6Addr) *NullableIpv6Addr

func (NullableIpv6Addr) Get

func (v NullableIpv6Addr) Get() *Ipv6Addr

func (NullableIpv6Addr) IsSet

func (v NullableIpv6Addr) IsSet() bool

func (NullableIpv6Addr) MarshalJSON

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

func (*NullableIpv6Addr) Set

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

func (*NullableIpv6Addr) UnmarshalJSON

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

func (*NullableIpv6Addr) Unset

func (v *NullableIpv6Addr) Unset()

type NullableIpv6Prefix

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

func NewNullableIpv6Prefix

func NewNullableIpv6Prefix(val *Ipv6Prefix) *NullableIpv6Prefix

func (NullableIpv6Prefix) Get

func (v NullableIpv6Prefix) Get() *Ipv6Prefix

func (NullableIpv6Prefix) IsSet

func (v NullableIpv6Prefix) IsSet() bool

func (NullableIpv6Prefix) MarshalJSON

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

func (*NullableIpv6Prefix) Set

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

func (*NullableIpv6Prefix) UnmarshalJSON

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

func (*NullableIpv6Prefix) Unset

func (v *NullableIpv6Prefix) Unset()

type NullableNotificationData

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

func NewNullableNotificationData

func NewNullableNotificationData(val *NotificationData) *NullableNotificationData

func (NullableNotificationData) Get

func (NullableNotificationData) IsSet

func (v NullableNotificationData) IsSet() bool

func (NullableNotificationData) MarshalJSON

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

func (*NullableNotificationData) Set

func (*NullableNotificationData) UnmarshalJSON

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

func (*NullableNotificationData) Unset

func (v *NullableNotificationData) 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 NullableServAuthInfo

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

func NewNullableServAuthInfo

func NewNullableServAuthInfo(val *ServAuthInfo) *NullableServAuthInfo

func (NullableServAuthInfo) Get

func (NullableServAuthInfo) IsSet

func (v NullableServAuthInfo) IsSet() bool

func (NullableServAuthInfo) MarshalJSON

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

func (*NullableServAuthInfo) Set

func (v *NullableServAuthInfo) Set(val *ServAuthInfo)

func (*NullableServAuthInfo) UnmarshalJSON

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

func (*NullableServAuthInfo) Unset

func (v *NullableServAuthInfo) Unset()

type NullableSnssai

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

func NewNullableSnssai

func NewNullableSnssai(val *Snssai) *NullableSnssai

func (NullableSnssai) Get

func (v NullableSnssai) Get() *Snssai

func (NullableSnssai) IsSet

func (v NullableSnssai) IsSet() bool

func (NullableSnssai) MarshalJSON

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

func (*NullableSnssai) Set

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

func (*NullableSnssai) UnmarshalJSON

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

func (*NullableSnssai) Unset

func (v *NullableSnssai) Unset()

type NullableSponsorInformation

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

func NewNullableSponsorInformation

func NewNullableSponsorInformation(val *SponsorInformation) *NullableSponsorInformation

func (NullableSponsorInformation) Get

func (NullableSponsorInformation) IsSet

func (v NullableSponsorInformation) IsSet() bool

func (NullableSponsorInformation) MarshalJSON

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

func (*NullableSponsorInformation) Set

func (*NullableSponsorInformation) UnmarshalJSON

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

func (*NullableSponsorInformation) Unset

func (v *NullableSponsorInformation) Unset()

type NullableString

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

func NewNullableString

func NewNullableString(val *string) *NullableString

func (NullableString) Get

func (v NullableString) Get() *string

func (NullableString) IsSet

func (v NullableString) IsSet() bool

func (NullableString) MarshalJSON

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

func (*NullableString) Set

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

func (*NullableString) UnmarshalJSON

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

func (*NullableString) Unset

func (v *NullableString) Unset()

type NullableTime

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

func NewNullableTime

func NewNullableTime(val *time.Time) *NullableTime

func (NullableTime) Get

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

func (NullableTime) IsSet

func (v NullableTime) IsSet() bool

func (NullableTime) MarshalJSON

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

func (*NullableTime) Set

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

func (*NullableTime) UnmarshalJSON

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

func (*NullableTime) Unset

func (v *NullableTime) Unset()

type NullableUsageThreshold

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

func NewNullableUsageThreshold

func NewNullableUsageThreshold(val *UsageThreshold) *NullableUsageThreshold

func (NullableUsageThreshold) Get

func (NullableUsageThreshold) IsSet

func (v NullableUsageThreshold) IsSet() bool

func (NullableUsageThreshold) MarshalJSON

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

func (*NullableUsageThreshold) Set

func (*NullableUsageThreshold) UnmarshalJSON

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

func (*NullableUsageThreshold) Unset

func (v *NullableUsageThreshold) Unset()

type NullableUsageThresholdRm

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

func NewNullableUsageThresholdRm

func NewNullableUsageThresholdRm(val *UsageThresholdRm) *NullableUsageThresholdRm

func (NullableUsageThresholdRm) Get

func (NullableUsageThresholdRm) IsSet

func (v NullableUsageThresholdRm) IsSet() bool

func (NullableUsageThresholdRm) MarshalJSON

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

func (*NullableUsageThresholdRm) Set

func (*NullableUsageThresholdRm) UnmarshalJSON

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

func (*NullableUsageThresholdRm) Unset

func (v *NullableUsageThresholdRm) Unset()

type NullableWebsockNotifConfig

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

func NewNullableWebsockNotifConfig

func NewNullableWebsockNotifConfig(val *WebsockNotifConfig) *NullableWebsockNotifConfig

func (NullableWebsockNotifConfig) Get

func (NullableWebsockNotifConfig) IsSet

func (v NullableWebsockNotifConfig) IsSet() bool

func (NullableWebsockNotifConfig) MarshalJSON

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

func (*NullableWebsockNotifConfig) Set

func (*NullableWebsockNotifConfig) UnmarshalJSON

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

func (*NullableWebsockNotifConfig) Unset

func (v *NullableWebsockNotifConfig) Unset()

type ProblemDetails

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

ProblemDetails Represents additional information and details on an error response.

func NewProblemDetails

func NewProblemDetails() *ProblemDetails

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

func NewProblemDetailsWithDefaults

func NewProblemDetailsWithDefaults() *ProblemDetails

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

func (*ProblemDetails) GetCause

func (o *ProblemDetails) GetCause() string

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

func (*ProblemDetails) GetCauseOk

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

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

func (*ProblemDetails) GetDetail

func (o *ProblemDetails) GetDetail() string

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

func (*ProblemDetails) GetDetailOk

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

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

func (*ProblemDetails) GetInstance

func (o *ProblemDetails) GetInstance() string

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

func (*ProblemDetails) GetInstanceOk

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

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

func (*ProblemDetails) GetInvalidParams

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

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

func (*ProblemDetails) GetInvalidParamsOk

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

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

func (*ProblemDetails) GetStatus

func (o *ProblemDetails) GetStatus() int32

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

func (*ProblemDetails) GetStatusOk

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

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

func (*ProblemDetails) GetSupportedFeatures

func (o *ProblemDetails) GetSupportedFeatures() string

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

func (*ProblemDetails) GetSupportedFeaturesOk

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

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

func (*ProblemDetails) GetTitle

func (o *ProblemDetails) GetTitle() string

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

func (*ProblemDetails) GetTitleOk

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

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

func (*ProblemDetails) GetType

func (o *ProblemDetails) GetType() string

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

func (*ProblemDetails) GetTypeOk

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

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

func (*ProblemDetails) HasCause

func (o *ProblemDetails) HasCause() bool

HasCause returns a boolean if a field has been set.

func (*ProblemDetails) HasDetail

func (o *ProblemDetails) HasDetail() bool

HasDetail returns a boolean if a field has been set.

func (*ProblemDetails) HasInstance

func (o *ProblemDetails) HasInstance() bool

HasInstance returns a boolean if a field has been set.

func (*ProblemDetails) HasInvalidParams

func (o *ProblemDetails) HasInvalidParams() bool

HasInvalidParams returns a boolean if a field has been set.

func (*ProblemDetails) HasStatus

func (o *ProblemDetails) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*ProblemDetails) HasSupportedFeatures

func (o *ProblemDetails) HasSupportedFeatures() bool

HasSupportedFeatures returns a boolean if a field has been set.

func (*ProblemDetails) HasTitle

func (o *ProblemDetails) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*ProblemDetails) HasType

func (o *ProblemDetails) HasType() bool

HasType returns a boolean if a field has been set.

func (ProblemDetails) MarshalJSON

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

func (*ProblemDetails) SetCause

func (o *ProblemDetails) SetCause(v string)

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

func (*ProblemDetails) SetDetail

func (o *ProblemDetails) SetDetail(v string)

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

func (*ProblemDetails) SetInstance

func (o *ProblemDetails) SetInstance(v string)

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

func (*ProblemDetails) SetInvalidParams

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

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

func (*ProblemDetails) SetStatus

func (o *ProblemDetails) SetStatus(v int32)

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

func (*ProblemDetails) SetSupportedFeatures

func (o *ProblemDetails) SetSupportedFeatures(v string)

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

func (*ProblemDetails) SetTitle

func (o *ProblemDetails) SetTitle(v string)

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

func (*ProblemDetails) SetType

func (o *ProblemDetails) SetType(v string)

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

func (ProblemDetails) ToMap

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

type ServAuthInfo

type ServAuthInfo struct {
	String *string
}

ServAuthInfo Indicates the result of the Policy Authorization service request from the AF.

func (*ServAuthInfo) MarshalJSON

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

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

func (*ServAuthInfo) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type ServerConfiguration

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

ServerConfiguration stores the information about a server

type ServerConfigurations

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL

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

URL formats template on a index using given variables

type ServerVariable

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

ServerVariable stores the information about a server variable

type Snssai

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

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

func NewSnssai

func NewSnssai(sst int32) *Snssai

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

func NewSnssaiWithDefaults

func NewSnssaiWithDefaults() *Snssai

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

func (*Snssai) GetSd

func (o *Snssai) GetSd() string

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

func (*Snssai) GetSdOk

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

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

func (*Snssai) GetSst

func (o *Snssai) GetSst() int32

GetSst returns the Sst field value

func (*Snssai) GetSstOk

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

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

func (*Snssai) HasSd

func (o *Snssai) HasSd() bool

HasSd returns a boolean if a field has been set.

func (Snssai) MarshalJSON

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

func (*Snssai) SetSd

func (o *Snssai) SetSd(v string)

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

func (*Snssai) SetSst

func (o *Snssai) SetSst(v int32)

SetSst sets field value

func (Snssai) ToMap

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

type SponsorInformation

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

SponsorInformation Represents a sponsor information.

func NewSponsorInformation

func NewSponsorInformation(sponsorId string, aspId string) *SponsorInformation

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

func NewSponsorInformationWithDefaults

func NewSponsorInformationWithDefaults() *SponsorInformation

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

func (*SponsorInformation) GetAspId

func (o *SponsorInformation) GetAspId() string

GetAspId returns the AspId field value

func (*SponsorInformation) GetAspIdOk

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

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

func (*SponsorInformation) GetSponsorId

func (o *SponsorInformation) GetSponsorId() string

GetSponsorId returns the SponsorId field value

func (*SponsorInformation) GetSponsorIdOk

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

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

func (SponsorInformation) MarshalJSON

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

func (*SponsorInformation) SetAspId

func (o *SponsorInformation) SetAspId(v string)

SetAspId sets field value

func (*SponsorInformation) SetSponsorId

func (o *SponsorInformation) SetSponsorId(v string)

SetSponsorId sets field value

func (SponsorInformation) ToMap

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

type UsageThreshold

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

UsageThreshold Represents a usage threshold.

func NewUsageThreshold

func NewUsageThreshold() *UsageThreshold

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

func NewUsageThresholdWithDefaults

func NewUsageThresholdWithDefaults() *UsageThreshold

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

func (*UsageThreshold) GetDownlinkVolume

func (o *UsageThreshold) GetDownlinkVolume() int64

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

func (*UsageThreshold) GetDownlinkVolumeOk

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

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

func (*UsageThreshold) GetDuration

func (o *UsageThreshold) GetDuration() int32

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

func (*UsageThreshold) GetDurationOk

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

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

func (*UsageThreshold) GetTotalVolume

func (o *UsageThreshold) GetTotalVolume() int64

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

func (*UsageThreshold) GetTotalVolumeOk

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

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

func (*UsageThreshold) GetUplinkVolume

func (o *UsageThreshold) GetUplinkVolume() int64

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

func (*UsageThreshold) GetUplinkVolumeOk

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

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

func (*UsageThreshold) HasDownlinkVolume

func (o *UsageThreshold) HasDownlinkVolume() bool

HasDownlinkVolume returns a boolean if a field has been set.

func (*UsageThreshold) HasDuration

func (o *UsageThreshold) HasDuration() bool

HasDuration returns a boolean if a field has been set.

func (*UsageThreshold) HasTotalVolume

func (o *UsageThreshold) HasTotalVolume() bool

HasTotalVolume returns a boolean if a field has been set.

func (*UsageThreshold) HasUplinkVolume

func (o *UsageThreshold) HasUplinkVolume() bool

HasUplinkVolume returns a boolean if a field has been set.

func (UsageThreshold) MarshalJSON

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

func (*UsageThreshold) SetDownlinkVolume

func (o *UsageThreshold) SetDownlinkVolume(v int64)

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

func (*UsageThreshold) SetDuration

func (o *UsageThreshold) SetDuration(v int32)

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

func (*UsageThreshold) SetTotalVolume

func (o *UsageThreshold) SetTotalVolume(v int64)

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

func (*UsageThreshold) SetUplinkVolume

func (o *UsageThreshold) SetUplinkVolume(v int64)

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

func (UsageThreshold) ToMap

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

type UsageThresholdRm

type UsageThresholdRm struct {
	// Unsigned integer identifying a period of time in units of seconds with \"nullable=true\" property.
	Duration NullableInt32 `json:"duration,omitempty"`
	// Unsigned integer identifying a volume in units of bytes with \"nullable=true\" property.
	TotalVolume NullableInt64 `json:"totalVolume,omitempty"`
	// Unsigned integer identifying a volume in units of bytes with \"nullable=true\" property.
	DownlinkVolume NullableInt64 `json:"downlinkVolume,omitempty"`
	// Unsigned integer identifying a volume in units of bytes with \"nullable=true\" property.
	UplinkVolume NullableInt64 `json:"uplinkVolume,omitempty"`
}

UsageThresholdRm Represents the same as the UsageThreshold data type but with the nullable:true property.

func NewUsageThresholdRm

func NewUsageThresholdRm() *UsageThresholdRm

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

func NewUsageThresholdRmWithDefaults

func NewUsageThresholdRmWithDefaults() *UsageThresholdRm

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

func (*UsageThresholdRm) GetDownlinkVolume

func (o *UsageThresholdRm) GetDownlinkVolume() int64

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

func (*UsageThresholdRm) GetDownlinkVolumeOk

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

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

func (*UsageThresholdRm) GetDuration

func (o *UsageThresholdRm) GetDuration() int32

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

func (*UsageThresholdRm) GetDurationOk

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

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

func (*UsageThresholdRm) GetTotalVolume

func (o *UsageThresholdRm) GetTotalVolume() int64

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

func (*UsageThresholdRm) GetTotalVolumeOk

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

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

func (*UsageThresholdRm) GetUplinkVolume

func (o *UsageThresholdRm) GetUplinkVolume() int64

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

func (*UsageThresholdRm) GetUplinkVolumeOk

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

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

func (*UsageThresholdRm) HasDownlinkVolume

func (o *UsageThresholdRm) HasDownlinkVolume() bool

HasDownlinkVolume returns a boolean if a field has been set.

func (*UsageThresholdRm) HasDuration

func (o *UsageThresholdRm) HasDuration() bool

HasDuration returns a boolean if a field has been set.

func (*UsageThresholdRm) HasTotalVolume

func (o *UsageThresholdRm) HasTotalVolume() bool

HasTotalVolume returns a boolean if a field has been set.

func (*UsageThresholdRm) HasUplinkVolume

func (o *UsageThresholdRm) HasUplinkVolume() bool

HasUplinkVolume returns a boolean if a field has been set.

func (UsageThresholdRm) MarshalJSON

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

func (*UsageThresholdRm) SetDownlinkVolume

func (o *UsageThresholdRm) SetDownlinkVolume(v int64)

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

func (*UsageThresholdRm) SetDownlinkVolumeNil

func (o *UsageThresholdRm) SetDownlinkVolumeNil()

SetDownlinkVolumeNil sets the value for DownlinkVolume to be an explicit nil

func (*UsageThresholdRm) SetDuration

func (o *UsageThresholdRm) SetDuration(v int32)

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

func (*UsageThresholdRm) SetDurationNil

func (o *UsageThresholdRm) SetDurationNil()

SetDurationNil sets the value for Duration to be an explicit nil

func (*UsageThresholdRm) SetTotalVolume

func (o *UsageThresholdRm) SetTotalVolume(v int64)

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

func (*UsageThresholdRm) SetTotalVolumeNil

func (o *UsageThresholdRm) SetTotalVolumeNil()

SetTotalVolumeNil sets the value for TotalVolume to be an explicit nil

func (*UsageThresholdRm) SetUplinkVolume

func (o *UsageThresholdRm) SetUplinkVolume(v int64)

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

func (*UsageThresholdRm) SetUplinkVolumeNil

func (o *UsageThresholdRm) SetUplinkVolumeNil()

SetUplinkVolumeNil sets the value for UplinkVolume to be an explicit nil

func (UsageThresholdRm) ToMap

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

func (*UsageThresholdRm) UnsetDownlinkVolume

func (o *UsageThresholdRm) UnsetDownlinkVolume()

UnsetDownlinkVolume ensures that no value is present for DownlinkVolume, not even an explicit nil

func (*UsageThresholdRm) UnsetDuration

func (o *UsageThresholdRm) UnsetDuration()

UnsetDuration ensures that no value is present for Duration, not even an explicit nil

func (*UsageThresholdRm) UnsetTotalVolume

func (o *UsageThresholdRm) UnsetTotalVolume()

UnsetTotalVolume ensures that no value is present for TotalVolume, not even an explicit nil

func (*UsageThresholdRm) UnsetUplinkVolume

func (o *UsageThresholdRm) UnsetUplinkVolume()

UnsetUplinkVolume ensures that no value is present for UplinkVolume, not even an explicit nil

type WebsockNotifConfig

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

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

func NewWebsockNotifConfig

func NewWebsockNotifConfig() *WebsockNotifConfig

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

func NewWebsockNotifConfigWithDefaults

func NewWebsockNotifConfigWithDefaults() *WebsockNotifConfig

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

func (*WebsockNotifConfig) GetRequestWebsocketUri

func (o *WebsockNotifConfig) GetRequestWebsocketUri() bool

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

func (*WebsockNotifConfig) GetRequestWebsocketUriOk

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

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

func (*WebsockNotifConfig) GetWebsocketUri

func (o *WebsockNotifConfig) GetWebsocketUri() string

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

func (*WebsockNotifConfig) GetWebsocketUriOk

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

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

func (*WebsockNotifConfig) HasRequestWebsocketUri

func (o *WebsockNotifConfig) HasRequestWebsocketUri() bool

HasRequestWebsocketUri returns a boolean if a field has been set.

func (*WebsockNotifConfig) HasWebsocketUri

func (o *WebsockNotifConfig) HasWebsocketUri() bool

HasWebsocketUri returns a boolean if a field has been set.

func (WebsockNotifConfig) MarshalJSON

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

func (*WebsockNotifConfig) SetRequestWebsocketUri

func (o *WebsockNotifConfig) SetRequestWebsocketUri(v bool)

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

func (*WebsockNotifConfig) SetWebsocketUri

func (o *WebsockNotifConfig) SetWebsocketUri(v string)

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

func (WebsockNotifConfig) ToMap

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

Jump to

Keyboard shortcuts

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