OpenAPI_Nbsf_Management

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

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

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

README

Go API client for OpenAPI_Nbsf_Management

Binding Support Management Service API.
© 2022, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC).
All rights reserved.

Overview

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

  • API version: 1.3.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_Nbsf_Management "gitee.com/konglinglong/openapi/OpenAPI_Nbsf_Management"

To use a proxy, set the environment variable HTTP_PROXY:

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

Configuration of Server URL

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

Select Server Configuration

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

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

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

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

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

URLs Configuration per Operation

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

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

Documentation for API Endpoints

All URIs are relative to https://example.com/nbsf-management/v1

Class Method HTTP request Description
IndividualPCFBindingDocumentAPI DeleteIndPCFBinding Delete /pcfBindings/{bindingId} Delete an existing Individual PCF for a PDU Session Binding information
IndividualPCFForAPDUSessionBindingDocumentAPI UpdateIndPCFBinding Patch /pcfBindings/{bindingId} Update an existing Individual PCF for a PDU Session Binding information
IndividualPCFForAUEBindingDocumentAPI DeleteIndPCFforUEBinding Delete /pcf-ue-bindings/{bindingId} Delete an existing Individual PCF for a UE Binding information
IndividualPCFForAUEBindingDocumentAPI UpdateIndPCFforUEBinding Patch /pcf-ue-bindings/{bindingId} Update an existing Individual PCF for a UE Binding information
IndividualPCFForAnMBSSessionBindingDocumentAPI DeleteIndPCFMbsBinding Delete /pcf-mbs-bindings/{bindingId} Request the deletion of an existing Individual PCF for an MBS Session Binding.
IndividualPCFForAnMBSSessionBindingDocumentAPI ModifyIndPCFMbsBinding Patch /pcf-mbs-bindings/{bindingId} Request the modification of an existing Individual PCF for an MBS Session Binding resource.
IndividualSubscriptionDocumentAPI DeleteIndividualSubcription Delete /subscriptions/{subId} Delete an individual subscription for event notifications from the BSF
IndividualSubscriptionDocumentAPI ReplaceIndividualSubcription Put /subscriptions/{subId} Replace an individual subscription for event notifications from the BSF
PCFBindingsCollectionAPI CreatePCFBinding Post /pcfBindings Create a new Individual PCF for a PDU Session binding information
PCFBindingsCollectionAPI GetPCFBindings Get /pcfBindings Read PCF for a PDU Session Bindings information
PCFForAUEBindingsCollectionAPI CreatePCFforUEBinding Post /pcf-ue-bindings Create a new Individual PCF for a UE binding information
PCFForAUEBindingsCollectionAPI GetPCFForUeBindings Get /pcf-ue-bindings Read PCF for a UE Bindings information
PCFForAnMBSSessionBindingsCollectionAPI CreatePCFMbsBinding Post /pcf-mbs-bindings Create a new Individual PCF for an MBS Session binding.
PCFForAnMBSSessionBindingsCollectionAPI GetPCFMbsBinding Get /pcf-mbs-bindings Retrieve an existing PCF for an MBS Session binding.
SubscriptionsCollectionAPI CreateIndividualSubcription Post /subscriptions Create an individual subscription for event notifications from the BSF

Documentation For Models

Documentation For Authorization

Authentication schemes defined for the API:

oAuth2ClientCredentials
  • Type: OAuth
  • Flow: application
  • Authorization URL:
  • Scopes:
  • nbsf-management: Access to the Nbsf_Management API

Example

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

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

import "golang.org/x/oauth2"

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

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

Documentation for Utility Methods

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

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

Author

Documentation

Index

Constants

This section is empty.

Variables

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

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

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

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

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

Functions

func CacheExpires

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

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

func IsNil

func IsNil(i interface{}) bool

IsNil checks if an input is nil

func PtrBool

func PtrBool(v bool) *bool

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

func PtrFloat32

func PtrFloat32(v float32) *float32

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

func PtrFloat64

func PtrFloat64(v float64) *float64

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

func PtrInt

func PtrInt(v int) *int

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

func PtrInt32

func PtrInt32(v int32) *int32

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

func PtrInt64

func PtrInt64(v int64) *int64

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

func PtrString

func PtrString(v string) *string

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

func PtrTime

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

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

Types

type APIClient

type APIClient struct {
	IndividualPCFBindingDocumentAPI *IndividualPCFBindingDocumentAPIService

	IndividualPCFForAPDUSessionBindingDocumentAPI *IndividualPCFForAPDUSessionBindingDocumentAPIService

	IndividualPCFForAUEBindingDocumentAPI *IndividualPCFForAUEBindingDocumentAPIService

	IndividualPCFForAnMBSSessionBindingDocumentAPI *IndividualPCFForAnMBSSessionBindingDocumentAPIService

	IndividualSubscriptionDocumentAPI *IndividualSubscriptionDocumentAPIService

	PCFBindingsCollectionAPI *PCFBindingsCollectionAPIService

	PCFForAUEBindingsCollectionAPI *PCFForAUEBindingsCollectionAPIService

	PCFForAnMBSSessionBindingsCollectionAPI *PCFForAnMBSSessionBindingsCollectionAPIService

	SubscriptionsCollectionAPI *SubscriptionsCollectionAPIService
	// contains filtered or unexported fields
}

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

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

AccessTokenErr Error returned in the access token response message

func NewAccessTokenErr

func NewAccessTokenErr(error_ string) *AccessTokenErr

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

func NewAccessTokenErrWithDefaults

func NewAccessTokenErrWithDefaults() *AccessTokenErr

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

func (*AccessTokenErr) GetError

func (o *AccessTokenErr) GetError() string

GetError returns the Error field value

func (*AccessTokenErr) GetErrorDescription

func (o *AccessTokenErr) GetErrorDescription() string

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

func (*AccessTokenErr) GetErrorDescriptionOk

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

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

func (*AccessTokenErr) GetErrorOk

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

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

func (*AccessTokenErr) GetErrorUri

func (o *AccessTokenErr) GetErrorUri() string

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

func (*AccessTokenErr) GetErrorUriOk

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

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

func (*AccessTokenErr) HasErrorDescription

func (o *AccessTokenErr) HasErrorDescription() bool

HasErrorDescription returns a boolean if a field has been set.

func (*AccessTokenErr) HasErrorUri

func (o *AccessTokenErr) HasErrorUri() bool

HasErrorUri returns a boolean if a field has been set.

func (AccessTokenErr) MarshalJSON

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

func (*AccessTokenErr) SetError

func (o *AccessTokenErr) SetError(v string)

SetError sets field value

func (*AccessTokenErr) SetErrorDescription

func (o *AccessTokenErr) SetErrorDescription(v string)

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

func (*AccessTokenErr) SetErrorUri

func (o *AccessTokenErr) SetErrorUri(v string)

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

func (AccessTokenErr) ToMap

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

func (*AccessTokenErr) UnmarshalJSON

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

type AccessTokenReq

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

AccessTokenReq Contains information related to the access token request

func NewAccessTokenReq

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

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

func NewAccessTokenReqWithDefaults

func NewAccessTokenReqWithDefaults() *AccessTokenReq

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

func (*AccessTokenReq) GetGrantType

func (o *AccessTokenReq) GetGrantType() string

GetGrantType returns the GrantType field value

func (*AccessTokenReq) GetGrantTypeOk

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

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

func (*AccessTokenReq) GetHnrfAccessTokenUri

func (o *AccessTokenReq) GetHnrfAccessTokenUri() string

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

func (*AccessTokenReq) GetHnrfAccessTokenUriOk

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

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

func (*AccessTokenReq) GetNfInstanceId

func (o *AccessTokenReq) GetNfInstanceId() string

GetNfInstanceId returns the NfInstanceId field value

func (*AccessTokenReq) GetNfInstanceIdOk

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

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

func (*AccessTokenReq) GetNfType

func (o *AccessTokenReq) GetNfType() NFType

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

func (*AccessTokenReq) GetNfTypeOk

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

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

func (*AccessTokenReq) GetRequesterFqdn

func (o *AccessTokenReq) GetRequesterFqdn() string

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

func (*AccessTokenReq) GetRequesterFqdnOk

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

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

func (*AccessTokenReq) GetRequesterPlmn

func (o *AccessTokenReq) GetRequesterPlmn() PlmnId

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

func (*AccessTokenReq) GetRequesterPlmnList

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

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

func (*AccessTokenReq) GetRequesterPlmnListOk

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

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

func (*AccessTokenReq) GetRequesterPlmnOk

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

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

func (*AccessTokenReq) GetRequesterSnpnList

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

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

func (*AccessTokenReq) GetRequesterSnpnListOk

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

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

func (*AccessTokenReq) GetRequesterSnssaiList

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

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

func (*AccessTokenReq) GetRequesterSnssaiListOk

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

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

func (*AccessTokenReq) GetScope

func (o *AccessTokenReq) GetScope() string

GetScope returns the Scope field value

func (*AccessTokenReq) GetScopeOk

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

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

func (*AccessTokenReq) GetSourceNfInstanceId

func (o *AccessTokenReq) GetSourceNfInstanceId() string

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

func (*AccessTokenReq) GetSourceNfInstanceIdOk

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

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

func (*AccessTokenReq) GetTargetNfInstanceId

func (o *AccessTokenReq) GetTargetNfInstanceId() string

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

func (*AccessTokenReq) GetTargetNfInstanceIdOk

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

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

func (*AccessTokenReq) GetTargetNfServiceSetId

func (o *AccessTokenReq) GetTargetNfServiceSetId() string

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

func (*AccessTokenReq) GetTargetNfServiceSetIdOk

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

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

func (*AccessTokenReq) GetTargetNfSetId

func (o *AccessTokenReq) GetTargetNfSetId() string

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

func (*AccessTokenReq) GetTargetNfSetIdOk

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

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

func (*AccessTokenReq) GetTargetNfType

func (o *AccessTokenReq) GetTargetNfType() NFType

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

func (*AccessTokenReq) GetTargetNfTypeOk

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

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

func (*AccessTokenReq) GetTargetNsiList

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

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

func (*AccessTokenReq) GetTargetNsiListOk

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

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

func (*AccessTokenReq) GetTargetPlmn

func (o *AccessTokenReq) GetTargetPlmn() PlmnId

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

func (*AccessTokenReq) GetTargetPlmnOk

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

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

func (*AccessTokenReq) GetTargetSnpn

func (o *AccessTokenReq) GetTargetSnpn() PlmnIdNid

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

func (*AccessTokenReq) GetTargetSnpnOk

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

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

func (*AccessTokenReq) GetTargetSnssaiList

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

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

func (*AccessTokenReq) GetTargetSnssaiListOk

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

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

func (*AccessTokenReq) HasHnrfAccessTokenUri

func (o *AccessTokenReq) HasHnrfAccessTokenUri() bool

HasHnrfAccessTokenUri returns a boolean if a field has been set.

func (*AccessTokenReq) HasNfType

func (o *AccessTokenReq) HasNfType() bool

HasNfType returns a boolean if a field has been set.

func (*AccessTokenReq) HasRequesterFqdn

func (o *AccessTokenReq) HasRequesterFqdn() bool

HasRequesterFqdn returns a boolean if a field has been set.

func (*AccessTokenReq) HasRequesterPlmn

func (o *AccessTokenReq) HasRequesterPlmn() bool

HasRequesterPlmn returns a boolean if a field has been set.

func (*AccessTokenReq) HasRequesterPlmnList

func (o *AccessTokenReq) HasRequesterPlmnList() bool

HasRequesterPlmnList returns a boolean if a field has been set.

func (*AccessTokenReq) HasRequesterSnpnList

func (o *AccessTokenReq) HasRequesterSnpnList() bool

HasRequesterSnpnList returns a boolean if a field has been set.

func (*AccessTokenReq) HasRequesterSnssaiList

func (o *AccessTokenReq) HasRequesterSnssaiList() bool

HasRequesterSnssaiList returns a boolean if a field has been set.

func (*AccessTokenReq) HasSourceNfInstanceId

func (o *AccessTokenReq) HasSourceNfInstanceId() bool

HasSourceNfInstanceId returns a boolean if a field has been set.

func (*AccessTokenReq) HasTargetNfInstanceId

func (o *AccessTokenReq) HasTargetNfInstanceId() bool

HasTargetNfInstanceId returns a boolean if a field has been set.

func (*AccessTokenReq) HasTargetNfServiceSetId

func (o *AccessTokenReq) HasTargetNfServiceSetId() bool

HasTargetNfServiceSetId returns a boolean if a field has been set.

func (*AccessTokenReq) HasTargetNfSetId

func (o *AccessTokenReq) HasTargetNfSetId() bool

HasTargetNfSetId returns a boolean if a field has been set.

func (*AccessTokenReq) HasTargetNfType

func (o *AccessTokenReq) HasTargetNfType() bool

HasTargetNfType returns a boolean if a field has been set.

func (*AccessTokenReq) HasTargetNsiList

func (o *AccessTokenReq) HasTargetNsiList() bool

HasTargetNsiList returns a boolean if a field has been set.

func (*AccessTokenReq) HasTargetPlmn

func (o *AccessTokenReq) HasTargetPlmn() bool

HasTargetPlmn returns a boolean if a field has been set.

func (*AccessTokenReq) HasTargetSnpn

func (o *AccessTokenReq) HasTargetSnpn() bool

HasTargetSnpn returns a boolean if a field has been set.

func (*AccessTokenReq) HasTargetSnssaiList

func (o *AccessTokenReq) HasTargetSnssaiList() bool

HasTargetSnssaiList returns a boolean if a field has been set.

func (AccessTokenReq) MarshalJSON

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

func (*AccessTokenReq) SetGrantType

func (o *AccessTokenReq) SetGrantType(v string)

SetGrantType sets field value

func (*AccessTokenReq) SetHnrfAccessTokenUri

func (o *AccessTokenReq) SetHnrfAccessTokenUri(v string)

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

func (*AccessTokenReq) SetNfInstanceId

func (o *AccessTokenReq) SetNfInstanceId(v string)

SetNfInstanceId sets field value

func (*AccessTokenReq) SetNfType

func (o *AccessTokenReq) SetNfType(v NFType)

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

func (*AccessTokenReq) SetRequesterFqdn

func (o *AccessTokenReq) SetRequesterFqdn(v string)

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

func (*AccessTokenReq) SetRequesterPlmn

func (o *AccessTokenReq) SetRequesterPlmn(v PlmnId)

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

func (*AccessTokenReq) SetRequesterPlmnList

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

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

func (*AccessTokenReq) SetRequesterSnpnList

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

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

func (*AccessTokenReq) SetRequesterSnssaiList

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

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

func (*AccessTokenReq) SetScope

func (o *AccessTokenReq) SetScope(v string)

SetScope sets field value

func (*AccessTokenReq) SetSourceNfInstanceId

func (o *AccessTokenReq) SetSourceNfInstanceId(v string)

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

func (*AccessTokenReq) SetTargetNfInstanceId

func (o *AccessTokenReq) SetTargetNfInstanceId(v string)

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

func (*AccessTokenReq) SetTargetNfServiceSetId

func (o *AccessTokenReq) SetTargetNfServiceSetId(v string)

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

func (*AccessTokenReq) SetTargetNfSetId

func (o *AccessTokenReq) SetTargetNfSetId(v string)

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

func (*AccessTokenReq) SetTargetNfType

func (o *AccessTokenReq) SetTargetNfType(v NFType)

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

func (*AccessTokenReq) SetTargetNsiList

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

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

func (*AccessTokenReq) SetTargetPlmn

func (o *AccessTokenReq) SetTargetPlmn(v PlmnId)

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

func (*AccessTokenReq) SetTargetSnpn

func (o *AccessTokenReq) SetTargetSnpn(v PlmnIdNid)

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

func (*AccessTokenReq) SetTargetSnssaiList

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

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

func (AccessTokenReq) ToMap

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

func (*AccessTokenReq) UnmarshalJSON

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

type ApiCreateIndividualSubcriptionRequest

type ApiCreateIndividualSubcriptionRequest struct {
	ApiService *SubscriptionsCollectionAPIService
	// contains filtered or unexported fields
}

func (ApiCreateIndividualSubcriptionRequest) BsfSubscription

func (ApiCreateIndividualSubcriptionRequest) Execute

type ApiCreatePCFBindingRequest

type ApiCreatePCFBindingRequest struct {
	ApiService *PCFBindingsCollectionAPIService
	// contains filtered or unexported fields
}

func (ApiCreatePCFBindingRequest) Execute

func (ApiCreatePCFBindingRequest) PcfBinding

type ApiCreatePCFMbsBindingRequest

type ApiCreatePCFMbsBindingRequest struct {
	ApiService *PCFForAnMBSSessionBindingsCollectionAPIService
	// contains filtered or unexported fields
}

func (ApiCreatePCFMbsBindingRequest) Execute

func (ApiCreatePCFMbsBindingRequest) PcfMbsBinding

type ApiCreatePCFforUEBindingRequest

type ApiCreatePCFforUEBindingRequest struct {
	ApiService *PCFForAUEBindingsCollectionAPIService
	// contains filtered or unexported fields
}

func (ApiCreatePCFforUEBindingRequest) Execute

func (ApiCreatePCFforUEBindingRequest) PcfForUeBinding

type ApiDeleteIndPCFBindingRequest

type ApiDeleteIndPCFBindingRequest struct {
	ApiService *IndividualPCFBindingDocumentAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteIndPCFBindingRequest) Execute

type ApiDeleteIndPCFMbsBindingRequest

type ApiDeleteIndPCFMbsBindingRequest struct {
	ApiService *IndividualPCFForAnMBSSessionBindingDocumentAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteIndPCFMbsBindingRequest) Execute

type ApiDeleteIndPCFforUEBindingRequest

type ApiDeleteIndPCFforUEBindingRequest struct {
	ApiService *IndividualPCFForAUEBindingDocumentAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteIndPCFforUEBindingRequest) Execute

type ApiDeleteIndividualSubcriptionRequest

type ApiDeleteIndividualSubcriptionRequest struct {
	ApiService *IndividualSubscriptionDocumentAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteIndividualSubcriptionRequest) Execute

type ApiGetPCFBindingsRequest

type ApiGetPCFBindingsRequest struct {
	ApiService *PCFBindingsCollectionAPIService
	// contains filtered or unexported fields
}

func (ApiGetPCFBindingsRequest) Dnn

DNN.

func (ApiGetPCFBindingsRequest) Execute

func (ApiGetPCFBindingsRequest) Gpsi

Generic Public Subscription Identifier

func (ApiGetPCFBindingsRequest) IpDomain

The IPv4 address domain identifier.

func (ApiGetPCFBindingsRequest) Ipv4Addr

The IPv4 Address of the served UE.

func (ApiGetPCFBindingsRequest) Ipv6Prefix

The IPv6 Address of the served UE. The NF service consumer shall append &#39;/128&#39; to the IPv6 address in the attribute value. E.g. &#39;2001:db8:85a3::8a2e:370:7334/128&#39;.

func (ApiGetPCFBindingsRequest) MacAddr48

The MAC Address of the served UE.

func (ApiGetPCFBindingsRequest) Snssai

The identification of slice.

func (ApiGetPCFBindingsRequest) Supi

Subscription Permanent Identifier.

func (ApiGetPCFBindingsRequest) SuppFeat

To filter irrelevant responses related to unsupported features.

type ApiGetPCFForUeBindingsRequest

type ApiGetPCFForUeBindingsRequest struct {
	ApiService *PCFForAUEBindingsCollectionAPIService
	// contains filtered or unexported fields
}

func (ApiGetPCFForUeBindingsRequest) Execute

func (ApiGetPCFForUeBindingsRequest) Gpsi

Generic Public Subscription Identifier

func (ApiGetPCFForUeBindingsRequest) Supi

Subscription Permanent Identifier.

func (ApiGetPCFForUeBindingsRequest) SuppFeat

To filter irrelevant responses related to unsupported features.

type ApiGetPCFMbsBindingRequest

type ApiGetPCFMbsBindingRequest struct {
	ApiService *PCFForAnMBSSessionBindingsCollectionAPIService
	// contains filtered or unexported fields
}

func (ApiGetPCFMbsBindingRequest) Execute

func (ApiGetPCFMbsBindingRequest) MbsSessionId

Contains the identifier of the MBS Session to which the requested MBS Session binding is related.

func (ApiGetPCFMbsBindingRequest) SuppFeat

Contains the list of features supported by the NF service consumer and used to filter irrelevant responses related to unsupported features.

type ApiModifyIndPCFMbsBindingRequest

type ApiModifyIndPCFMbsBindingRequest struct {
	ApiService *IndividualPCFForAnMBSSessionBindingDocumentAPIService
	// contains filtered or unexported fields
}

func (ApiModifyIndPCFMbsBindingRequest) Execute

func (ApiModifyIndPCFMbsBindingRequest) PcfMbsBindingPatch

Parameters to request the modification of the PCF for an MBS Session Binding.

type ApiReplaceIndividualSubcriptionRequest

type ApiReplaceIndividualSubcriptionRequest struct {
	ApiService *IndividualSubscriptionDocumentAPIService
	// contains filtered or unexported fields
}

func (ApiReplaceIndividualSubcriptionRequest) BsfSubscription

func (ApiReplaceIndividualSubcriptionRequest) Execute

type ApiUpdateIndPCFBindingRequest

type ApiUpdateIndPCFBindingRequest struct {
	ApiService *IndividualPCFForAPDUSessionBindingDocumentAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateIndPCFBindingRequest) Execute

func (ApiUpdateIndPCFBindingRequest) PcfBindingPatch

Parameters to update the existing PCF for a PDU Session binding.

type ApiUpdateIndPCFforUEBindingRequest

type ApiUpdateIndPCFforUEBindingRequest struct {
	ApiService *IndividualPCFForAUEBindingDocumentAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateIndPCFforUEBindingRequest) Execute

func (ApiUpdateIndPCFforUEBindingRequest) PcfForUeBindingPatch

Parameters to update the existing PCF for a UE binding.

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 BindingLevel

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

BindingLevel Possible values are: - \"NF_SET\" - \"NF_INSTANCE\"

func (*BindingLevel) MarshalJSON

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

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

func (*BindingLevel) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type BindingResp

type BindingResp struct {
	// Fully Qualified Domain Name
	PcfSmFqdn *string `json:"pcfSmFqdn,omitempty"`
	// IP end points of the PCF hosting the Npcf_SMPolicyControl service.
	PcfSmIpEndPoints []IpEndPoint `json:"pcfSmIpEndPoints,omitempty"`
}

BindingResp Contains the binding information for a PCF for a PDU Session.

func NewBindingResp

func NewBindingResp() *BindingResp

NewBindingResp instantiates a new BindingResp 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 NewBindingRespWithDefaults

func NewBindingRespWithDefaults() *BindingResp

NewBindingRespWithDefaults instantiates a new BindingResp 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 (*BindingResp) GetPcfSmFqdn

func (o *BindingResp) GetPcfSmFqdn() string

GetPcfSmFqdn returns the PcfSmFqdn field value if set, zero value otherwise.

func (*BindingResp) GetPcfSmFqdnOk

func (o *BindingResp) GetPcfSmFqdnOk() (*string, bool)

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

func (*BindingResp) GetPcfSmIpEndPoints

func (o *BindingResp) GetPcfSmIpEndPoints() []IpEndPoint

GetPcfSmIpEndPoints returns the PcfSmIpEndPoints field value if set, zero value otherwise.

func (*BindingResp) GetPcfSmIpEndPointsOk

func (o *BindingResp) GetPcfSmIpEndPointsOk() ([]IpEndPoint, bool)

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

func (*BindingResp) HasPcfSmFqdn

func (o *BindingResp) HasPcfSmFqdn() bool

HasPcfSmFqdn returns a boolean if a field has been set.

func (*BindingResp) HasPcfSmIpEndPoints

func (o *BindingResp) HasPcfSmIpEndPoints() bool

HasPcfSmIpEndPoints returns a boolean if a field has been set.

func (BindingResp) MarshalJSON

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

func (*BindingResp) SetPcfSmFqdn

func (o *BindingResp) SetPcfSmFqdn(v string)

SetPcfSmFqdn gets a reference to the given string and assigns it to the PcfSmFqdn field.

func (*BindingResp) SetPcfSmIpEndPoints

func (o *BindingResp) SetPcfSmIpEndPoints(v []IpEndPoint)

SetPcfSmIpEndPoints gets a reference to the given []IpEndPoint and assigns it to the PcfSmIpEndPoints field.

func (BindingResp) ToMap

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

type BsfEvent

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

BsfEvent Represents an event to be notified by the BSF.

func (*BsfEvent) MarshalJSON

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

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

func (*BsfEvent) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type BsfEventNotification

type BsfEventNotification struct {
	Event        BsfEvent      `json:"event"`
	PcfForUeInfo *PcfForUeInfo `json:"pcfForUeInfo,omitempty"`
	// The information of the PCF for a PDU session.
	PcfForPduSessInfos []PcfForPduSessionInfo `json:"pcfForPduSessInfos,omitempty"`
	// Matching S-NSSAI and DNN pairs.
	MatchSnssaiDnns []SnssaiDnnPair `json:"matchSnssaiDnns,omitempty"`
}

BsfEventNotification Contains an event notification.

func NewBsfEventNotification

func NewBsfEventNotification(event BsfEvent) *BsfEventNotification

NewBsfEventNotification instantiates a new BsfEventNotification 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 NewBsfEventNotificationWithDefaults

func NewBsfEventNotificationWithDefaults() *BsfEventNotification

NewBsfEventNotificationWithDefaults instantiates a new BsfEventNotification 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 (*BsfEventNotification) GetEvent

func (o *BsfEventNotification) GetEvent() BsfEvent

GetEvent returns the Event field value

func (*BsfEventNotification) GetEventOk

func (o *BsfEventNotification) GetEventOk() (*BsfEvent, bool)

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

func (*BsfEventNotification) GetMatchSnssaiDnns

func (o *BsfEventNotification) GetMatchSnssaiDnns() []SnssaiDnnPair

GetMatchSnssaiDnns returns the MatchSnssaiDnns field value if set, zero value otherwise.

func (*BsfEventNotification) GetMatchSnssaiDnnsOk

func (o *BsfEventNotification) GetMatchSnssaiDnnsOk() ([]SnssaiDnnPair, bool)

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

func (*BsfEventNotification) GetPcfForPduSessInfos

func (o *BsfEventNotification) GetPcfForPduSessInfos() []PcfForPduSessionInfo

GetPcfForPduSessInfos returns the PcfForPduSessInfos field value if set, zero value otherwise.

func (*BsfEventNotification) GetPcfForPduSessInfosOk

func (o *BsfEventNotification) GetPcfForPduSessInfosOk() ([]PcfForPduSessionInfo, bool)

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

func (*BsfEventNotification) GetPcfForUeInfo

func (o *BsfEventNotification) GetPcfForUeInfo() PcfForUeInfo

GetPcfForUeInfo returns the PcfForUeInfo field value if set, zero value otherwise.

func (*BsfEventNotification) GetPcfForUeInfoOk

func (o *BsfEventNotification) GetPcfForUeInfoOk() (*PcfForUeInfo, bool)

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

func (*BsfEventNotification) HasMatchSnssaiDnns

func (o *BsfEventNotification) HasMatchSnssaiDnns() bool

HasMatchSnssaiDnns returns a boolean if a field has been set.

func (*BsfEventNotification) HasPcfForPduSessInfos

func (o *BsfEventNotification) HasPcfForPduSessInfos() bool

HasPcfForPduSessInfos returns a boolean if a field has been set.

func (*BsfEventNotification) HasPcfForUeInfo

func (o *BsfEventNotification) HasPcfForUeInfo() bool

HasPcfForUeInfo returns a boolean if a field has been set.

func (BsfEventNotification) MarshalJSON

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

func (*BsfEventNotification) SetEvent

func (o *BsfEventNotification) SetEvent(v BsfEvent)

SetEvent sets field value

func (*BsfEventNotification) SetMatchSnssaiDnns

func (o *BsfEventNotification) SetMatchSnssaiDnns(v []SnssaiDnnPair)

SetMatchSnssaiDnns gets a reference to the given []SnssaiDnnPair and assigns it to the MatchSnssaiDnns field.

func (*BsfEventNotification) SetPcfForPduSessInfos

func (o *BsfEventNotification) SetPcfForPduSessInfos(v []PcfForPduSessionInfo)

SetPcfForPduSessInfos gets a reference to the given []PcfForPduSessionInfo and assigns it to the PcfForPduSessInfos field.

func (*BsfEventNotification) SetPcfForUeInfo

func (o *BsfEventNotification) SetPcfForUeInfo(v PcfForUeInfo)

SetPcfForUeInfo gets a reference to the given PcfForUeInfo and assigns it to the PcfForUeInfo field.

func (BsfEventNotification) ToMap

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

func (*BsfEventNotification) UnmarshalJSON

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

type BsfNotification

type BsfNotification struct {
	// Notification Correlation ID assigned by the NF service consumer.
	NotifCorreId string `json:"notifCorreId"`
	// String uniquely identifying a NF instance. The format of the NF Instance ID shall be a  Universally Unique Identifier (UUID) version 4, as described in IETF RFC 4122.
	PcfId *string `json:"pcfId,omitempty"`
	// NF Set Identifier (see clause 28.12 of 3GPP TS 23.003), formatted as the following string \"set<Set ID>.<nftype>set.5gc.mnc<MNC>.mcc<MCC>\", or  \"set<SetID>.<NFType>set.5gc.nid<NID>.mnc<MNC>.mcc<MCC>\" with  <MCC> encoded as defined in clause 5.4.2 (\"Mcc\" data type definition)  <MNC> encoding the Mobile Network Code part of the PLMN, comprising 3 digits.    If there are only 2 significant digits in the MNC, one \"0\" digit shall be inserted    at the left side to fill the 3 digits coding of MNC.  Pattern: '^[0-9]{3}$' <NFType> encoded as a value defined in Table 6.1.6.3.3-1 of 3GPP TS 29.510 but    with lower case characters <Set ID> encoded as a string of characters consisting of    alphabetic characters (A-Z and a-z), digits (0-9) and/or the hyphen (-) and that    shall end with either an alphabetic character or a digit.
	PcfSetId  *string       `json:"pcfSetId,omitempty"`
	BindLevel *BindingLevel `json:"bindLevel,omitempty"`
	// Notifications about Individual Events.
	EventNotifs []BsfEventNotification `json:"eventNotifs"`
}

BsfNotification Contains the event notifications.

func NewBsfNotification

func NewBsfNotification(notifCorreId string, eventNotifs []BsfEventNotification) *BsfNotification

NewBsfNotification instantiates a new BsfNotification 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 NewBsfNotificationWithDefaults

func NewBsfNotificationWithDefaults() *BsfNotification

NewBsfNotificationWithDefaults instantiates a new BsfNotification 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 (*BsfNotification) GetBindLevel

func (o *BsfNotification) GetBindLevel() BindingLevel

GetBindLevel returns the BindLevel field value if set, zero value otherwise.

func (*BsfNotification) GetBindLevelOk

func (o *BsfNotification) GetBindLevelOk() (*BindingLevel, bool)

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

func (*BsfNotification) GetEventNotifs

func (o *BsfNotification) GetEventNotifs() []BsfEventNotification

GetEventNotifs returns the EventNotifs field value

func (*BsfNotification) GetEventNotifsOk

func (o *BsfNotification) GetEventNotifsOk() ([]BsfEventNotification, bool)

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

func (*BsfNotification) GetNotifCorreId

func (o *BsfNotification) GetNotifCorreId() string

GetNotifCorreId returns the NotifCorreId field value

func (*BsfNotification) GetNotifCorreIdOk

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

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

func (*BsfNotification) GetPcfId

func (o *BsfNotification) GetPcfId() string

GetPcfId returns the PcfId field value if set, zero value otherwise.

func (*BsfNotification) GetPcfIdOk

func (o *BsfNotification) GetPcfIdOk() (*string, bool)

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

func (*BsfNotification) GetPcfSetId

func (o *BsfNotification) GetPcfSetId() string

GetPcfSetId returns the PcfSetId field value if set, zero value otherwise.

func (*BsfNotification) GetPcfSetIdOk

func (o *BsfNotification) GetPcfSetIdOk() (*string, bool)

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

func (*BsfNotification) HasBindLevel

func (o *BsfNotification) HasBindLevel() bool

HasBindLevel returns a boolean if a field has been set.

func (*BsfNotification) HasPcfId

func (o *BsfNotification) HasPcfId() bool

HasPcfId returns a boolean if a field has been set.

func (*BsfNotification) HasPcfSetId

func (o *BsfNotification) HasPcfSetId() bool

HasPcfSetId returns a boolean if a field has been set.

func (BsfNotification) MarshalJSON

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

func (*BsfNotification) SetBindLevel

func (o *BsfNotification) SetBindLevel(v BindingLevel)

SetBindLevel gets a reference to the given BindingLevel and assigns it to the BindLevel field.

func (*BsfNotification) SetEventNotifs

func (o *BsfNotification) SetEventNotifs(v []BsfEventNotification)

SetEventNotifs sets field value

func (*BsfNotification) SetNotifCorreId

func (o *BsfNotification) SetNotifCorreId(v string)

SetNotifCorreId sets field value

func (*BsfNotification) SetPcfId

func (o *BsfNotification) SetPcfId(v string)

SetPcfId gets a reference to the given string and assigns it to the PcfId field.

func (*BsfNotification) SetPcfSetId

func (o *BsfNotification) SetPcfSetId(v string)

SetPcfSetId gets a reference to the given string and assigns it to the PcfSetId field.

func (BsfNotification) ToMap

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

func (*BsfNotification) UnmarshalJSON

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

type BsfSubscription

type BsfSubscription struct {
	// Contain te subscribed events.
	Events []BsfEvent `json:"events"`
	// String providing an URI formatted according to RFC 3986.
	NotifUri string `json:"notifUri"`
	// Notification Correlation ID assigned by the NF service consumer.
	NotifCorreId string `json:"notifCorreId"`
	// String identifying a Supi that shall contain either an IMSI, a network specific identifier, a Global Cable Identifier (GCI) or a Global Line Identifier (GLI) as specified in clause  2.2A of 3GPP TS 23.003. It shall be formatted as follows  - for an IMSI \"imsi-<imsi>\", where <imsi> shall be formatted according to clause 2.2    of 3GPP TS 23.003 that describes an IMSI.  - for a network specific identifier \"nai-<nai>, where <nai> shall be formatted    according to clause 28.7.2 of 3GPP TS 23.003 that describes an NAI.  - for a GCI \"gci-<gci>\", where <gci> shall be formatted according to clause 28.15.2    of 3GPP TS 23.003.  - for a GLI \"gli-<gli>\", where <gli> shall be formatted according to clause 28.16.2 of    3GPP TS 23.003.To enable that the value is used as part of an URI, the string shall    only contain characters allowed according to the \"lower-with-hyphen\" naming convention    defined in 3GPP TS 29.501.
	Supi string `json:"supi"`
	// String identifying a Gpsi shall contain either an External Id or an MSISDN.  It shall be formatted as follows -External Identifier= \"extid-'extid', where 'extid'  shall be formatted according to clause 19.7.2 of 3GPP TS 23.003 that describes an  External Identifier.
	Gpsi           *string        `json:"gpsi,omitempty"`
	SnssaiDnnPairs *SnssaiDnnPair `json:"snssaiDnnPairs,omitempty"`
	// Represents the additional S-NSSAI and DNN pair(s) for which the binding event report(s) shall apply.
	AddSnssaiDnnPairs []SnssaiDnnPair `json:"addSnssaiDnnPairs,omitempty"`
	// A string used to indicate the features supported by an API that is used as defined in clause  6.6 in 3GPP TS 29.500. The string shall contain a bitmask indicating supported features in  hexadecimal representation Each character in the string shall take a value of \"0\" to \"9\",  \"a\" to \"f\" or \"A\" to \"F\" and shall represent the support of 4 features as described in  table 5.2.2-3. The most significant character representing the highest-numbered features shall  appear first in the string, and the character representing features 1 to 4 shall appear last  in the string. The list of features and their numbering (starting with 1) are defined  separately for each API. If the string contains a lower number of characters than there are  defined features for an API, all features that would be represented by characters that are not  present in the string are not supported.
	SuppFeat *string `json:"suppFeat,omitempty"`
}

BsfSubscription Contains the event subscription data.

func NewBsfSubscription

func NewBsfSubscription(events []BsfEvent, notifUri string, notifCorreId string, supi string) *BsfSubscription

NewBsfSubscription instantiates a new BsfSubscription 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 NewBsfSubscriptionWithDefaults

func NewBsfSubscriptionWithDefaults() *BsfSubscription

NewBsfSubscriptionWithDefaults instantiates a new BsfSubscription 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 (*BsfSubscription) GetAddSnssaiDnnPairs

func (o *BsfSubscription) GetAddSnssaiDnnPairs() []SnssaiDnnPair

GetAddSnssaiDnnPairs returns the AddSnssaiDnnPairs field value if set, zero value otherwise.

func (*BsfSubscription) GetAddSnssaiDnnPairsOk

func (o *BsfSubscription) GetAddSnssaiDnnPairsOk() ([]SnssaiDnnPair, bool)

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

func (*BsfSubscription) GetEvents

func (o *BsfSubscription) GetEvents() []BsfEvent

GetEvents returns the Events field value

func (*BsfSubscription) GetEventsOk

func (o *BsfSubscription) GetEventsOk() ([]BsfEvent, bool)

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

func (*BsfSubscription) GetGpsi

func (o *BsfSubscription) GetGpsi() string

GetGpsi returns the Gpsi field value if set, zero value otherwise.

func (*BsfSubscription) GetGpsiOk

func (o *BsfSubscription) GetGpsiOk() (*string, bool)

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

func (*BsfSubscription) GetNotifCorreId

func (o *BsfSubscription) GetNotifCorreId() string

GetNotifCorreId returns the NotifCorreId field value

func (*BsfSubscription) GetNotifCorreIdOk

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

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

func (*BsfSubscription) GetNotifUri

func (o *BsfSubscription) GetNotifUri() string

GetNotifUri returns the NotifUri field value

func (*BsfSubscription) GetNotifUriOk

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

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

func (*BsfSubscription) GetSnssaiDnnPairs

func (o *BsfSubscription) GetSnssaiDnnPairs() SnssaiDnnPair

GetSnssaiDnnPairs returns the SnssaiDnnPairs field value if set, zero value otherwise.

func (*BsfSubscription) GetSnssaiDnnPairsOk

func (o *BsfSubscription) GetSnssaiDnnPairsOk() (*SnssaiDnnPair, bool)

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

func (*BsfSubscription) GetSupi

func (o *BsfSubscription) GetSupi() string

GetSupi returns the Supi field value

func (*BsfSubscription) GetSupiOk

func (o *BsfSubscription) GetSupiOk() (*string, bool)

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

func (*BsfSubscription) GetSuppFeat

func (o *BsfSubscription) GetSuppFeat() string

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

func (*BsfSubscription) GetSuppFeatOk

func (o *BsfSubscription) GetSuppFeatOk() (*string, bool)

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

func (*BsfSubscription) HasAddSnssaiDnnPairs

func (o *BsfSubscription) HasAddSnssaiDnnPairs() bool

HasAddSnssaiDnnPairs returns a boolean if a field has been set.

func (*BsfSubscription) HasGpsi

func (o *BsfSubscription) HasGpsi() bool

HasGpsi returns a boolean if a field has been set.

func (*BsfSubscription) HasSnssaiDnnPairs

func (o *BsfSubscription) HasSnssaiDnnPairs() bool

HasSnssaiDnnPairs returns a boolean if a field has been set.

func (*BsfSubscription) HasSuppFeat

func (o *BsfSubscription) HasSuppFeat() bool

HasSuppFeat returns a boolean if a field has been set.

func (BsfSubscription) MarshalJSON

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

func (*BsfSubscription) SetAddSnssaiDnnPairs

func (o *BsfSubscription) SetAddSnssaiDnnPairs(v []SnssaiDnnPair)

SetAddSnssaiDnnPairs gets a reference to the given []SnssaiDnnPair and assigns it to the AddSnssaiDnnPairs field.

func (*BsfSubscription) SetEvents

func (o *BsfSubscription) SetEvents(v []BsfEvent)

SetEvents sets field value

func (*BsfSubscription) SetGpsi

func (o *BsfSubscription) SetGpsi(v string)

SetGpsi gets a reference to the given string and assigns it to the Gpsi field.

func (*BsfSubscription) SetNotifCorreId

func (o *BsfSubscription) SetNotifCorreId(v string)

SetNotifCorreId sets field value

func (*BsfSubscription) SetNotifUri

func (o *BsfSubscription) SetNotifUri(v string)

SetNotifUri sets field value

func (*BsfSubscription) SetSnssaiDnnPairs

func (o *BsfSubscription) SetSnssaiDnnPairs(v SnssaiDnnPair)

SetSnssaiDnnPairs gets a reference to the given SnssaiDnnPair and assigns it to the SnssaiDnnPairs field.

func (*BsfSubscription) SetSupi

func (o *BsfSubscription) SetSupi(v string)

SetSupi sets field value

func (*BsfSubscription) SetSuppFeat

func (o *BsfSubscription) SetSuppFeat(v string)

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

func (BsfSubscription) ToMap

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

func (*BsfSubscription) UnmarshalJSON

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

type BsfSubscriptionResp

type BsfSubscriptionResp struct {
	BsfNotification *BsfNotification
	BsfSubscription *BsfSubscription
}

BsfSubscriptionResp It represents a response to a modification or creation request of an Individual Binding Subscription resource. It may contain the notification of the already met events.

func (*BsfSubscriptionResp) MarshalJSON

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

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

func (*BsfSubscriptionResp) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

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 ExtProblemDetails

type ExtProblemDetails struct {
	ProblemDetails
	// Fully Qualified Domain Name
	PcfSmFqdn *string `json:"pcfSmFqdn,omitempty"`
	// IP end points of the PCF hosting the Npcf_SMPolicyControl service.
	PcfSmIpEndPoints []IpEndPoint `json:"pcfSmIpEndPoints,omitempty"`
}

ExtProblemDetails Contains the FQDN or IP endpoints of the existing PCF and the cause value if there is an existing PCF binding information for the indicated combination.

func NewExtProblemDetails

func NewExtProblemDetails() *ExtProblemDetails

NewExtProblemDetails instantiates a new ExtProblemDetails 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 NewExtProblemDetailsWithDefaults

func NewExtProblemDetailsWithDefaults() *ExtProblemDetails

NewExtProblemDetailsWithDefaults instantiates a new ExtProblemDetails 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 (*ExtProblemDetails) GetPcfSmFqdn

func (o *ExtProblemDetails) GetPcfSmFqdn() string

GetPcfSmFqdn returns the PcfSmFqdn field value if set, zero value otherwise.

func (*ExtProblemDetails) GetPcfSmFqdnOk

func (o *ExtProblemDetails) GetPcfSmFqdnOk() (*string, bool)

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

func (*ExtProblemDetails) GetPcfSmIpEndPoints

func (o *ExtProblemDetails) GetPcfSmIpEndPoints() []IpEndPoint

GetPcfSmIpEndPoints returns the PcfSmIpEndPoints field value if set, zero value otherwise.

func (*ExtProblemDetails) GetPcfSmIpEndPointsOk

func (o *ExtProblemDetails) GetPcfSmIpEndPointsOk() ([]IpEndPoint, bool)

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

func (*ExtProblemDetails) HasPcfSmFqdn

func (o *ExtProblemDetails) HasPcfSmFqdn() bool

HasPcfSmFqdn returns a boolean if a field has been set.

func (*ExtProblemDetails) HasPcfSmIpEndPoints

func (o *ExtProblemDetails) HasPcfSmIpEndPoints() bool

HasPcfSmIpEndPoints returns a boolean if a field has been set.

func (ExtProblemDetails) MarshalJSON

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

func (*ExtProblemDetails) SetPcfSmFqdn

func (o *ExtProblemDetails) SetPcfSmFqdn(v string)

SetPcfSmFqdn gets a reference to the given string and assigns it to the PcfSmFqdn field.

func (*ExtProblemDetails) SetPcfSmIpEndPoints

func (o *ExtProblemDetails) SetPcfSmIpEndPoints(v []IpEndPoint)

SetPcfSmIpEndPoints gets a reference to the given []IpEndPoint and assigns it to the PcfSmIpEndPoints field.

func (ExtProblemDetails) ToMap

func (o ExtProblemDetails) 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 IndividualPCFBindingDocumentAPIService

type IndividualPCFBindingDocumentAPIService service

IndividualPCFBindingDocumentAPIService IndividualPCFBindingDocumentAPI service

func (*IndividualPCFBindingDocumentAPIService) DeleteIndPCFBinding

DeleteIndPCFBinding Delete an existing Individual PCF for a PDU Session Binding information

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param bindingId Represents the individual PCF for a PDU Session Binding.
@return ApiDeleteIndPCFBindingRequest

func (*IndividualPCFBindingDocumentAPIService) DeleteIndPCFBindingExecute

Execute executes the request

type IndividualPCFForAPDUSessionBindingDocumentAPIService

type IndividualPCFForAPDUSessionBindingDocumentAPIService service

IndividualPCFForAPDUSessionBindingDocumentAPIService IndividualPCFForAPDUSessionBindingDocumentAPI service

func (*IndividualPCFForAPDUSessionBindingDocumentAPIService) UpdateIndPCFBinding

UpdateIndPCFBinding Update an existing Individual PCF for a PDU Session Binding information

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param bindingId Represents the individual PCF for a PDU Session Binding.
@return ApiUpdateIndPCFBindingRequest

func (*IndividualPCFForAPDUSessionBindingDocumentAPIService) UpdateIndPCFBindingExecute

Execute executes the request

@return PcfBinding

type IndividualPCFForAUEBindingDocumentAPIService

type IndividualPCFForAUEBindingDocumentAPIService service

IndividualPCFForAUEBindingDocumentAPIService IndividualPCFForAUEBindingDocumentAPI service

func (*IndividualPCFForAUEBindingDocumentAPIService) DeleteIndPCFforUEBinding

DeleteIndPCFforUEBinding Delete an existing Individual PCF for a UE Binding information

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param bindingId Represents the individual PCF for a UE Binding.
@return ApiDeleteIndPCFforUEBindingRequest

func (*IndividualPCFForAUEBindingDocumentAPIService) DeleteIndPCFforUEBindingExecute

Execute executes the request

func (*IndividualPCFForAUEBindingDocumentAPIService) UpdateIndPCFforUEBinding

UpdateIndPCFforUEBinding Update an existing Individual PCF for a UE Binding information

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param bindingId Represents the individual PCF for a UE Binding.
@return ApiUpdateIndPCFforUEBindingRequest

func (*IndividualPCFForAUEBindingDocumentAPIService) UpdateIndPCFforUEBindingExecute

Execute executes the request

@return PcfForUeBinding

type IndividualPCFForAnMBSSessionBindingDocumentAPIService

type IndividualPCFForAnMBSSessionBindingDocumentAPIService service

IndividualPCFForAnMBSSessionBindingDocumentAPIService IndividualPCFForAnMBSSessionBindingDocumentAPI service

func (*IndividualPCFForAnMBSSessionBindingDocumentAPIService) DeleteIndPCFMbsBinding

DeleteIndPCFMbsBinding Request the deletion of an existing Individual PCF for an MBS Session Binding.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param bindingId Represents the identifier of the Individual PCF for an MBS Session Binding resource.
@return ApiDeleteIndPCFMbsBindingRequest

func (*IndividualPCFForAnMBSSessionBindingDocumentAPIService) DeleteIndPCFMbsBindingExecute

Execute executes the request

func (*IndividualPCFForAnMBSSessionBindingDocumentAPIService) ModifyIndPCFMbsBinding

ModifyIndPCFMbsBinding Request the modification of an existing Individual PCF for an MBS Session Binding resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param bindingId Represents the identifier of the Individual PCF for an MBS Session Binding resource.
@return ApiModifyIndPCFMbsBindingRequest

func (*IndividualPCFForAnMBSSessionBindingDocumentAPIService) ModifyIndPCFMbsBindingExecute

Execute executes the request

@return PcfMbsBinding

type IndividualSubscriptionDocumentAPIService

type IndividualSubscriptionDocumentAPIService service

IndividualSubscriptionDocumentAPIService IndividualSubscriptionDocumentAPI service

func (*IndividualSubscriptionDocumentAPIService) DeleteIndividualSubcription

DeleteIndividualSubcription Delete an individual subscription for event notifications from the BSF

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

func (*IndividualSubscriptionDocumentAPIService) DeleteIndividualSubcriptionExecute

Execute executes the request

func (*IndividualSubscriptionDocumentAPIService) ReplaceIndividualSubcription

ReplaceIndividualSubcription Replace an individual subscription for event notifications from the BSF

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

func (*IndividualSubscriptionDocumentAPIService) ReplaceIndividualSubcriptionExecute

Execute executes the request

@return BsfSubscriptionResp

type InvalidParam

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

InvalidParam It contains an invalid parameter and a related description.

func NewInvalidParam

func NewInvalidParam(param string) *InvalidParam

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

func NewInvalidParamWithDefaults

func NewInvalidParamWithDefaults() *InvalidParam

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

func (*InvalidParam) GetParam

func (o *InvalidParam) GetParam() string

GetParam returns the Param field value

func (*InvalidParam) GetParamOk

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

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

func (*InvalidParam) GetReason

func (o *InvalidParam) GetReason() string

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

func (*InvalidParam) GetReasonOk

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

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

func (*InvalidParam) HasReason

func (o *InvalidParam) HasReason() bool

HasReason returns a boolean if a field has been set.

func (InvalidParam) MarshalJSON

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

func (*InvalidParam) SetParam

func (o *InvalidParam) SetParam(v string)

SetParam sets field value

func (*InvalidParam) SetReason

func (o *InvalidParam) SetReason(v string)

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

func (InvalidParam) ToMap

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

func (*InvalidParam) UnmarshalJSON

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

type IpAddr

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

IpAddr Contains an IP adresse.

func NewIpAddr

func NewIpAddr() *IpAddr

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

func NewIpAddrWithDefaults

func NewIpAddrWithDefaults() *IpAddr

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

func (*IpAddr) GetIpv4Addr

func (o *IpAddr) GetIpv4Addr() string

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

func (*IpAddr) GetIpv4AddrOk

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

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

func (*IpAddr) GetIpv6Addr

func (o *IpAddr) GetIpv6Addr() Ipv6Addr

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

func (*IpAddr) GetIpv6AddrOk

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

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

func (*IpAddr) GetIpv6Prefix

func (o *IpAddr) GetIpv6Prefix() Ipv6Prefix

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

func (*IpAddr) GetIpv6PrefixOk

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

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

func (*IpAddr) HasIpv4Addr

func (o *IpAddr) HasIpv4Addr() bool

HasIpv4Addr returns a boolean if a field has been set.

func (*IpAddr) HasIpv6Addr

func (o *IpAddr) HasIpv6Addr() bool

HasIpv6Addr returns a boolean if a field has been set.

func (*IpAddr) HasIpv6Prefix

func (o *IpAddr) HasIpv6Prefix() bool

HasIpv6Prefix returns a boolean if a field has been set.

func (IpAddr) MarshalJSON

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

func (*IpAddr) SetIpv4Addr

func (o *IpAddr) SetIpv4Addr(v string)

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

func (*IpAddr) SetIpv6Addr

func (o *IpAddr) SetIpv6Addr(v Ipv6Addr)

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

func (*IpAddr) SetIpv6Prefix

func (o *IpAddr) SetIpv6Prefix(v Ipv6Prefix)

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

func (IpAddr) ToMap

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

type IpEndPoint

type IpEndPoint struct {
	// String identifying a IPv4 address formatted in the 'dotted decimal' notation as defined in RFC 1166.
	Ipv4Address *string            `json:"ipv4Address,omitempty"`
	Ipv6Address *Ipv6Addr          `json:"ipv6Address,omitempty"`
	Transport   *TransportProtocol `json:"transport,omitempty"`
	Port        *int32             `json:"port,omitempty"`
}

IpEndPoint IP addressing information of a given NFService; it consists on, e.g. IP address, TCP port, transport protocol...

func NewIpEndPoint

func NewIpEndPoint() *IpEndPoint

NewIpEndPoint instantiates a new IpEndPoint 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 NewIpEndPointWithDefaults

func NewIpEndPointWithDefaults() *IpEndPoint

NewIpEndPointWithDefaults instantiates a new IpEndPoint 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 (*IpEndPoint) GetIpv4Address

func (o *IpEndPoint) GetIpv4Address() string

GetIpv4Address returns the Ipv4Address field value if set, zero value otherwise.

func (*IpEndPoint) GetIpv4AddressOk

func (o *IpEndPoint) GetIpv4AddressOk() (*string, bool)

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

func (*IpEndPoint) GetIpv6Address

func (o *IpEndPoint) GetIpv6Address() Ipv6Addr

GetIpv6Address returns the Ipv6Address field value if set, zero value otherwise.

func (*IpEndPoint) GetIpv6AddressOk

func (o *IpEndPoint) GetIpv6AddressOk() (*Ipv6Addr, bool)

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

func (*IpEndPoint) GetPort

func (o *IpEndPoint) GetPort() int32

GetPort returns the Port field value if set, zero value otherwise.

func (*IpEndPoint) GetPortOk

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

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

func (*IpEndPoint) GetTransport

func (o *IpEndPoint) GetTransport() TransportProtocol

GetTransport returns the Transport field value if set, zero value otherwise.

func (*IpEndPoint) GetTransportOk

func (o *IpEndPoint) GetTransportOk() (*TransportProtocol, bool)

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

func (*IpEndPoint) HasIpv4Address

func (o *IpEndPoint) HasIpv4Address() bool

HasIpv4Address returns a boolean if a field has been set.

func (*IpEndPoint) HasIpv6Address

func (o *IpEndPoint) HasIpv6Address() bool

HasIpv6Address returns a boolean if a field has been set.

func (*IpEndPoint) HasPort

func (o *IpEndPoint) HasPort() bool

HasPort returns a boolean if a field has been set.

func (*IpEndPoint) HasTransport

func (o *IpEndPoint) HasTransport() bool

HasTransport returns a boolean if a field has been set.

func (IpEndPoint) MarshalJSON

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

func (*IpEndPoint) SetIpv4Address

func (o *IpEndPoint) SetIpv4Address(v string)

SetIpv4Address gets a reference to the given string and assigns it to the Ipv4Address field.

func (*IpEndPoint) SetIpv6Address

func (o *IpEndPoint) SetIpv6Address(v Ipv6Addr)

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

func (*IpEndPoint) SetPort

func (o *IpEndPoint) SetPort(v int32)

SetPort gets a reference to the given int32 and assigns it to the Port field.

func (*IpEndPoint) SetTransport

func (o *IpEndPoint) SetTransport(v TransportProtocol)

SetTransport gets a reference to the given TransportProtocol and assigns it to the Transport field.

func (IpEndPoint) ToMap

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

type Ipv6Addr

type Ipv6Addr struct {
}

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

func NewIpv6Addr

func NewIpv6Addr() *Ipv6Addr

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

func NewIpv6AddrWithDefaults

func NewIpv6AddrWithDefaults() *Ipv6Addr

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

func (Ipv6Addr) MarshalJSON

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

func (Ipv6Addr) ToMap

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

type Ipv6Prefix

type Ipv6Prefix struct {
}

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

func NewIpv6Prefix

func NewIpv6Prefix() *Ipv6Prefix

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

func NewIpv6PrefixWithDefaults

func NewIpv6PrefixWithDefaults() *Ipv6Prefix

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

func (Ipv6Prefix) MarshalJSON

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

func (Ipv6Prefix) ToMap

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

type Ipv6PrefixRm

type Ipv6PrefixRm struct {
}

Ipv6PrefixRm String identifying an IPv6 address prefix formatted according to clause 4 of RFC 5952 with the OpenAPI 'nullable: true' property. IPv6Prefix data type may contain an individual /128 IPv6 address.

func NewIpv6PrefixRm

func NewIpv6PrefixRm() *Ipv6PrefixRm

NewIpv6PrefixRm instantiates a new Ipv6PrefixRm 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 NewIpv6PrefixRmWithDefaults

func NewIpv6PrefixRmWithDefaults() *Ipv6PrefixRm

NewIpv6PrefixRmWithDefaults instantiates a new Ipv6PrefixRm 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 (Ipv6PrefixRm) MarshalJSON

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

func (Ipv6PrefixRm) ToMap

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

type MappedNullable

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

type MbsBindingResp

type MbsBindingResp struct {
	// Fully Qualified Domain Name
	PcfFqdn *string `json:"pcfFqdn,omitempty"`
	// IP end points of the PCF handling the MBS Session.
	PcfIpEndPoints []IpEndPoint `json:"pcfIpEndPoints,omitempty"`
}

MbsBindingResp Contains the binding information for a PCF for an MBS Session.

func NewMbsBindingResp

func NewMbsBindingResp() *MbsBindingResp

NewMbsBindingResp instantiates a new MbsBindingResp 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 NewMbsBindingRespWithDefaults

func NewMbsBindingRespWithDefaults() *MbsBindingResp

NewMbsBindingRespWithDefaults instantiates a new MbsBindingResp 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 (*MbsBindingResp) GetPcfFqdn

func (o *MbsBindingResp) GetPcfFqdn() string

GetPcfFqdn returns the PcfFqdn field value if set, zero value otherwise.

func (*MbsBindingResp) GetPcfFqdnOk

func (o *MbsBindingResp) GetPcfFqdnOk() (*string, bool)

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

func (*MbsBindingResp) GetPcfIpEndPoints

func (o *MbsBindingResp) GetPcfIpEndPoints() []IpEndPoint

GetPcfIpEndPoints returns the PcfIpEndPoints field value if set, zero value otherwise.

func (*MbsBindingResp) GetPcfIpEndPointsOk

func (o *MbsBindingResp) GetPcfIpEndPointsOk() ([]IpEndPoint, bool)

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

func (*MbsBindingResp) HasPcfFqdn

func (o *MbsBindingResp) HasPcfFqdn() bool

HasPcfFqdn returns a boolean if a field has been set.

func (*MbsBindingResp) HasPcfIpEndPoints

func (o *MbsBindingResp) HasPcfIpEndPoints() bool

HasPcfIpEndPoints returns a boolean if a field has been set.

func (MbsBindingResp) MarshalJSON

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

func (*MbsBindingResp) SetPcfFqdn

func (o *MbsBindingResp) SetPcfFqdn(v string)

SetPcfFqdn gets a reference to the given string and assigns it to the PcfFqdn field.

func (*MbsBindingResp) SetPcfIpEndPoints

func (o *MbsBindingResp) SetPcfIpEndPoints(v []IpEndPoint)

SetPcfIpEndPoints gets a reference to the given []IpEndPoint and assigns it to the PcfIpEndPoints field.

func (MbsBindingResp) ToMap

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

type MbsExtProblemDetails

type MbsExtProblemDetails struct {
	ProblemDetails
	// Fully Qualified Domain Name
	PcfFqdn *string `json:"pcfFqdn,omitempty"`
	// IP end points of the PCF handling the MBS Session.
	PcfIpEndPoints []IpEndPoint `json:"pcfIpEndPoints,omitempty"`
}

MbsExtProblemDetails Contains the FQDN or IP endpoints of the existing PCF and the cause value if there is an existing PCF binding information for the MBS session.

func NewMbsExtProblemDetails

func NewMbsExtProblemDetails() *MbsExtProblemDetails

NewMbsExtProblemDetails instantiates a new MbsExtProblemDetails 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 NewMbsExtProblemDetailsWithDefaults

func NewMbsExtProblemDetailsWithDefaults() *MbsExtProblemDetails

NewMbsExtProblemDetailsWithDefaults instantiates a new MbsExtProblemDetails 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 (*MbsExtProblemDetails) GetPcfFqdn

func (o *MbsExtProblemDetails) GetPcfFqdn() string

GetPcfFqdn returns the PcfFqdn field value if set, zero value otherwise.

func (*MbsExtProblemDetails) GetPcfFqdnOk

func (o *MbsExtProblemDetails) GetPcfFqdnOk() (*string, bool)

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

func (*MbsExtProblemDetails) GetPcfIpEndPoints

func (o *MbsExtProblemDetails) GetPcfIpEndPoints() []IpEndPoint

GetPcfIpEndPoints returns the PcfIpEndPoints field value if set, zero value otherwise.

func (*MbsExtProblemDetails) GetPcfIpEndPointsOk

func (o *MbsExtProblemDetails) GetPcfIpEndPointsOk() ([]IpEndPoint, bool)

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

func (*MbsExtProblemDetails) HasPcfFqdn

func (o *MbsExtProblemDetails) HasPcfFqdn() bool

HasPcfFqdn returns a boolean if a field has been set.

func (*MbsExtProblemDetails) HasPcfIpEndPoints

func (o *MbsExtProblemDetails) HasPcfIpEndPoints() bool

HasPcfIpEndPoints returns a boolean if a field has been set.

func (MbsExtProblemDetails) MarshalJSON

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

func (*MbsExtProblemDetails) SetPcfFqdn

func (o *MbsExtProblemDetails) SetPcfFqdn(v string)

SetPcfFqdn gets a reference to the given string and assigns it to the PcfFqdn field.

func (*MbsExtProblemDetails) SetPcfIpEndPoints

func (o *MbsExtProblemDetails) SetPcfIpEndPoints(v []IpEndPoint)

SetPcfIpEndPoints gets a reference to the given []IpEndPoint and assigns it to the PcfIpEndPoints field.

func (MbsExtProblemDetails) ToMap

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

type MbsSessionId

type MbsSessionId struct {
	Tmgi *Tmgi `json:"tmgi,omitempty"`
	Ssm  *Ssm  `json:"ssm,omitempty"`
	// This represents the Network Identifier, which together with a PLMN ID is used to identify an SNPN (see 3GPP TS 23.003 and 3GPP TS 23.501 clause 5.30.2.1).
	Nid *string `json:"nid,omitempty"`
}

MbsSessionId MBS Session Identifier

func NewMbsSessionId

func NewMbsSessionId() *MbsSessionId

NewMbsSessionId instantiates a new MbsSessionId 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 NewMbsSessionIdWithDefaults

func NewMbsSessionIdWithDefaults() *MbsSessionId

NewMbsSessionIdWithDefaults instantiates a new MbsSessionId 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 (*MbsSessionId) GetNid

func (o *MbsSessionId) GetNid() string

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

func (*MbsSessionId) GetNidOk

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

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

func (*MbsSessionId) GetSsm

func (o *MbsSessionId) GetSsm() Ssm

GetSsm returns the Ssm field value if set, zero value otherwise.

func (*MbsSessionId) GetSsmOk

func (o *MbsSessionId) GetSsmOk() (*Ssm, bool)

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

func (*MbsSessionId) GetTmgi

func (o *MbsSessionId) GetTmgi() Tmgi

GetTmgi returns the Tmgi field value if set, zero value otherwise.

func (*MbsSessionId) GetTmgiOk

func (o *MbsSessionId) GetTmgiOk() (*Tmgi, bool)

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

func (*MbsSessionId) HasNid

func (o *MbsSessionId) HasNid() bool

HasNid returns a boolean if a field has been set.

func (*MbsSessionId) HasSsm

func (o *MbsSessionId) HasSsm() bool

HasSsm returns a boolean if a field has been set.

func (*MbsSessionId) HasTmgi

func (o *MbsSessionId) HasTmgi() bool

HasTmgi returns a boolean if a field has been set.

func (MbsSessionId) MarshalJSON

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

func (*MbsSessionId) SetNid

func (o *MbsSessionId) SetNid(v string)

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

func (*MbsSessionId) SetSsm

func (o *MbsSessionId) SetSsm(v Ssm)

SetSsm gets a reference to the given Ssm and assigns it to the Ssm field.

func (*MbsSessionId) SetTmgi

func (o *MbsSessionId) SetTmgi(v Tmgi)

SetTmgi gets a reference to the given Tmgi and assigns it to the Tmgi field.

func (MbsSessionId) ToMap

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

type NFType

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

NFType NF types known to NRF

func (*NFType) MarshalJSON

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

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

func (*NFType) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type NullableAccessTokenErr

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

func NewNullableAccessTokenErr

func NewNullableAccessTokenErr(val *AccessTokenErr) *NullableAccessTokenErr

func (NullableAccessTokenErr) Get

func (NullableAccessTokenErr) IsSet

func (v NullableAccessTokenErr) IsSet() bool

func (NullableAccessTokenErr) MarshalJSON

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

func (*NullableAccessTokenErr) Set

func (*NullableAccessTokenErr) UnmarshalJSON

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

func (*NullableAccessTokenErr) Unset

func (v *NullableAccessTokenErr) Unset()

type NullableAccessTokenReq

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

func NewNullableAccessTokenReq

func NewNullableAccessTokenReq(val *AccessTokenReq) *NullableAccessTokenReq

func (NullableAccessTokenReq) Get

func (NullableAccessTokenReq) IsSet

func (v NullableAccessTokenReq) IsSet() bool

func (NullableAccessTokenReq) MarshalJSON

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

func (*NullableAccessTokenReq) Set

func (*NullableAccessTokenReq) UnmarshalJSON

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

func (*NullableAccessTokenReq) Unset

func (v *NullableAccessTokenReq) Unset()

type NullableBindingLevel

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

func NewNullableBindingLevel

func NewNullableBindingLevel(val *BindingLevel) *NullableBindingLevel

func (NullableBindingLevel) Get

func (NullableBindingLevel) IsSet

func (v NullableBindingLevel) IsSet() bool

func (NullableBindingLevel) MarshalJSON

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

func (*NullableBindingLevel) Set

func (v *NullableBindingLevel) Set(val *BindingLevel)

func (*NullableBindingLevel) UnmarshalJSON

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

func (*NullableBindingLevel) Unset

func (v *NullableBindingLevel) Unset()

type NullableBindingResp

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

func NewNullableBindingResp

func NewNullableBindingResp(val *BindingResp) *NullableBindingResp

func (NullableBindingResp) Get

func (NullableBindingResp) IsSet

func (v NullableBindingResp) IsSet() bool

func (NullableBindingResp) MarshalJSON

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

func (*NullableBindingResp) Set

func (v *NullableBindingResp) Set(val *BindingResp)

func (*NullableBindingResp) UnmarshalJSON

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

func (*NullableBindingResp) Unset

func (v *NullableBindingResp) 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 NullableBsfEvent

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

func NewNullableBsfEvent

func NewNullableBsfEvent(val *BsfEvent) *NullableBsfEvent

func (NullableBsfEvent) Get

func (v NullableBsfEvent) Get() *BsfEvent

func (NullableBsfEvent) IsSet

func (v NullableBsfEvent) IsSet() bool

func (NullableBsfEvent) MarshalJSON

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

func (*NullableBsfEvent) Set

func (v *NullableBsfEvent) Set(val *BsfEvent)

func (*NullableBsfEvent) UnmarshalJSON

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

func (*NullableBsfEvent) Unset

func (v *NullableBsfEvent) Unset()

type NullableBsfEventNotification

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

func NewNullableBsfEventNotification

func NewNullableBsfEventNotification(val *BsfEventNotification) *NullableBsfEventNotification

func (NullableBsfEventNotification) Get

func (NullableBsfEventNotification) IsSet

func (NullableBsfEventNotification) MarshalJSON

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

func (*NullableBsfEventNotification) Set

func (*NullableBsfEventNotification) UnmarshalJSON

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

func (*NullableBsfEventNotification) Unset

func (v *NullableBsfEventNotification) Unset()

type NullableBsfNotification

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

func NewNullableBsfNotification

func NewNullableBsfNotification(val *BsfNotification) *NullableBsfNotification

func (NullableBsfNotification) Get

func (NullableBsfNotification) IsSet

func (v NullableBsfNotification) IsSet() bool

func (NullableBsfNotification) MarshalJSON

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

func (*NullableBsfNotification) Set

func (*NullableBsfNotification) UnmarshalJSON

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

func (*NullableBsfNotification) Unset

func (v *NullableBsfNotification) Unset()

type NullableBsfSubscription

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

func NewNullableBsfSubscription

func NewNullableBsfSubscription(val *BsfSubscription) *NullableBsfSubscription

func (NullableBsfSubscription) Get

func (NullableBsfSubscription) IsSet

func (v NullableBsfSubscription) IsSet() bool

func (NullableBsfSubscription) MarshalJSON

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

func (*NullableBsfSubscription) Set

func (*NullableBsfSubscription) UnmarshalJSON

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

func (*NullableBsfSubscription) Unset

func (v *NullableBsfSubscription) Unset()

type NullableBsfSubscriptionResp

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

func NewNullableBsfSubscriptionResp

func NewNullableBsfSubscriptionResp(val *BsfSubscriptionResp) *NullableBsfSubscriptionResp

func (NullableBsfSubscriptionResp) Get

func (NullableBsfSubscriptionResp) IsSet

func (NullableBsfSubscriptionResp) MarshalJSON

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

func (*NullableBsfSubscriptionResp) Set

func (*NullableBsfSubscriptionResp) UnmarshalJSON

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

func (*NullableBsfSubscriptionResp) Unset

func (v *NullableBsfSubscriptionResp) Unset()

type NullableExtProblemDetails

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

func NewNullableExtProblemDetails

func NewNullableExtProblemDetails(val *ExtProblemDetails) *NullableExtProblemDetails

func (NullableExtProblemDetails) Get

func (NullableExtProblemDetails) IsSet

func (v NullableExtProblemDetails) IsSet() bool

func (NullableExtProblemDetails) MarshalJSON

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

func (*NullableExtProblemDetails) Set

func (*NullableExtProblemDetails) UnmarshalJSON

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

func (*NullableExtProblemDetails) Unset

func (v *NullableExtProblemDetails) Unset()

type NullableFloat32

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

func NewNullableFloat32

func NewNullableFloat32(val *float32) *NullableFloat32

func (NullableFloat32) Get

func (v NullableFloat32) Get() *float32

func (NullableFloat32) IsSet

func (v NullableFloat32) IsSet() bool

func (NullableFloat32) MarshalJSON

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

func (*NullableFloat32) Set

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

func (*NullableFloat32) UnmarshalJSON

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

func (*NullableFloat32) Unset

func (v *NullableFloat32) Unset()

type NullableFloat64

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

func NewNullableFloat64

func NewNullableFloat64(val *float64) *NullableFloat64

func (NullableFloat64) Get

func (v NullableFloat64) Get() *float64

func (NullableFloat64) IsSet

func (v NullableFloat64) IsSet() bool

func (NullableFloat64) MarshalJSON

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

func (*NullableFloat64) Set

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

func (*NullableFloat64) UnmarshalJSON

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

func (*NullableFloat64) Unset

func (v *NullableFloat64) Unset()

type NullableInt

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

func NewNullableInt

func NewNullableInt(val *int) *NullableInt

func (NullableInt) Get

func (v NullableInt) Get() *int

func (NullableInt) IsSet

func (v NullableInt) IsSet() bool

func (NullableInt) MarshalJSON

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

func (*NullableInt) Set

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

func (*NullableInt) UnmarshalJSON

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

func (*NullableInt) Unset

func (v *NullableInt) Unset()

type NullableInt32

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

func NewNullableInt32

func NewNullableInt32(val *int32) *NullableInt32

func (NullableInt32) Get

func (v NullableInt32) Get() *int32

func (NullableInt32) IsSet

func (v NullableInt32) IsSet() bool

func (NullableInt32) MarshalJSON

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

func (*NullableInt32) Set

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

func (*NullableInt32) UnmarshalJSON

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

func (*NullableInt32) Unset

func (v *NullableInt32) Unset()

type NullableInt64

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

func NewNullableInt64

func NewNullableInt64(val *int64) *NullableInt64

func (NullableInt64) Get

func (v NullableInt64) Get() *int64

func (NullableInt64) IsSet

func (v NullableInt64) IsSet() bool

func (NullableInt64) MarshalJSON

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

func (*NullableInt64) Set

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

func (*NullableInt64) UnmarshalJSON

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

func (*NullableInt64) Unset

func (v *NullableInt64) Unset()

type NullableInvalidParam

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

func NewNullableInvalidParam

func NewNullableInvalidParam(val *InvalidParam) *NullableInvalidParam

func (NullableInvalidParam) Get

func (NullableInvalidParam) IsSet

func (v NullableInvalidParam) IsSet() bool

func (NullableInvalidParam) MarshalJSON

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

func (*NullableInvalidParam) Set

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

func (*NullableInvalidParam) UnmarshalJSON

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

func (*NullableInvalidParam) Unset

func (v *NullableInvalidParam) Unset()

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

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

func NewNullableIpEndPoint

func NewNullableIpEndPoint(val *IpEndPoint) *NullableIpEndPoint

func (NullableIpEndPoint) Get

func (v NullableIpEndPoint) Get() *IpEndPoint

func (NullableIpEndPoint) IsSet

func (v NullableIpEndPoint) IsSet() bool

func (NullableIpEndPoint) MarshalJSON

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

func (*NullableIpEndPoint) Set

func (v *NullableIpEndPoint) Set(val *IpEndPoint)

func (*NullableIpEndPoint) UnmarshalJSON

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

func (*NullableIpEndPoint) Unset

func (v *NullableIpEndPoint) 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 NullableIpv6PrefixRm

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

func NewNullableIpv6PrefixRm

func NewNullableIpv6PrefixRm(val *Ipv6PrefixRm) *NullableIpv6PrefixRm

func (NullableIpv6PrefixRm) Get

func (NullableIpv6PrefixRm) IsSet

func (v NullableIpv6PrefixRm) IsSet() bool

func (NullableIpv6PrefixRm) MarshalJSON

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

func (*NullableIpv6PrefixRm) Set

func (v *NullableIpv6PrefixRm) Set(val *Ipv6PrefixRm)

func (*NullableIpv6PrefixRm) UnmarshalJSON

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

func (*NullableIpv6PrefixRm) Unset

func (v *NullableIpv6PrefixRm) Unset()

type NullableMbsBindingResp

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

func NewNullableMbsBindingResp

func NewNullableMbsBindingResp(val *MbsBindingResp) *NullableMbsBindingResp

func (NullableMbsBindingResp) Get

func (NullableMbsBindingResp) IsSet

func (v NullableMbsBindingResp) IsSet() bool

func (NullableMbsBindingResp) MarshalJSON

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

func (*NullableMbsBindingResp) Set

func (*NullableMbsBindingResp) UnmarshalJSON

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

func (*NullableMbsBindingResp) Unset

func (v *NullableMbsBindingResp) Unset()

type NullableMbsExtProblemDetails

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

func NewNullableMbsExtProblemDetails

func NewNullableMbsExtProblemDetails(val *MbsExtProblemDetails) *NullableMbsExtProblemDetails

func (NullableMbsExtProblemDetails) Get

func (NullableMbsExtProblemDetails) IsSet

func (NullableMbsExtProblemDetails) MarshalJSON

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

func (*NullableMbsExtProblemDetails) Set

func (*NullableMbsExtProblemDetails) UnmarshalJSON

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

func (*NullableMbsExtProblemDetails) Unset

func (v *NullableMbsExtProblemDetails) Unset()

type NullableMbsSessionId

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

func NewNullableMbsSessionId

func NewNullableMbsSessionId(val *MbsSessionId) *NullableMbsSessionId

func (NullableMbsSessionId) Get

func (NullableMbsSessionId) IsSet

func (v NullableMbsSessionId) IsSet() bool

func (NullableMbsSessionId) MarshalJSON

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

func (*NullableMbsSessionId) Set

func (v *NullableMbsSessionId) Set(val *MbsSessionId)

func (*NullableMbsSessionId) UnmarshalJSON

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

func (*NullableMbsSessionId) Unset

func (v *NullableMbsSessionId) Unset()

type NullableNFType

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

func NewNullableNFType

func NewNullableNFType(val *NFType) *NullableNFType

func (NullableNFType) Get

func (v NullableNFType) Get() *NFType

func (NullableNFType) IsSet

func (v NullableNFType) IsSet() bool

func (NullableNFType) MarshalJSON

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

func (*NullableNFType) Set

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

func (*NullableNFType) UnmarshalJSON

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

func (*NullableNFType) Unset

func (v *NullableNFType) Unset()

type NullableParameterCombination

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

func NewNullableParameterCombination

func NewNullableParameterCombination(val *ParameterCombination) *NullableParameterCombination

func (NullableParameterCombination) Get

func (NullableParameterCombination) IsSet

func (NullableParameterCombination) MarshalJSON

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

func (*NullableParameterCombination) Set

func (*NullableParameterCombination) UnmarshalJSON

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

func (*NullableParameterCombination) Unset

func (v *NullableParameterCombination) Unset()

type NullablePcfBinding

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

func NewNullablePcfBinding

func NewNullablePcfBinding(val *PcfBinding) *NullablePcfBinding

func (NullablePcfBinding) Get

func (v NullablePcfBinding) Get() *PcfBinding

func (NullablePcfBinding) IsSet

func (v NullablePcfBinding) IsSet() bool

func (NullablePcfBinding) MarshalJSON

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

func (*NullablePcfBinding) Set

func (v *NullablePcfBinding) Set(val *PcfBinding)

func (*NullablePcfBinding) UnmarshalJSON

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

func (*NullablePcfBinding) Unset

func (v *NullablePcfBinding) Unset()

type NullablePcfBindingPatch

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

func NewNullablePcfBindingPatch

func NewNullablePcfBindingPatch(val *PcfBindingPatch) *NullablePcfBindingPatch

func (NullablePcfBindingPatch) Get

func (NullablePcfBindingPatch) IsSet

func (v NullablePcfBindingPatch) IsSet() bool

func (NullablePcfBindingPatch) MarshalJSON

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

func (*NullablePcfBindingPatch) Set

func (*NullablePcfBindingPatch) UnmarshalJSON

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

func (*NullablePcfBindingPatch) Unset

func (v *NullablePcfBindingPatch) Unset()

type NullablePcfForPduSessionInfo

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

func NewNullablePcfForPduSessionInfo

func NewNullablePcfForPduSessionInfo(val *PcfForPduSessionInfo) *NullablePcfForPduSessionInfo

func (NullablePcfForPduSessionInfo) Get

func (NullablePcfForPduSessionInfo) IsSet

func (NullablePcfForPduSessionInfo) MarshalJSON

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

func (*NullablePcfForPduSessionInfo) Set

func (*NullablePcfForPduSessionInfo) UnmarshalJSON

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

func (*NullablePcfForPduSessionInfo) Unset

func (v *NullablePcfForPduSessionInfo) Unset()

type NullablePcfForUeBinding

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

func NewNullablePcfForUeBinding

func NewNullablePcfForUeBinding(val *PcfForUeBinding) *NullablePcfForUeBinding

func (NullablePcfForUeBinding) Get

func (NullablePcfForUeBinding) IsSet

func (v NullablePcfForUeBinding) IsSet() bool

func (NullablePcfForUeBinding) MarshalJSON

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

func (*NullablePcfForUeBinding) Set

func (*NullablePcfForUeBinding) UnmarshalJSON

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

func (*NullablePcfForUeBinding) Unset

func (v *NullablePcfForUeBinding) Unset()

type NullablePcfForUeBindingPatch

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

func NewNullablePcfForUeBindingPatch

func NewNullablePcfForUeBindingPatch(val *PcfForUeBindingPatch) *NullablePcfForUeBindingPatch

func (NullablePcfForUeBindingPatch) Get

func (NullablePcfForUeBindingPatch) IsSet

func (NullablePcfForUeBindingPatch) MarshalJSON

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

func (*NullablePcfForUeBindingPatch) Set

func (*NullablePcfForUeBindingPatch) UnmarshalJSON

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

func (*NullablePcfForUeBindingPatch) Unset

func (v *NullablePcfForUeBindingPatch) Unset()

type NullablePcfForUeInfo

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

func NewNullablePcfForUeInfo

func NewNullablePcfForUeInfo(val *PcfForUeInfo) *NullablePcfForUeInfo

func (NullablePcfForUeInfo) Get

func (NullablePcfForUeInfo) IsSet

func (v NullablePcfForUeInfo) IsSet() bool

func (NullablePcfForUeInfo) MarshalJSON

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

func (*NullablePcfForUeInfo) Set

func (v *NullablePcfForUeInfo) Set(val *PcfForUeInfo)

func (*NullablePcfForUeInfo) UnmarshalJSON

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

func (*NullablePcfForUeInfo) Unset

func (v *NullablePcfForUeInfo) Unset()

type NullablePcfMbsBinding

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

func NewNullablePcfMbsBinding

func NewNullablePcfMbsBinding(val *PcfMbsBinding) *NullablePcfMbsBinding

func (NullablePcfMbsBinding) Get

func (NullablePcfMbsBinding) IsSet

func (v NullablePcfMbsBinding) IsSet() bool

func (NullablePcfMbsBinding) MarshalJSON

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

func (*NullablePcfMbsBinding) Set

func (v *NullablePcfMbsBinding) Set(val *PcfMbsBinding)

func (*NullablePcfMbsBinding) UnmarshalJSON

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

func (*NullablePcfMbsBinding) Unset

func (v *NullablePcfMbsBinding) Unset()

type NullablePcfMbsBindingPatch

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

func NewNullablePcfMbsBindingPatch

func NewNullablePcfMbsBindingPatch(val *PcfMbsBindingPatch) *NullablePcfMbsBindingPatch

func (NullablePcfMbsBindingPatch) Get

func (NullablePcfMbsBindingPatch) IsSet

func (v NullablePcfMbsBindingPatch) IsSet() bool

func (NullablePcfMbsBindingPatch) MarshalJSON

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

func (*NullablePcfMbsBindingPatch) Set

func (*NullablePcfMbsBindingPatch) UnmarshalJSON

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

func (*NullablePcfMbsBindingPatch) Unset

func (v *NullablePcfMbsBindingPatch) Unset()

type NullablePlmnId

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

func NewNullablePlmnId

func NewNullablePlmnId(val *PlmnId) *NullablePlmnId

func (NullablePlmnId) Get

func (v NullablePlmnId) Get() *PlmnId

func (NullablePlmnId) IsSet

func (v NullablePlmnId) IsSet() bool

func (NullablePlmnId) MarshalJSON

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

func (*NullablePlmnId) Set

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

func (*NullablePlmnId) UnmarshalJSON

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

func (*NullablePlmnId) Unset

func (v *NullablePlmnId) Unset()

type NullablePlmnIdNid

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

func NewNullablePlmnIdNid

func NewNullablePlmnIdNid(val *PlmnIdNid) *NullablePlmnIdNid

func (NullablePlmnIdNid) Get

func (v NullablePlmnIdNid) Get() *PlmnIdNid

func (NullablePlmnIdNid) IsSet

func (v NullablePlmnIdNid) IsSet() bool

func (NullablePlmnIdNid) MarshalJSON

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

func (*NullablePlmnIdNid) Set

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

func (*NullablePlmnIdNid) UnmarshalJSON

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

func (*NullablePlmnIdNid) Unset

func (v *NullablePlmnIdNid) Unset()

type NullableProblemDetails

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

func NewNullableProblemDetails

func NewNullableProblemDetails(val *ProblemDetails) *NullableProblemDetails

func (NullableProblemDetails) Get

func (NullableProblemDetails) IsSet

func (v NullableProblemDetails) IsSet() bool

func (NullableProblemDetails) MarshalJSON

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

func (*NullableProblemDetails) Set

func (*NullableProblemDetails) UnmarshalJSON

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

func (*NullableProblemDetails) Unset

func (v *NullableProblemDetails) Unset()

type NullableRedirectResponse

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

func NewNullableRedirectResponse

func NewNullableRedirectResponse(val *RedirectResponse) *NullableRedirectResponse

func (NullableRedirectResponse) Get

func (NullableRedirectResponse) IsSet

func (v NullableRedirectResponse) IsSet() bool

func (NullableRedirectResponse) MarshalJSON

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

func (*NullableRedirectResponse) Set

func (*NullableRedirectResponse) UnmarshalJSON

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

func (*NullableRedirectResponse) Unset

func (v *NullableRedirectResponse) Unset()

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

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

func NewNullableSnssaiDnnPair

func NewNullableSnssaiDnnPair(val *SnssaiDnnPair) *NullableSnssaiDnnPair

func (NullableSnssaiDnnPair) Get

func (NullableSnssaiDnnPair) IsSet

func (v NullableSnssaiDnnPair) IsSet() bool

func (NullableSnssaiDnnPair) MarshalJSON

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

func (*NullableSnssaiDnnPair) Set

func (v *NullableSnssaiDnnPair) Set(val *SnssaiDnnPair)

func (*NullableSnssaiDnnPair) UnmarshalJSON

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

func (*NullableSnssaiDnnPair) Unset

func (v *NullableSnssaiDnnPair) Unset()

type NullableSsm

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

func NewNullableSsm

func NewNullableSsm(val *Ssm) *NullableSsm

func (NullableSsm) Get

func (v NullableSsm) Get() *Ssm

func (NullableSsm) IsSet

func (v NullableSsm) IsSet() bool

func (NullableSsm) MarshalJSON

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

func (*NullableSsm) Set

func (v *NullableSsm) Set(val *Ssm)

func (*NullableSsm) UnmarshalJSON

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

func (*NullableSsm) Unset

func (v *NullableSsm) 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 NullableTmgi

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

func NewNullableTmgi

func NewNullableTmgi(val *Tmgi) *NullableTmgi

func (NullableTmgi) Get

func (v NullableTmgi) Get() *Tmgi

func (NullableTmgi) IsSet

func (v NullableTmgi) IsSet() bool

func (NullableTmgi) MarshalJSON

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

func (*NullableTmgi) Set

func (v *NullableTmgi) Set(val *Tmgi)

func (*NullableTmgi) UnmarshalJSON

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

func (*NullableTmgi) Unset

func (v *NullableTmgi) Unset()

type NullableTransportProtocol

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

func NewNullableTransportProtocol

func NewNullableTransportProtocol(val *TransportProtocol) *NullableTransportProtocol

func (NullableTransportProtocol) Get

func (NullableTransportProtocol) IsSet

func (v NullableTransportProtocol) IsSet() bool

func (NullableTransportProtocol) MarshalJSON

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

func (*NullableTransportProtocol) Set

func (*NullableTransportProtocol) UnmarshalJSON

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

func (*NullableTransportProtocol) Unset

func (v *NullableTransportProtocol) Unset()

type PCFBindingsCollectionAPIService

type PCFBindingsCollectionAPIService service

PCFBindingsCollectionAPIService PCFBindingsCollectionAPI service

func (*PCFBindingsCollectionAPIService) CreatePCFBinding

CreatePCFBinding Create a new Individual PCF for a PDU Session binding information

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

func (*PCFBindingsCollectionAPIService) CreatePCFBindingExecute

Execute executes the request

@return PcfBinding

func (*PCFBindingsCollectionAPIService) GetPCFBindings

GetPCFBindings Read PCF for a PDU Session Bindings information

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

func (*PCFBindingsCollectionAPIService) GetPCFBindingsExecute

Execute executes the request

@return PcfBinding

type PCFForAUEBindingsCollectionAPIService

type PCFForAUEBindingsCollectionAPIService service

PCFForAUEBindingsCollectionAPIService PCFForAUEBindingsCollectionAPI service

func (*PCFForAUEBindingsCollectionAPIService) CreatePCFforUEBinding

CreatePCFforUEBinding Create a new Individual PCF for a UE binding information

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

func (*PCFForAUEBindingsCollectionAPIService) CreatePCFforUEBindingExecute

Execute executes the request

@return PcfForUeBinding

func (*PCFForAUEBindingsCollectionAPIService) GetPCFForUeBindings

GetPCFForUeBindings Read PCF for a UE Bindings information

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

func (*PCFForAUEBindingsCollectionAPIService) GetPCFForUeBindingsExecute

Execute executes the request

@return []PcfForUeBinding

type PCFForAnMBSSessionBindingsCollectionAPIService

type PCFForAnMBSSessionBindingsCollectionAPIService service

PCFForAnMBSSessionBindingsCollectionAPIService PCFForAnMBSSessionBindingsCollectionAPI service

func (*PCFForAnMBSSessionBindingsCollectionAPIService) CreatePCFMbsBinding

CreatePCFMbsBinding Create a new Individual PCF for an MBS Session binding.

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

func (*PCFForAnMBSSessionBindingsCollectionAPIService) CreatePCFMbsBindingExecute

Execute executes the request

@return PcfMbsBinding

func (*PCFForAnMBSSessionBindingsCollectionAPIService) GetPCFMbsBinding

GetPCFMbsBinding Retrieve an existing PCF for an MBS Session binding.

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

func (*PCFForAnMBSSessionBindingsCollectionAPIService) GetPCFMbsBindingExecute

Execute executes the request

@return []PcfMbsBinding

type ParameterCombination

type ParameterCombination struct {
	// String identifying a Supi that shall contain either an IMSI, a network specific identifier, a Global Cable Identifier (GCI) or a Global Line Identifier (GLI) as specified in clause  2.2A of 3GPP TS 23.003. It shall be formatted as follows  - for an IMSI \"imsi-<imsi>\", where <imsi> shall be formatted according to clause 2.2    of 3GPP TS 23.003 that describes an IMSI.  - for a network specific identifier \"nai-<nai>, where <nai> shall be formatted    according to clause 28.7.2 of 3GPP TS 23.003 that describes an NAI.  - for a GCI \"gci-<gci>\", where <gci> shall be formatted according to clause 28.15.2    of 3GPP TS 23.003.  - for a GLI \"gli-<gli>\", where <gli> shall be formatted according to clause 28.16.2 of    3GPP TS 23.003.To enable that the value is used as part of an URI, the string shall    only contain characters allowed according to the \"lower-with-hyphen\" naming convention    defined in 3GPP TS 29.501.
	Supi *string `json:"supi,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"`
}

ParameterCombination Represents the combination used by the BSF to check whether there is an existing PCF binding information.

func NewParameterCombination

func NewParameterCombination() *ParameterCombination

NewParameterCombination instantiates a new ParameterCombination 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 NewParameterCombinationWithDefaults

func NewParameterCombinationWithDefaults() *ParameterCombination

NewParameterCombinationWithDefaults instantiates a new ParameterCombination 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 (*ParameterCombination) GetDnn

func (o *ParameterCombination) GetDnn() string

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

func (*ParameterCombination) GetDnnOk

func (o *ParameterCombination) 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 (*ParameterCombination) GetSnssai

func (o *ParameterCombination) GetSnssai() Snssai

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

func (*ParameterCombination) GetSnssaiOk

func (o *ParameterCombination) 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 (*ParameterCombination) GetSupi

func (o *ParameterCombination) GetSupi() string

GetSupi returns the Supi field value if set, zero value otherwise.

func (*ParameterCombination) GetSupiOk

func (o *ParameterCombination) GetSupiOk() (*string, bool)

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

func (*ParameterCombination) HasDnn

func (o *ParameterCombination) HasDnn() bool

HasDnn returns a boolean if a field has been set.

func (*ParameterCombination) HasSnssai

func (o *ParameterCombination) HasSnssai() bool

HasSnssai returns a boolean if a field has been set.

func (*ParameterCombination) HasSupi

func (o *ParameterCombination) HasSupi() bool

HasSupi returns a boolean if a field has been set.

func (ParameterCombination) MarshalJSON

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

func (*ParameterCombination) SetDnn

func (o *ParameterCombination) SetDnn(v string)

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

func (*ParameterCombination) SetSnssai

func (o *ParameterCombination) SetSnssai(v Snssai)

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

func (*ParameterCombination) SetSupi

func (o *ParameterCombination) SetSupi(v string)

SetSupi gets a reference to the given string and assigns it to the Supi field.

func (ParameterCombination) ToMap

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

type PcfBinding

type PcfBinding struct {
	// String identifying a Supi that shall contain either an IMSI, a network specific identifier, a Global Cable Identifier (GCI) or a Global Line Identifier (GLI) as specified in clause  2.2A of 3GPP TS 23.003. It shall be formatted as follows  - for an IMSI \"imsi-<imsi>\", where <imsi> shall be formatted according to clause 2.2    of 3GPP TS 23.003 that describes an IMSI.  - for a network specific identifier \"nai-<nai>, where <nai> shall be formatted    according to clause 28.7.2 of 3GPP TS 23.003 that describes an NAI.  - for a GCI \"gci-<gci>\", where <gci> shall be formatted according to clause 28.15.2    of 3GPP TS 23.003.  - for a GLI \"gli-<gli>\", where <gli> shall be formatted according to clause 28.16.2 of    3GPP TS 23.003.To enable that the value is used as part of an URI, the string shall    only contain characters allowed according to the \"lower-with-hyphen\" naming convention    defined in 3GPP TS 29.501.
	Supi *string `json:"supi,omitempty"`
	// String identifying a Gpsi shall contain either an External Id or an MSISDN.  It shall be formatted as follows -External Identifier= \"extid-'extid', where 'extid'  shall be formatted according to clause 19.7.2 of 3GPP TS 23.003 that describes an  External Identifier.
	Gpsi *string `json:"gpsi,omitempty"`
	// String identifying a IPv4 address formatted in the 'dotted decimal' notation as defined in RFC 1166.
	Ipv4Addr   *string     `json:"ipv4Addr,omitempty"`
	Ipv6Prefix *Ipv6Prefix `json:"ipv6Prefix,omitempty"`
	// The additional IPv6 Address Prefixes of the served UE.
	AddIpv6Prefixes []Ipv6Prefix `json:"addIpv6Prefixes,omitempty"`
	IpDomain        *string      `json:"ipDomain,omitempty"`
	// String identifying a MAC address formatted in the hexadecimal notation according to clause 1.1 and clause 2.1 of RFC 7042.
	MacAddr48 *string `json:"macAddr48,omitempty"`
	// The additional MAC Addresses of the served UE.
	AddMacAddrs []string `json:"addMacAddrs,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"`
	// Fully Qualified Domain Name
	PcfFqdn *string `json:"pcfFqdn,omitempty"`
	// IP end points of the PCF hosting the Npcf_PolicyAuthorization service
	PcfIpEndPoints []IpEndPoint `json:"pcfIpEndPoints,omitempty"`
	// Fully Qualified Domain Name
	PcfDiamHost *string `json:"pcfDiamHost,omitempty"`
	// Fully Qualified Domain Name
	PcfDiamRealm *string `json:"pcfDiamRealm,omitempty"`
	// Fully Qualified Domain Name
	PcfSmFqdn *string `json:"pcfSmFqdn,omitempty"`
	// IP end points of the PCF hosting the Npcf_SMPolicyControl service.
	PcfSmIpEndPoints []IpEndPoint `json:"pcfSmIpEndPoints,omitempty"`
	Snssai           Snssai       `json:"snssai"`
	// A string used to indicate the features supported by an API that is used as defined in clause  6.6 in 3GPP TS 29.500. The string shall contain a bitmask indicating supported features in  hexadecimal representation Each character in the string shall take a value of \"0\" to \"9\",  \"a\" to \"f\" or \"A\" to \"F\" and shall represent the support of 4 features as described in  table 5.2.2-3. The most significant character representing the highest-numbered features shall  appear first in the string, and the character representing features 1 to 4 shall appear last  in the string. The list of features and their numbering (starting with 1) are defined  separately for each API. If the string contains a lower number of characters than there are  defined features for an API, all features that would be represented by characters that are not  present in the string are not supported.
	SuppFeat *string `json:"suppFeat,omitempty"`
	// String uniquely identifying a NF instance. The format of the NF Instance ID shall be a  Universally Unique Identifier (UUID) version 4, as described in IETF RFC 4122.
	PcfId *string `json:"pcfId,omitempty"`
	// NF Set Identifier (see clause 28.12 of 3GPP TS 23.003), formatted as the following string \"set<Set ID>.<nftype>set.5gc.mnc<MNC>.mcc<MCC>\", or  \"set<SetID>.<NFType>set.5gc.nid<NID>.mnc<MNC>.mcc<MCC>\" with  <MCC> encoded as defined in clause 5.4.2 (\"Mcc\" data type definition)  <MNC> encoding the Mobile Network Code part of the PLMN, comprising 3 digits.    If there are only 2 significant digits in the MNC, one \"0\" digit shall be inserted    at the left side to fill the 3 digits coding of MNC.  Pattern: '^[0-9]{3}$' <NFType> encoded as a value defined in Table 6.1.6.3.3-1 of 3GPP TS 29.510 but    with lower case characters <Set ID> encoded as a string of characters consisting of    alphabetic characters (A-Z and a-z), digits (0-9) and/or the hyphen (-) and that    shall end with either an alphabetic character or a digit.
	PcfSetId *string `json:"pcfSetId,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	RecoveryTime       *time.Time            `json:"recoveryTime,omitempty"`
	ParaCom            *ParameterCombination `json:"paraCom,omitempty"`
	BindLevel          *BindingLevel         `json:"bindLevel,omitempty"`
	Ipv4FrameRouteList []string              `json:"ipv4FrameRouteList,omitempty"`
	Ipv6FrameRouteList []Ipv6Prefix          `json:"ipv6FrameRouteList,omitempty"`
}

PcfBinding Identifies an Individual PCF for a PDU Session binding.

func NewPcfBinding

func NewPcfBinding(dnn string, snssai Snssai) *PcfBinding

NewPcfBinding instantiates a new PcfBinding 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 NewPcfBindingWithDefaults

func NewPcfBindingWithDefaults() *PcfBinding

NewPcfBindingWithDefaults instantiates a new PcfBinding 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 (*PcfBinding) GetAddIpv6Prefixes

func (o *PcfBinding) GetAddIpv6Prefixes() []Ipv6Prefix

GetAddIpv6Prefixes returns the AddIpv6Prefixes field value if set, zero value otherwise.

func (*PcfBinding) GetAddIpv6PrefixesOk

func (o *PcfBinding) GetAddIpv6PrefixesOk() ([]Ipv6Prefix, bool)

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

func (*PcfBinding) GetAddMacAddrs

func (o *PcfBinding) GetAddMacAddrs() []string

GetAddMacAddrs returns the AddMacAddrs field value if set, zero value otherwise.

func (*PcfBinding) GetAddMacAddrsOk

func (o *PcfBinding) GetAddMacAddrsOk() ([]string, bool)

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

func (*PcfBinding) GetBindLevel

func (o *PcfBinding) GetBindLevel() BindingLevel

GetBindLevel returns the BindLevel field value if set, zero value otherwise.

func (*PcfBinding) GetBindLevelOk

func (o *PcfBinding) GetBindLevelOk() (*BindingLevel, bool)

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

func (*PcfBinding) GetDnn

func (o *PcfBinding) GetDnn() string

GetDnn returns the Dnn field value

func (*PcfBinding) GetDnnOk

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

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

func (*PcfBinding) GetGpsi

func (o *PcfBinding) GetGpsi() string

GetGpsi returns the Gpsi field value if set, zero value otherwise.

func (*PcfBinding) GetGpsiOk

func (o *PcfBinding) GetGpsiOk() (*string, bool)

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

func (*PcfBinding) GetIpDomain

func (o *PcfBinding) GetIpDomain() string

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

func (*PcfBinding) GetIpDomainOk

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

func (o *PcfBinding) GetIpv4Addr() string

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

func (*PcfBinding) GetIpv4AddrOk

func (o *PcfBinding) 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 (*PcfBinding) GetIpv4FrameRouteList

func (o *PcfBinding) GetIpv4FrameRouteList() []string

GetIpv4FrameRouteList returns the Ipv4FrameRouteList field value if set, zero value otherwise.

func (*PcfBinding) GetIpv4FrameRouteListOk

func (o *PcfBinding) GetIpv4FrameRouteListOk() ([]string, bool)

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

func (*PcfBinding) GetIpv6FrameRouteList

func (o *PcfBinding) GetIpv6FrameRouteList() []Ipv6Prefix

GetIpv6FrameRouteList returns the Ipv6FrameRouteList field value if set, zero value otherwise.

func (*PcfBinding) GetIpv6FrameRouteListOk

func (o *PcfBinding) GetIpv6FrameRouteListOk() ([]Ipv6Prefix, bool)

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

func (*PcfBinding) GetIpv6Prefix

func (o *PcfBinding) GetIpv6Prefix() Ipv6Prefix

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

func (*PcfBinding) GetIpv6PrefixOk

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

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

func (*PcfBinding) GetMacAddr48

func (o *PcfBinding) GetMacAddr48() string

GetMacAddr48 returns the MacAddr48 field value if set, zero value otherwise.

func (*PcfBinding) GetMacAddr48Ok

func (o *PcfBinding) GetMacAddr48Ok() (*string, bool)

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

func (*PcfBinding) GetParaCom

func (o *PcfBinding) GetParaCom() ParameterCombination

GetParaCom returns the ParaCom field value if set, zero value otherwise.

func (*PcfBinding) GetParaComOk

func (o *PcfBinding) GetParaComOk() (*ParameterCombination, bool)

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

func (*PcfBinding) GetPcfDiamHost

func (o *PcfBinding) GetPcfDiamHost() string

GetPcfDiamHost returns the PcfDiamHost field value if set, zero value otherwise.

func (*PcfBinding) GetPcfDiamHostOk

func (o *PcfBinding) GetPcfDiamHostOk() (*string, bool)

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

func (*PcfBinding) GetPcfDiamRealm

func (o *PcfBinding) GetPcfDiamRealm() string

GetPcfDiamRealm returns the PcfDiamRealm field value if set, zero value otherwise.

func (*PcfBinding) GetPcfDiamRealmOk

func (o *PcfBinding) GetPcfDiamRealmOk() (*string, bool)

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

func (*PcfBinding) GetPcfFqdn

func (o *PcfBinding) GetPcfFqdn() string

GetPcfFqdn returns the PcfFqdn field value if set, zero value otherwise.

func (*PcfBinding) GetPcfFqdnOk

func (o *PcfBinding) GetPcfFqdnOk() (*string, bool)

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

func (*PcfBinding) GetPcfId

func (o *PcfBinding) GetPcfId() string

GetPcfId returns the PcfId field value if set, zero value otherwise.

func (*PcfBinding) GetPcfIdOk

func (o *PcfBinding) GetPcfIdOk() (*string, bool)

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

func (*PcfBinding) GetPcfIpEndPoints

func (o *PcfBinding) GetPcfIpEndPoints() []IpEndPoint

GetPcfIpEndPoints returns the PcfIpEndPoints field value if set, zero value otherwise.

func (*PcfBinding) GetPcfIpEndPointsOk

func (o *PcfBinding) GetPcfIpEndPointsOk() ([]IpEndPoint, bool)

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

func (*PcfBinding) GetPcfSetId

func (o *PcfBinding) GetPcfSetId() string

GetPcfSetId returns the PcfSetId field value if set, zero value otherwise.

func (*PcfBinding) GetPcfSetIdOk

func (o *PcfBinding) GetPcfSetIdOk() (*string, bool)

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

func (*PcfBinding) GetPcfSmFqdn

func (o *PcfBinding) GetPcfSmFqdn() string

GetPcfSmFqdn returns the PcfSmFqdn field value if set, zero value otherwise.

func (*PcfBinding) GetPcfSmFqdnOk

func (o *PcfBinding) GetPcfSmFqdnOk() (*string, bool)

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

func (*PcfBinding) GetPcfSmIpEndPoints

func (o *PcfBinding) GetPcfSmIpEndPoints() []IpEndPoint

GetPcfSmIpEndPoints returns the PcfSmIpEndPoints field value if set, zero value otherwise.

func (*PcfBinding) GetPcfSmIpEndPointsOk

func (o *PcfBinding) GetPcfSmIpEndPointsOk() ([]IpEndPoint, bool)

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

func (*PcfBinding) GetRecoveryTime

func (o *PcfBinding) GetRecoveryTime() time.Time

GetRecoveryTime returns the RecoveryTime field value if set, zero value otherwise.

func (*PcfBinding) GetRecoveryTimeOk

func (o *PcfBinding) GetRecoveryTimeOk() (*time.Time, bool)

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

func (*PcfBinding) GetSnssai

func (o *PcfBinding) GetSnssai() Snssai

GetSnssai returns the Snssai field value

func (*PcfBinding) GetSnssaiOk

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

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

func (*PcfBinding) GetSupi

func (o *PcfBinding) GetSupi() string

GetSupi returns the Supi field value if set, zero value otherwise.

func (*PcfBinding) GetSupiOk

func (o *PcfBinding) GetSupiOk() (*string, bool)

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

func (*PcfBinding) GetSuppFeat

func (o *PcfBinding) GetSuppFeat() string

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

func (*PcfBinding) GetSuppFeatOk

func (o *PcfBinding) GetSuppFeatOk() (*string, bool)

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

func (*PcfBinding) HasAddIpv6Prefixes

func (o *PcfBinding) HasAddIpv6Prefixes() bool

HasAddIpv6Prefixes returns a boolean if a field has been set.

func (*PcfBinding) HasAddMacAddrs

func (o *PcfBinding) HasAddMacAddrs() bool

HasAddMacAddrs returns a boolean if a field has been set.

func (*PcfBinding) HasBindLevel

func (o *PcfBinding) HasBindLevel() bool

HasBindLevel returns a boolean if a field has been set.

func (*PcfBinding) HasGpsi

func (o *PcfBinding) HasGpsi() bool

HasGpsi returns a boolean if a field has been set.

func (*PcfBinding) HasIpDomain

func (o *PcfBinding) HasIpDomain() bool

HasIpDomain returns a boolean if a field has been set.

func (*PcfBinding) HasIpv4Addr

func (o *PcfBinding) HasIpv4Addr() bool

HasIpv4Addr returns a boolean if a field has been set.

func (*PcfBinding) HasIpv4FrameRouteList

func (o *PcfBinding) HasIpv4FrameRouteList() bool

HasIpv4FrameRouteList returns a boolean if a field has been set.

func (*PcfBinding) HasIpv6FrameRouteList

func (o *PcfBinding) HasIpv6FrameRouteList() bool

HasIpv6FrameRouteList returns a boolean if a field has been set.

func (*PcfBinding) HasIpv6Prefix

func (o *PcfBinding) HasIpv6Prefix() bool

HasIpv6Prefix returns a boolean if a field has been set.

func (*PcfBinding) HasMacAddr48

func (o *PcfBinding) HasMacAddr48() bool

HasMacAddr48 returns a boolean if a field has been set.

func (*PcfBinding) HasParaCom

func (o *PcfBinding) HasParaCom() bool

HasParaCom returns a boolean if a field has been set.

func (*PcfBinding) HasPcfDiamHost

func (o *PcfBinding) HasPcfDiamHost() bool

HasPcfDiamHost returns a boolean if a field has been set.

func (*PcfBinding) HasPcfDiamRealm

func (o *PcfBinding) HasPcfDiamRealm() bool

HasPcfDiamRealm returns a boolean if a field has been set.

func (*PcfBinding) HasPcfFqdn

func (o *PcfBinding) HasPcfFqdn() bool

HasPcfFqdn returns a boolean if a field has been set.

func (*PcfBinding) HasPcfId

func (o *PcfBinding) HasPcfId() bool

HasPcfId returns a boolean if a field has been set.

func (*PcfBinding) HasPcfIpEndPoints

func (o *PcfBinding) HasPcfIpEndPoints() bool

HasPcfIpEndPoints returns a boolean if a field has been set.

func (*PcfBinding) HasPcfSetId

func (o *PcfBinding) HasPcfSetId() bool

HasPcfSetId returns a boolean if a field has been set.

func (*PcfBinding) HasPcfSmFqdn

func (o *PcfBinding) HasPcfSmFqdn() bool

HasPcfSmFqdn returns a boolean if a field has been set.

func (*PcfBinding) HasPcfSmIpEndPoints

func (o *PcfBinding) HasPcfSmIpEndPoints() bool

HasPcfSmIpEndPoints returns a boolean if a field has been set.

func (*PcfBinding) HasRecoveryTime

func (o *PcfBinding) HasRecoveryTime() bool

HasRecoveryTime returns a boolean if a field has been set.

func (*PcfBinding) HasSupi

func (o *PcfBinding) HasSupi() bool

HasSupi returns a boolean if a field has been set.

func (*PcfBinding) HasSuppFeat

func (o *PcfBinding) HasSuppFeat() bool

HasSuppFeat returns a boolean if a field has been set.

func (PcfBinding) MarshalJSON

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

func (*PcfBinding) SetAddIpv6Prefixes

func (o *PcfBinding) SetAddIpv6Prefixes(v []Ipv6Prefix)

SetAddIpv6Prefixes gets a reference to the given []Ipv6Prefix and assigns it to the AddIpv6Prefixes field.

func (*PcfBinding) SetAddMacAddrs

func (o *PcfBinding) SetAddMacAddrs(v []string)

SetAddMacAddrs gets a reference to the given []string and assigns it to the AddMacAddrs field.

func (*PcfBinding) SetBindLevel

func (o *PcfBinding) SetBindLevel(v BindingLevel)

SetBindLevel gets a reference to the given BindingLevel and assigns it to the BindLevel field.

func (*PcfBinding) SetDnn

func (o *PcfBinding) SetDnn(v string)

SetDnn sets field value

func (*PcfBinding) SetGpsi

func (o *PcfBinding) SetGpsi(v string)

SetGpsi gets a reference to the given string and assigns it to the Gpsi field.

func (*PcfBinding) SetIpDomain

func (o *PcfBinding) SetIpDomain(v string)

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

func (*PcfBinding) SetIpv4Addr

func (o *PcfBinding) SetIpv4Addr(v string)

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

func (*PcfBinding) SetIpv4FrameRouteList

func (o *PcfBinding) SetIpv4FrameRouteList(v []string)

SetIpv4FrameRouteList gets a reference to the given []string and assigns it to the Ipv4FrameRouteList field.

func (*PcfBinding) SetIpv6FrameRouteList

func (o *PcfBinding) SetIpv6FrameRouteList(v []Ipv6Prefix)

SetIpv6FrameRouteList gets a reference to the given []Ipv6Prefix and assigns it to the Ipv6FrameRouteList field.

func (*PcfBinding) SetIpv6Prefix

func (o *PcfBinding) SetIpv6Prefix(v Ipv6Prefix)

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

func (*PcfBinding) SetMacAddr48

func (o *PcfBinding) SetMacAddr48(v string)

SetMacAddr48 gets a reference to the given string and assigns it to the MacAddr48 field.

func (*PcfBinding) SetParaCom

func (o *PcfBinding) SetParaCom(v ParameterCombination)

SetParaCom gets a reference to the given ParameterCombination and assigns it to the ParaCom field.

func (*PcfBinding) SetPcfDiamHost

func (o *PcfBinding) SetPcfDiamHost(v string)

SetPcfDiamHost gets a reference to the given string and assigns it to the PcfDiamHost field.

func (*PcfBinding) SetPcfDiamRealm

func (o *PcfBinding) SetPcfDiamRealm(v string)

SetPcfDiamRealm gets a reference to the given string and assigns it to the PcfDiamRealm field.

func (*PcfBinding) SetPcfFqdn

func (o *PcfBinding) SetPcfFqdn(v string)

SetPcfFqdn gets a reference to the given string and assigns it to the PcfFqdn field.

func (*PcfBinding) SetPcfId

func (o *PcfBinding) SetPcfId(v string)

SetPcfId gets a reference to the given string and assigns it to the PcfId field.

func (*PcfBinding) SetPcfIpEndPoints

func (o *PcfBinding) SetPcfIpEndPoints(v []IpEndPoint)

SetPcfIpEndPoints gets a reference to the given []IpEndPoint and assigns it to the PcfIpEndPoints field.

func (*PcfBinding) SetPcfSetId

func (o *PcfBinding) SetPcfSetId(v string)

SetPcfSetId gets a reference to the given string and assigns it to the PcfSetId field.

func (*PcfBinding) SetPcfSmFqdn

func (o *PcfBinding) SetPcfSmFqdn(v string)

SetPcfSmFqdn gets a reference to the given string and assigns it to the PcfSmFqdn field.

func (*PcfBinding) SetPcfSmIpEndPoints

func (o *PcfBinding) SetPcfSmIpEndPoints(v []IpEndPoint)

SetPcfSmIpEndPoints gets a reference to the given []IpEndPoint and assigns it to the PcfSmIpEndPoints field.

func (*PcfBinding) SetRecoveryTime

func (o *PcfBinding) SetRecoveryTime(v time.Time)

SetRecoveryTime gets a reference to the given time.Time and assigns it to the RecoveryTime field.

func (*PcfBinding) SetSnssai

func (o *PcfBinding) SetSnssai(v Snssai)

SetSnssai sets field value

func (*PcfBinding) SetSupi

func (o *PcfBinding) SetSupi(v string)

SetSupi gets a reference to the given string and assigns it to the Supi field.

func (*PcfBinding) SetSuppFeat

func (o *PcfBinding) SetSuppFeat(v string)

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

func (PcfBinding) ToMap

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

func (*PcfBinding) UnmarshalJSON

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

type PcfBindingPatch

type PcfBindingPatch struct {
	// String identifying a IPv4 address formatted in the 'dotted decimal' notation as defined in RFC 1166 with the OpenAPI defined 'nullable: true' property.
	Ipv4Addr   NullableString       `json:"ipv4Addr,omitempty"`
	IpDomain   NullableString       `json:"ipDomain,omitempty"`
	Ipv6Prefix NullableIpv6PrefixRm `json:"ipv6Prefix,omitempty"`
	// The additional IPv6 Address Prefixes of the served UE.
	AddIpv6Prefixes []Ipv6Prefix `json:"addIpv6Prefixes,omitempty"`
	// \"String identifying a MAC address formatted in the hexadecimal notation according to clause 1.1 and clause 2.1 of RFC 7042 with the OpenAPI 'nullable: true' property.\"
	MacAddr48 NullableString `json:"macAddr48,omitempty"`
	// The additional MAC Addresses of the served UE.
	AddMacAddrs []string `json:"addMacAddrs,omitempty"`
	// String uniquely identifying a NF instance. The format of the NF Instance ID shall be a  Universally Unique Identifier (UUID) version 4, as described in IETF RFC 4122.
	PcfId *string `json:"pcfId,omitempty"`
	// Fully Qualified Domain Name
	PcfFqdn *string `json:"pcfFqdn,omitempty"`
	// IP end points of the PCF hosting the Npcf_PolicyAuthorization service.
	PcfIpEndPoints []IpEndPoint `json:"pcfIpEndPoints,omitempty"`
	// Fully Qualified Domain Name
	PcfDiamHost *string `json:"pcfDiamHost,omitempty"`
	// Fully Qualified Domain Name
	PcfDiamRealm *string `json:"pcfDiamRealm,omitempty"`
}

PcfBindingPatch Identifies an Individual PCF binding used in an HTTP Patch method.

func NewPcfBindingPatch

func NewPcfBindingPatch() *PcfBindingPatch

NewPcfBindingPatch instantiates a new PcfBindingPatch 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 NewPcfBindingPatchWithDefaults

func NewPcfBindingPatchWithDefaults() *PcfBindingPatch

NewPcfBindingPatchWithDefaults instantiates a new PcfBindingPatch 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 (*PcfBindingPatch) GetAddIpv6Prefixes

func (o *PcfBindingPatch) GetAddIpv6Prefixes() []Ipv6Prefix

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

func (*PcfBindingPatch) GetAddIpv6PrefixesOk

func (o *PcfBindingPatch) GetAddIpv6PrefixesOk() ([]Ipv6Prefix, bool)

GetAddIpv6PrefixesOk returns a tuple with the AddIpv6Prefixes 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 (*PcfBindingPatch) GetAddMacAddrs

func (o *PcfBindingPatch) GetAddMacAddrs() []string

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

func (*PcfBindingPatch) GetAddMacAddrsOk

func (o *PcfBindingPatch) GetAddMacAddrsOk() ([]string, bool)

GetAddMacAddrsOk returns a tuple with the AddMacAddrs 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 (*PcfBindingPatch) GetIpDomain

func (o *PcfBindingPatch) GetIpDomain() string

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

func (*PcfBindingPatch) GetIpDomainOk

func (o *PcfBindingPatch) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*PcfBindingPatch) GetIpv4Addr

func (o *PcfBindingPatch) GetIpv4Addr() string

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

func (*PcfBindingPatch) GetIpv4AddrOk

func (o *PcfBindingPatch) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*PcfBindingPatch) GetIpv6Prefix

func (o *PcfBindingPatch) GetIpv6Prefix() Ipv6PrefixRm

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

func (*PcfBindingPatch) GetIpv6PrefixOk

func (o *PcfBindingPatch) GetIpv6PrefixOk() (*Ipv6PrefixRm, bool)

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

func (*PcfBindingPatch) GetMacAddr48

func (o *PcfBindingPatch) GetMacAddr48() string

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

func (*PcfBindingPatch) GetMacAddr48Ok

func (o *PcfBindingPatch) GetMacAddr48Ok() (*string, bool)

GetMacAddr48Ok returns a tuple with the MacAddr48 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 (*PcfBindingPatch) GetPcfDiamHost

func (o *PcfBindingPatch) GetPcfDiamHost() string

GetPcfDiamHost returns the PcfDiamHost field value if set, zero value otherwise.

func (*PcfBindingPatch) GetPcfDiamHostOk

func (o *PcfBindingPatch) GetPcfDiamHostOk() (*string, bool)

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

func (*PcfBindingPatch) GetPcfDiamRealm

func (o *PcfBindingPatch) GetPcfDiamRealm() string

GetPcfDiamRealm returns the PcfDiamRealm field value if set, zero value otherwise.

func (*PcfBindingPatch) GetPcfDiamRealmOk

func (o *PcfBindingPatch) GetPcfDiamRealmOk() (*string, bool)

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

func (*PcfBindingPatch) GetPcfFqdn

func (o *PcfBindingPatch) GetPcfFqdn() string

GetPcfFqdn returns the PcfFqdn field value if set, zero value otherwise.

func (*PcfBindingPatch) GetPcfFqdnOk

func (o *PcfBindingPatch) GetPcfFqdnOk() (*string, bool)

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

func (*PcfBindingPatch) GetPcfId

func (o *PcfBindingPatch) GetPcfId() string

GetPcfId returns the PcfId field value if set, zero value otherwise.

func (*PcfBindingPatch) GetPcfIdOk

func (o *PcfBindingPatch) GetPcfIdOk() (*string, bool)

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

func (*PcfBindingPatch) GetPcfIpEndPoints

func (o *PcfBindingPatch) GetPcfIpEndPoints() []IpEndPoint

GetPcfIpEndPoints returns the PcfIpEndPoints field value if set, zero value otherwise.

func (*PcfBindingPatch) GetPcfIpEndPointsOk

func (o *PcfBindingPatch) GetPcfIpEndPointsOk() ([]IpEndPoint, bool)

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

func (*PcfBindingPatch) HasAddIpv6Prefixes

func (o *PcfBindingPatch) HasAddIpv6Prefixes() bool

HasAddIpv6Prefixes returns a boolean if a field has been set.

func (*PcfBindingPatch) HasAddMacAddrs

func (o *PcfBindingPatch) HasAddMacAddrs() bool

HasAddMacAddrs returns a boolean if a field has been set.

func (*PcfBindingPatch) HasIpDomain

func (o *PcfBindingPatch) HasIpDomain() bool

HasIpDomain returns a boolean if a field has been set.

func (*PcfBindingPatch) HasIpv4Addr

func (o *PcfBindingPatch) HasIpv4Addr() bool

HasIpv4Addr returns a boolean if a field has been set.

func (*PcfBindingPatch) HasIpv6Prefix

func (o *PcfBindingPatch) HasIpv6Prefix() bool

HasIpv6Prefix returns a boolean if a field has been set.

func (*PcfBindingPatch) HasMacAddr48

func (o *PcfBindingPatch) HasMacAddr48() bool

HasMacAddr48 returns a boolean if a field has been set.

func (*PcfBindingPatch) HasPcfDiamHost

func (o *PcfBindingPatch) HasPcfDiamHost() bool

HasPcfDiamHost returns a boolean if a field has been set.

func (*PcfBindingPatch) HasPcfDiamRealm

func (o *PcfBindingPatch) HasPcfDiamRealm() bool

HasPcfDiamRealm returns a boolean if a field has been set.

func (*PcfBindingPatch) HasPcfFqdn

func (o *PcfBindingPatch) HasPcfFqdn() bool

HasPcfFqdn returns a boolean if a field has been set.

func (*PcfBindingPatch) HasPcfId

func (o *PcfBindingPatch) HasPcfId() bool

HasPcfId returns a boolean if a field has been set.

func (*PcfBindingPatch) HasPcfIpEndPoints

func (o *PcfBindingPatch) HasPcfIpEndPoints() bool

HasPcfIpEndPoints returns a boolean if a field has been set.

func (PcfBindingPatch) MarshalJSON

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

func (*PcfBindingPatch) SetAddIpv6Prefixes

func (o *PcfBindingPatch) SetAddIpv6Prefixes(v []Ipv6Prefix)

SetAddIpv6Prefixes gets a reference to the given []Ipv6Prefix and assigns it to the AddIpv6Prefixes field.

func (*PcfBindingPatch) SetAddMacAddrs

func (o *PcfBindingPatch) SetAddMacAddrs(v []string)

SetAddMacAddrs gets a reference to the given []string and assigns it to the AddMacAddrs field.

func (*PcfBindingPatch) SetIpDomain

func (o *PcfBindingPatch) SetIpDomain(v string)

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

func (*PcfBindingPatch) SetIpDomainNil

func (o *PcfBindingPatch) SetIpDomainNil()

SetIpDomainNil sets the value for IpDomain to be an explicit nil

func (*PcfBindingPatch) SetIpv4Addr

func (o *PcfBindingPatch) SetIpv4Addr(v string)

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

func (*PcfBindingPatch) SetIpv4AddrNil

func (o *PcfBindingPatch) SetIpv4AddrNil()

SetIpv4AddrNil sets the value for Ipv4Addr to be an explicit nil

func (*PcfBindingPatch) SetIpv6Prefix

func (o *PcfBindingPatch) SetIpv6Prefix(v Ipv6PrefixRm)

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

func (*PcfBindingPatch) SetIpv6PrefixNil

func (o *PcfBindingPatch) SetIpv6PrefixNil()

SetIpv6PrefixNil sets the value for Ipv6Prefix to be an explicit nil

func (*PcfBindingPatch) SetMacAddr48

func (o *PcfBindingPatch) SetMacAddr48(v string)

SetMacAddr48 gets a reference to the given NullableString and assigns it to the MacAddr48 field.

func (*PcfBindingPatch) SetMacAddr48Nil

func (o *PcfBindingPatch) SetMacAddr48Nil()

SetMacAddr48Nil sets the value for MacAddr48 to be an explicit nil

func (*PcfBindingPatch) SetPcfDiamHost

func (o *PcfBindingPatch) SetPcfDiamHost(v string)

SetPcfDiamHost gets a reference to the given string and assigns it to the PcfDiamHost field.

func (*PcfBindingPatch) SetPcfDiamRealm

func (o *PcfBindingPatch) SetPcfDiamRealm(v string)

SetPcfDiamRealm gets a reference to the given string and assigns it to the PcfDiamRealm field.

func (*PcfBindingPatch) SetPcfFqdn

func (o *PcfBindingPatch) SetPcfFqdn(v string)

SetPcfFqdn gets a reference to the given string and assigns it to the PcfFqdn field.

func (*PcfBindingPatch) SetPcfId

func (o *PcfBindingPatch) SetPcfId(v string)

SetPcfId gets a reference to the given string and assigns it to the PcfId field.

func (*PcfBindingPatch) SetPcfIpEndPoints

func (o *PcfBindingPatch) SetPcfIpEndPoints(v []IpEndPoint)

SetPcfIpEndPoints gets a reference to the given []IpEndPoint and assigns it to the PcfIpEndPoints field.

func (PcfBindingPatch) ToMap

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

func (*PcfBindingPatch) UnsetIpDomain

func (o *PcfBindingPatch) UnsetIpDomain()

UnsetIpDomain ensures that no value is present for IpDomain, not even an explicit nil

func (*PcfBindingPatch) UnsetIpv4Addr

func (o *PcfBindingPatch) UnsetIpv4Addr()

UnsetIpv4Addr ensures that no value is present for Ipv4Addr, not even an explicit nil

func (*PcfBindingPatch) UnsetIpv6Prefix

func (o *PcfBindingPatch) UnsetIpv6Prefix()

UnsetIpv6Prefix ensures that no value is present for Ipv6Prefix, not even an explicit nil

func (*PcfBindingPatch) UnsetMacAddr48

func (o *PcfBindingPatch) UnsetMacAddr48()

UnsetMacAddr48 ensures that no value is present for MacAddr48, not even an explicit nil

type PcfForPduSessionInfo

type PcfForPduSessionInfo struct {
	// 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"`
	Snssai Snssai `json:"snssai"`
	// Fully Qualified Domain Name
	PcfFqdn *string `json:"pcfFqdn,omitempty"`
	// IP end points of the PCF hosting the Npcf_AmPolicyAuthorization service.
	PcfIpEndPoints []IpEndPoint `json:"pcfIpEndPoints,omitempty"`
	// String identifying a IPv4 address formatted in the 'dotted decimal' notation as defined in RFC 1166 with the OpenAPI defined 'nullable: true' property.
	Ipv4Addr NullableString `json:"ipv4Addr,omitempty"`
	IpDomain *string        `json:"ipDomain,omitempty"`
	// The IPv6 Address Prefixes of the served UE.
	Ipv6Prefixes []Ipv6Prefix `json:"ipv6Prefixes,omitempty"`
	// The MAC Addresses of the served UE.
	MacAddrs []string `json:"macAddrs,omitempty"`
	// String uniquely identifying a NF instance. The format of the NF Instance ID shall be a  Universally Unique Identifier (UUID) version 4, as described in IETF RFC 4122.
	PcfId *string `json:"pcfId,omitempty"`
	// NF Set Identifier (see clause 28.12 of 3GPP TS 23.003), formatted as the following string \"set<Set ID>.<nftype>set.5gc.mnc<MNC>.mcc<MCC>\", or  \"set<SetID>.<NFType>set.5gc.nid<NID>.mnc<MNC>.mcc<MCC>\" with  <MCC> encoded as defined in clause 5.4.2 (\"Mcc\" data type definition)  <MNC> encoding the Mobile Network Code part of the PLMN, comprising 3 digits.    If there are only 2 significant digits in the MNC, one \"0\" digit shall be inserted    at the left side to fill the 3 digits coding of MNC.  Pattern: '^[0-9]{3}$' <NFType> encoded as a value defined in Table 6.1.6.3.3-1 of 3GPP TS 29.510 but    with lower case characters <Set ID> encoded as a string of characters consisting of    alphabetic characters (A-Z and a-z), digits (0-9) and/or the hyphen (-) and that    shall end with either an alphabetic character or a digit.
	PcfSetId  *string       `json:"pcfSetId,omitempty"`
	BindLevel *BindingLevel `json:"bindLevel,omitempty"`
}

PcfForPduSessionInfo Contains the informaiton of the PCF for a PDU session.

func NewPcfForPduSessionInfo

func NewPcfForPduSessionInfo(dnn string, snssai Snssai) *PcfForPduSessionInfo

NewPcfForPduSessionInfo instantiates a new PcfForPduSessionInfo 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 NewPcfForPduSessionInfoWithDefaults

func NewPcfForPduSessionInfoWithDefaults() *PcfForPduSessionInfo

NewPcfForPduSessionInfoWithDefaults instantiates a new PcfForPduSessionInfo 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 (*PcfForPduSessionInfo) GetBindLevel

func (o *PcfForPduSessionInfo) GetBindLevel() BindingLevel

GetBindLevel returns the BindLevel field value if set, zero value otherwise.

func (*PcfForPduSessionInfo) GetBindLevelOk

func (o *PcfForPduSessionInfo) GetBindLevelOk() (*BindingLevel, bool)

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

func (*PcfForPduSessionInfo) GetDnn

func (o *PcfForPduSessionInfo) GetDnn() string

GetDnn returns the Dnn field value

func (*PcfForPduSessionInfo) GetDnnOk

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

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

func (*PcfForPduSessionInfo) GetIpDomain

func (o *PcfForPduSessionInfo) GetIpDomain() string

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

func (*PcfForPduSessionInfo) GetIpDomainOk

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

func (o *PcfForPduSessionInfo) GetIpv4Addr() string

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

func (*PcfForPduSessionInfo) GetIpv4AddrOk

func (o *PcfForPduSessionInfo) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*PcfForPduSessionInfo) GetIpv6Prefixes

func (o *PcfForPduSessionInfo) GetIpv6Prefixes() []Ipv6Prefix

GetIpv6Prefixes returns the Ipv6Prefixes field value if set, zero value otherwise.

func (*PcfForPduSessionInfo) GetIpv6PrefixesOk

func (o *PcfForPduSessionInfo) GetIpv6PrefixesOk() ([]Ipv6Prefix, bool)

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

func (*PcfForPduSessionInfo) GetMacAddrs

func (o *PcfForPduSessionInfo) GetMacAddrs() []string

GetMacAddrs returns the MacAddrs field value if set, zero value otherwise.

func (*PcfForPduSessionInfo) GetMacAddrsOk

func (o *PcfForPduSessionInfo) GetMacAddrsOk() ([]string, bool)

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

func (*PcfForPduSessionInfo) GetPcfFqdn

func (o *PcfForPduSessionInfo) GetPcfFqdn() string

GetPcfFqdn returns the PcfFqdn field value if set, zero value otherwise.

func (*PcfForPduSessionInfo) GetPcfFqdnOk

func (o *PcfForPduSessionInfo) GetPcfFqdnOk() (*string, bool)

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

func (*PcfForPduSessionInfo) GetPcfId

func (o *PcfForPduSessionInfo) GetPcfId() string

GetPcfId returns the PcfId field value if set, zero value otherwise.

func (*PcfForPduSessionInfo) GetPcfIdOk

func (o *PcfForPduSessionInfo) GetPcfIdOk() (*string, bool)

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

func (*PcfForPduSessionInfo) GetPcfIpEndPoints

func (o *PcfForPduSessionInfo) GetPcfIpEndPoints() []IpEndPoint

GetPcfIpEndPoints returns the PcfIpEndPoints field value if set, zero value otherwise.

func (*PcfForPduSessionInfo) GetPcfIpEndPointsOk

func (o *PcfForPduSessionInfo) GetPcfIpEndPointsOk() ([]IpEndPoint, bool)

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

func (*PcfForPduSessionInfo) GetPcfSetId

func (o *PcfForPduSessionInfo) GetPcfSetId() string

GetPcfSetId returns the PcfSetId field value if set, zero value otherwise.

func (*PcfForPduSessionInfo) GetPcfSetIdOk

func (o *PcfForPduSessionInfo) GetPcfSetIdOk() (*string, bool)

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

func (*PcfForPduSessionInfo) GetSnssai

func (o *PcfForPduSessionInfo) GetSnssai() Snssai

GetSnssai returns the Snssai field value

func (*PcfForPduSessionInfo) GetSnssaiOk

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

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

func (*PcfForPduSessionInfo) HasBindLevel

func (o *PcfForPduSessionInfo) HasBindLevel() bool

HasBindLevel returns a boolean if a field has been set.

func (*PcfForPduSessionInfo) HasIpDomain

func (o *PcfForPduSessionInfo) HasIpDomain() bool

HasIpDomain returns a boolean if a field has been set.

func (*PcfForPduSessionInfo) HasIpv4Addr

func (o *PcfForPduSessionInfo) HasIpv4Addr() bool

HasIpv4Addr returns a boolean if a field has been set.

func (*PcfForPduSessionInfo) HasIpv6Prefixes

func (o *PcfForPduSessionInfo) HasIpv6Prefixes() bool

HasIpv6Prefixes returns a boolean if a field has been set.

func (*PcfForPduSessionInfo) HasMacAddrs

func (o *PcfForPduSessionInfo) HasMacAddrs() bool

HasMacAddrs returns a boolean if a field has been set.

func (*PcfForPduSessionInfo) HasPcfFqdn

func (o *PcfForPduSessionInfo) HasPcfFqdn() bool

HasPcfFqdn returns a boolean if a field has been set.

func (*PcfForPduSessionInfo) HasPcfId

func (o *PcfForPduSessionInfo) HasPcfId() bool

HasPcfId returns a boolean if a field has been set.

func (*PcfForPduSessionInfo) HasPcfIpEndPoints

func (o *PcfForPduSessionInfo) HasPcfIpEndPoints() bool

HasPcfIpEndPoints returns a boolean if a field has been set.

func (*PcfForPduSessionInfo) HasPcfSetId

func (o *PcfForPduSessionInfo) HasPcfSetId() bool

HasPcfSetId returns a boolean if a field has been set.

func (PcfForPduSessionInfo) MarshalJSON

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

func (*PcfForPduSessionInfo) SetBindLevel

func (o *PcfForPduSessionInfo) SetBindLevel(v BindingLevel)

SetBindLevel gets a reference to the given BindingLevel and assigns it to the BindLevel field.

func (*PcfForPduSessionInfo) SetDnn

func (o *PcfForPduSessionInfo) SetDnn(v string)

SetDnn sets field value

func (*PcfForPduSessionInfo) SetIpDomain

func (o *PcfForPduSessionInfo) SetIpDomain(v string)

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

func (*PcfForPduSessionInfo) SetIpv4Addr

func (o *PcfForPduSessionInfo) SetIpv4Addr(v string)

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

func (*PcfForPduSessionInfo) SetIpv4AddrNil

func (o *PcfForPduSessionInfo) SetIpv4AddrNil()

SetIpv4AddrNil sets the value for Ipv4Addr to be an explicit nil

func (*PcfForPduSessionInfo) SetIpv6Prefixes

func (o *PcfForPduSessionInfo) SetIpv6Prefixes(v []Ipv6Prefix)

SetIpv6Prefixes gets a reference to the given []Ipv6Prefix and assigns it to the Ipv6Prefixes field.

func (*PcfForPduSessionInfo) SetMacAddrs

func (o *PcfForPduSessionInfo) SetMacAddrs(v []string)

SetMacAddrs gets a reference to the given []string and assigns it to the MacAddrs field.

func (*PcfForPduSessionInfo) SetPcfFqdn

func (o *PcfForPduSessionInfo) SetPcfFqdn(v string)

SetPcfFqdn gets a reference to the given string and assigns it to the PcfFqdn field.

func (*PcfForPduSessionInfo) SetPcfId

func (o *PcfForPduSessionInfo) SetPcfId(v string)

SetPcfId gets a reference to the given string and assigns it to the PcfId field.

func (*PcfForPduSessionInfo) SetPcfIpEndPoints

func (o *PcfForPduSessionInfo) SetPcfIpEndPoints(v []IpEndPoint)

SetPcfIpEndPoints gets a reference to the given []IpEndPoint and assigns it to the PcfIpEndPoints field.

func (*PcfForPduSessionInfo) SetPcfSetId

func (o *PcfForPduSessionInfo) SetPcfSetId(v string)

SetPcfSetId gets a reference to the given string and assigns it to the PcfSetId field.

func (*PcfForPduSessionInfo) SetSnssai

func (o *PcfForPduSessionInfo) SetSnssai(v Snssai)

SetSnssai sets field value

func (PcfForPduSessionInfo) ToMap

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

func (*PcfForPduSessionInfo) UnmarshalJSON

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

func (*PcfForPduSessionInfo) UnsetIpv4Addr

func (o *PcfForPduSessionInfo) UnsetIpv4Addr()

UnsetIpv4Addr ensures that no value is present for Ipv4Addr, not even an explicit nil

type PcfForUeBinding

type PcfForUeBinding struct {
	// String identifying a Supi that shall contain either an IMSI, a network specific identifier, a Global Cable Identifier (GCI) or a Global Line Identifier (GLI) as specified in clause  2.2A of 3GPP TS 23.003. It shall be formatted as follows  - for an IMSI \"imsi-<imsi>\", where <imsi> shall be formatted according to clause 2.2    of 3GPP TS 23.003 that describes an IMSI.  - for a network specific identifier \"nai-<nai>, where <nai> shall be formatted    according to clause 28.7.2 of 3GPP TS 23.003 that describes an NAI.  - for a GCI \"gci-<gci>\", where <gci> shall be formatted according to clause 28.15.2    of 3GPP TS 23.003.  - for a GLI \"gli-<gli>\", where <gli> shall be formatted according to clause 28.16.2 of    3GPP TS 23.003.To enable that the value is used as part of an URI, the string shall    only contain characters allowed according to the \"lower-with-hyphen\" naming convention    defined in 3GPP TS 29.501.
	Supi string `json:"supi"`
	// String identifying a Gpsi shall contain either an External Id or an MSISDN.  It shall be formatted as follows -External Identifier= \"extid-'extid', where 'extid'  shall be formatted according to clause 19.7.2 of 3GPP TS 23.003 that describes an  External Identifier.
	Gpsi *string `json:"gpsi,omitempty"`
	// Fully Qualified Domain Name
	PcfForUeFqdn *string `json:"pcfForUeFqdn,omitempty"`
	// IP end points of the PCF hosting the Npcf_AmPolicyAuthorization service.
	PcfForUeIpEndPoints []IpEndPoint `json:"pcfForUeIpEndPoints,omitempty"`
	// String uniquely identifying a NF instance. The format of the NF Instance ID shall be a  Universally Unique Identifier (UUID) version 4, as described in IETF RFC 4122.
	PcfId *string `json:"pcfId,omitempty"`
	// NF Set Identifier (see clause 28.12 of 3GPP TS 23.003), formatted as the following string \"set<Set ID>.<nftype>set.5gc.mnc<MNC>.mcc<MCC>\", or  \"set<SetID>.<NFType>set.5gc.nid<NID>.mnc<MNC>.mcc<MCC>\" with  <MCC> encoded as defined in clause 5.4.2 (\"Mcc\" data type definition)  <MNC> encoding the Mobile Network Code part of the PLMN, comprising 3 digits.    If there are only 2 significant digits in the MNC, one \"0\" digit shall be inserted    at the left side to fill the 3 digits coding of MNC.  Pattern: '^[0-9]{3}$' <NFType> encoded as a value defined in Table 6.1.6.3.3-1 of 3GPP TS 29.510 but    with lower case characters <Set ID> encoded as a string of characters consisting of    alphabetic characters (A-Z and a-z), digits (0-9) and/or the hyphen (-) and that    shall end with either an alphabetic character or a digit.
	PcfSetId  *string       `json:"pcfSetId,omitempty"`
	BindLevel *BindingLevel `json:"bindLevel,omitempty"`
	// A string used to indicate the features supported by an API that is used as defined in clause  6.6 in 3GPP TS 29.500. The string shall contain a bitmask indicating supported features in  hexadecimal representation Each character in the string shall take a value of \"0\" to \"9\",  \"a\" to \"f\" or \"A\" to \"F\" and shall represent the support of 4 features as described in  table 5.2.2-3. The most significant character representing the highest-numbered features shall  appear first in the string, and the character representing features 1 to 4 shall appear last  in the string. The list of features and their numbering (starting with 1) are defined  separately for each API. If the string contains a lower number of characters than there are  defined features for an API, all features that would be represented by characters that are not  present in the string are not supported.
	SuppFeat *string `json:"suppFeat,omitempty"`
}

PcfForUeBinding Identifies an Individual PCF for a UE binding.

func NewPcfForUeBinding

func NewPcfForUeBinding(supi string) *PcfForUeBinding

NewPcfForUeBinding instantiates a new PcfForUeBinding 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 NewPcfForUeBindingWithDefaults

func NewPcfForUeBindingWithDefaults() *PcfForUeBinding

NewPcfForUeBindingWithDefaults instantiates a new PcfForUeBinding 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 (*PcfForUeBinding) GetBindLevel

func (o *PcfForUeBinding) GetBindLevel() BindingLevel

GetBindLevel returns the BindLevel field value if set, zero value otherwise.

func (*PcfForUeBinding) GetBindLevelOk

func (o *PcfForUeBinding) GetBindLevelOk() (*BindingLevel, bool)

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

func (*PcfForUeBinding) GetGpsi

func (o *PcfForUeBinding) GetGpsi() string

GetGpsi returns the Gpsi field value if set, zero value otherwise.

func (*PcfForUeBinding) GetGpsiOk

func (o *PcfForUeBinding) GetGpsiOk() (*string, bool)

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

func (*PcfForUeBinding) GetPcfForUeFqdn

func (o *PcfForUeBinding) GetPcfForUeFqdn() string

GetPcfForUeFqdn returns the PcfForUeFqdn field value if set, zero value otherwise.

func (*PcfForUeBinding) GetPcfForUeFqdnOk

func (o *PcfForUeBinding) GetPcfForUeFqdnOk() (*string, bool)

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

func (*PcfForUeBinding) GetPcfForUeIpEndPoints

func (o *PcfForUeBinding) GetPcfForUeIpEndPoints() []IpEndPoint

GetPcfForUeIpEndPoints returns the PcfForUeIpEndPoints field value if set, zero value otherwise.

func (*PcfForUeBinding) GetPcfForUeIpEndPointsOk

func (o *PcfForUeBinding) GetPcfForUeIpEndPointsOk() ([]IpEndPoint, bool)

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

func (*PcfForUeBinding) GetPcfId

func (o *PcfForUeBinding) GetPcfId() string

GetPcfId returns the PcfId field value if set, zero value otherwise.

func (*PcfForUeBinding) GetPcfIdOk

func (o *PcfForUeBinding) GetPcfIdOk() (*string, bool)

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

func (*PcfForUeBinding) GetPcfSetId

func (o *PcfForUeBinding) GetPcfSetId() string

GetPcfSetId returns the PcfSetId field value if set, zero value otherwise.

func (*PcfForUeBinding) GetPcfSetIdOk

func (o *PcfForUeBinding) GetPcfSetIdOk() (*string, bool)

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

func (*PcfForUeBinding) GetSupi

func (o *PcfForUeBinding) GetSupi() string

GetSupi returns the Supi field value

func (*PcfForUeBinding) GetSupiOk

func (o *PcfForUeBinding) GetSupiOk() (*string, bool)

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

func (*PcfForUeBinding) GetSuppFeat

func (o *PcfForUeBinding) GetSuppFeat() string

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

func (*PcfForUeBinding) GetSuppFeatOk

func (o *PcfForUeBinding) GetSuppFeatOk() (*string, bool)

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

func (*PcfForUeBinding) HasBindLevel

func (o *PcfForUeBinding) HasBindLevel() bool

HasBindLevel returns a boolean if a field has been set.

func (*PcfForUeBinding) HasGpsi

func (o *PcfForUeBinding) HasGpsi() bool

HasGpsi returns a boolean if a field has been set.

func (*PcfForUeBinding) HasPcfForUeFqdn

func (o *PcfForUeBinding) HasPcfForUeFqdn() bool

HasPcfForUeFqdn returns a boolean if a field has been set.

func (*PcfForUeBinding) HasPcfForUeIpEndPoints

func (o *PcfForUeBinding) HasPcfForUeIpEndPoints() bool

HasPcfForUeIpEndPoints returns a boolean if a field has been set.

func (*PcfForUeBinding) HasPcfId

func (o *PcfForUeBinding) HasPcfId() bool

HasPcfId returns a boolean if a field has been set.

func (*PcfForUeBinding) HasPcfSetId

func (o *PcfForUeBinding) HasPcfSetId() bool

HasPcfSetId returns a boolean if a field has been set.

func (*PcfForUeBinding) HasSuppFeat

func (o *PcfForUeBinding) HasSuppFeat() bool

HasSuppFeat returns a boolean if a field has been set.

func (PcfForUeBinding) MarshalJSON

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

func (*PcfForUeBinding) SetBindLevel

func (o *PcfForUeBinding) SetBindLevel(v BindingLevel)

SetBindLevel gets a reference to the given BindingLevel and assigns it to the BindLevel field.

func (*PcfForUeBinding) SetGpsi

func (o *PcfForUeBinding) SetGpsi(v string)

SetGpsi gets a reference to the given string and assigns it to the Gpsi field.

func (*PcfForUeBinding) SetPcfForUeFqdn

func (o *PcfForUeBinding) SetPcfForUeFqdn(v string)

SetPcfForUeFqdn gets a reference to the given string and assigns it to the PcfForUeFqdn field.

func (*PcfForUeBinding) SetPcfForUeIpEndPoints

func (o *PcfForUeBinding) SetPcfForUeIpEndPoints(v []IpEndPoint)

SetPcfForUeIpEndPoints gets a reference to the given []IpEndPoint and assigns it to the PcfForUeIpEndPoints field.

func (*PcfForUeBinding) SetPcfId

func (o *PcfForUeBinding) SetPcfId(v string)

SetPcfId gets a reference to the given string and assigns it to the PcfId field.

func (*PcfForUeBinding) SetPcfSetId

func (o *PcfForUeBinding) SetPcfSetId(v string)

SetPcfSetId gets a reference to the given string and assigns it to the PcfSetId field.

func (*PcfForUeBinding) SetSupi

func (o *PcfForUeBinding) SetSupi(v string)

SetSupi sets field value

func (*PcfForUeBinding) SetSuppFeat

func (o *PcfForUeBinding) SetSuppFeat(v string)

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

func (PcfForUeBinding) ToMap

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

func (*PcfForUeBinding) UnmarshalJSON

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

type PcfForUeBindingPatch

type PcfForUeBindingPatch struct {
	// Fully Qualified Domain Name
	PcfForUeFqdn *string `json:"pcfForUeFqdn,omitempty"`
	// IP end points of the PCF hosting the Npcf_AmPolicyAuthorization service.
	PcfForUeIpEndPoints []IpEndPoint `json:"pcfForUeIpEndPoints,omitempty"`
	// String uniquely identifying a NF instance. The format of the NF Instance ID shall be a  Universally Unique Identifier (UUID) version 4, as described in IETF RFC 4122.
	PcfId *string `json:"pcfId,omitempty"`
}

PcfForUeBindingPatch Identifies the updates of an Individual PCF for a UE binding.

func NewPcfForUeBindingPatch

func NewPcfForUeBindingPatch() *PcfForUeBindingPatch

NewPcfForUeBindingPatch instantiates a new PcfForUeBindingPatch 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 NewPcfForUeBindingPatchWithDefaults

func NewPcfForUeBindingPatchWithDefaults() *PcfForUeBindingPatch

NewPcfForUeBindingPatchWithDefaults instantiates a new PcfForUeBindingPatch 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 (*PcfForUeBindingPatch) GetPcfForUeFqdn

func (o *PcfForUeBindingPatch) GetPcfForUeFqdn() string

GetPcfForUeFqdn returns the PcfForUeFqdn field value if set, zero value otherwise.

func (*PcfForUeBindingPatch) GetPcfForUeFqdnOk

func (o *PcfForUeBindingPatch) GetPcfForUeFqdnOk() (*string, bool)

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

func (*PcfForUeBindingPatch) GetPcfForUeIpEndPoints

func (o *PcfForUeBindingPatch) GetPcfForUeIpEndPoints() []IpEndPoint

GetPcfForUeIpEndPoints returns the PcfForUeIpEndPoints field value if set, zero value otherwise.

func (*PcfForUeBindingPatch) GetPcfForUeIpEndPointsOk

func (o *PcfForUeBindingPatch) GetPcfForUeIpEndPointsOk() ([]IpEndPoint, bool)

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

func (*PcfForUeBindingPatch) GetPcfId

func (o *PcfForUeBindingPatch) GetPcfId() string

GetPcfId returns the PcfId field value if set, zero value otherwise.

func (*PcfForUeBindingPatch) GetPcfIdOk

func (o *PcfForUeBindingPatch) GetPcfIdOk() (*string, bool)

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

func (*PcfForUeBindingPatch) HasPcfForUeFqdn

func (o *PcfForUeBindingPatch) HasPcfForUeFqdn() bool

HasPcfForUeFqdn returns a boolean if a field has been set.

func (*PcfForUeBindingPatch) HasPcfForUeIpEndPoints

func (o *PcfForUeBindingPatch) HasPcfForUeIpEndPoints() bool

HasPcfForUeIpEndPoints returns a boolean if a field has been set.

func (*PcfForUeBindingPatch) HasPcfId

func (o *PcfForUeBindingPatch) HasPcfId() bool

HasPcfId returns a boolean if a field has been set.

func (PcfForUeBindingPatch) MarshalJSON

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

func (*PcfForUeBindingPatch) SetPcfForUeFqdn

func (o *PcfForUeBindingPatch) SetPcfForUeFqdn(v string)

SetPcfForUeFqdn gets a reference to the given string and assigns it to the PcfForUeFqdn field.

func (*PcfForUeBindingPatch) SetPcfForUeIpEndPoints

func (o *PcfForUeBindingPatch) SetPcfForUeIpEndPoints(v []IpEndPoint)

SetPcfForUeIpEndPoints gets a reference to the given []IpEndPoint and assigns it to the PcfForUeIpEndPoints field.

func (*PcfForUeBindingPatch) SetPcfId

func (o *PcfForUeBindingPatch) SetPcfId(v string)

SetPcfId gets a reference to the given string and assigns it to the PcfId field.

func (PcfForUeBindingPatch) ToMap

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

type PcfForUeInfo

type PcfForUeInfo struct {
	// Fully Qualified Domain Name
	PcfFqdn *string `json:"pcfFqdn,omitempty"`
	// IP end points of the PCF hosting the Npcf_AmPolicyAuthorization service.
	PcfIpEndPoints []IpEndPoint `json:"pcfIpEndPoints,omitempty"`
	// String uniquely identifying a NF instance. The format of the NF Instance ID shall be a  Universally Unique Identifier (UUID) version 4, as described in IETF RFC 4122.
	PcfId *string `json:"pcfId,omitempty"`
	// NF Set Identifier (see clause 28.12 of 3GPP TS 23.003), formatted as the following string \"set<Set ID>.<nftype>set.5gc.mnc<MNC>.mcc<MCC>\", or  \"set<SetID>.<NFType>set.5gc.nid<NID>.mnc<MNC>.mcc<MCC>\" with  <MCC> encoded as defined in clause 5.4.2 (\"Mcc\" data type definition)  <MNC> encoding the Mobile Network Code part of the PLMN, comprising 3 digits.    If there are only 2 significant digits in the MNC, one \"0\" digit shall be inserted    at the left side to fill the 3 digits coding of MNC.  Pattern: '^[0-9]{3}$' <NFType> encoded as a value defined in Table 6.1.6.3.3-1 of 3GPP TS 29.510 but    with lower case characters <Set ID> encoded as a string of characters consisting of    alphabetic characters (A-Z and a-z), digits (0-9) and/or the hyphen (-) and that    shall end with either an alphabetic character or a digit.
	PcfSetId  *string       `json:"pcfSetId,omitempty"`
	BindLevel *BindingLevel `json:"bindLevel,omitempty"`
}

PcfForUeInfo Contains the information of the PCF for a UE.

func NewPcfForUeInfo

func NewPcfForUeInfo() *PcfForUeInfo

NewPcfForUeInfo instantiates a new PcfForUeInfo 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 NewPcfForUeInfoWithDefaults

func NewPcfForUeInfoWithDefaults() *PcfForUeInfo

NewPcfForUeInfoWithDefaults instantiates a new PcfForUeInfo 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 (*PcfForUeInfo) GetBindLevel

func (o *PcfForUeInfo) GetBindLevel() BindingLevel

GetBindLevel returns the BindLevel field value if set, zero value otherwise.

func (*PcfForUeInfo) GetBindLevelOk

func (o *PcfForUeInfo) GetBindLevelOk() (*BindingLevel, bool)

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

func (*PcfForUeInfo) GetPcfFqdn

func (o *PcfForUeInfo) GetPcfFqdn() string

GetPcfFqdn returns the PcfFqdn field value if set, zero value otherwise.

func (*PcfForUeInfo) GetPcfFqdnOk

func (o *PcfForUeInfo) GetPcfFqdnOk() (*string, bool)

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

func (*PcfForUeInfo) GetPcfId

func (o *PcfForUeInfo) GetPcfId() string

GetPcfId returns the PcfId field value if set, zero value otherwise.

func (*PcfForUeInfo) GetPcfIdOk

func (o *PcfForUeInfo) GetPcfIdOk() (*string, bool)

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

func (*PcfForUeInfo) GetPcfIpEndPoints

func (o *PcfForUeInfo) GetPcfIpEndPoints() []IpEndPoint

GetPcfIpEndPoints returns the PcfIpEndPoints field value if set, zero value otherwise.

func (*PcfForUeInfo) GetPcfIpEndPointsOk

func (o *PcfForUeInfo) GetPcfIpEndPointsOk() ([]IpEndPoint, bool)

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

func (*PcfForUeInfo) GetPcfSetId

func (o *PcfForUeInfo) GetPcfSetId() string

GetPcfSetId returns the PcfSetId field value if set, zero value otherwise.

func (*PcfForUeInfo) GetPcfSetIdOk

func (o *PcfForUeInfo) GetPcfSetIdOk() (*string, bool)

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

func (*PcfForUeInfo) HasBindLevel

func (o *PcfForUeInfo) HasBindLevel() bool

HasBindLevel returns a boolean if a field has been set.

func (*PcfForUeInfo) HasPcfFqdn

func (o *PcfForUeInfo) HasPcfFqdn() bool

HasPcfFqdn returns a boolean if a field has been set.

func (*PcfForUeInfo) HasPcfId

func (o *PcfForUeInfo) HasPcfId() bool

HasPcfId returns a boolean if a field has been set.

func (*PcfForUeInfo) HasPcfIpEndPoints

func (o *PcfForUeInfo) HasPcfIpEndPoints() bool

HasPcfIpEndPoints returns a boolean if a field has been set.

func (*PcfForUeInfo) HasPcfSetId

func (o *PcfForUeInfo) HasPcfSetId() bool

HasPcfSetId returns a boolean if a field has been set.

func (PcfForUeInfo) MarshalJSON

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

func (*PcfForUeInfo) SetBindLevel

func (o *PcfForUeInfo) SetBindLevel(v BindingLevel)

SetBindLevel gets a reference to the given BindingLevel and assigns it to the BindLevel field.

func (*PcfForUeInfo) SetPcfFqdn

func (o *PcfForUeInfo) SetPcfFqdn(v string)

SetPcfFqdn gets a reference to the given string and assigns it to the PcfFqdn field.

func (*PcfForUeInfo) SetPcfId

func (o *PcfForUeInfo) SetPcfId(v string)

SetPcfId gets a reference to the given string and assigns it to the PcfId field.

func (*PcfForUeInfo) SetPcfIpEndPoints

func (o *PcfForUeInfo) SetPcfIpEndPoints(v []IpEndPoint)

SetPcfIpEndPoints gets a reference to the given []IpEndPoint and assigns it to the PcfIpEndPoints field.

func (*PcfForUeInfo) SetPcfSetId

func (o *PcfForUeInfo) SetPcfSetId(v string)

SetPcfSetId gets a reference to the given string and assigns it to the PcfSetId field.

func (PcfForUeInfo) ToMap

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

type PcfMbsBinding

type PcfMbsBinding struct {
	MbsSessionId NullableMbsSessionId `json:"mbsSessionId"`
	// Fully Qualified Domain Name
	PcfFqdn        *string      `json:"pcfFqdn,omitempty"`
	PcfIpEndPoints []IpEndPoint `json:"pcfIpEndPoints,omitempty"`
	// String uniquely identifying a NF instance. The format of the NF Instance ID shall be a  Universally Unique Identifier (UUID) version 4, as described in IETF RFC 4122.
	PcfId *string `json:"pcfId,omitempty"`
	// NF Set Identifier (see clause 28.12 of 3GPP TS 23.003), formatted as the following string \"set<Set ID>.<nftype>set.5gc.mnc<MNC>.mcc<MCC>\", or  \"set<SetID>.<NFType>set.5gc.nid<NID>.mnc<MNC>.mcc<MCC>\" with  <MCC> encoded as defined in clause 5.4.2 (\"Mcc\" data type definition)  <MNC> encoding the Mobile Network Code part of the PLMN, comprising 3 digits.    If there are only 2 significant digits in the MNC, one \"0\" digit shall be inserted    at the left side to fill the 3 digits coding of MNC.  Pattern: '^[0-9]{3}$' <NFType> encoded as a value defined in Table 6.1.6.3.3-1 of 3GPP TS 29.510 but    with lower case characters <Set ID> encoded as a string of characters consisting of    alphabetic characters (A-Z and a-z), digits (0-9) and/or the hyphen (-) and that    shall end with either an alphabetic character or a digit.
	PcfSetId  *string       `json:"pcfSetId,omitempty"`
	BindLevel *BindingLevel `json:"bindLevel,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	RecoveryTime *time.Time `json:"recoveryTime,omitempty"`
	// A string used to indicate the features supported by an API that is used as defined in clause  6.6 in 3GPP TS 29.500. The string shall contain a bitmask indicating supported features in  hexadecimal representation Each character in the string shall take a value of \"0\" to \"9\",  \"a\" to \"f\" or \"A\" to \"F\" and shall represent the support of 4 features as described in  table 5.2.2-3. The most significant character representing the highest-numbered features shall  appear first in the string, and the character representing features 1 to 4 shall appear last  in the string. The list of features and their numbering (starting with 1) are defined  separately for each API. If the string contains a lower number of characters than there are  defined features for an API, all features that would be represented by characters that are not  present in the string are not supported.
	SuppFeat *string `json:"suppFeat,omitempty"`
}

PcfMbsBinding Represents an Individual PCF for an MBS Session binding.

func NewPcfMbsBinding

func NewPcfMbsBinding(mbsSessionId NullableMbsSessionId) *PcfMbsBinding

NewPcfMbsBinding instantiates a new PcfMbsBinding 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 NewPcfMbsBindingWithDefaults

func NewPcfMbsBindingWithDefaults() *PcfMbsBinding

NewPcfMbsBindingWithDefaults instantiates a new PcfMbsBinding 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 (*PcfMbsBinding) GetBindLevel

func (o *PcfMbsBinding) GetBindLevel() BindingLevel

GetBindLevel returns the BindLevel field value if set, zero value otherwise.

func (*PcfMbsBinding) GetBindLevelOk

func (o *PcfMbsBinding) GetBindLevelOk() (*BindingLevel, bool)

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

func (*PcfMbsBinding) GetMbsSessionId

func (o *PcfMbsBinding) GetMbsSessionId() MbsSessionId

GetMbsSessionId returns the MbsSessionId field value If the value is explicit nil, the zero value for MbsSessionId will be returned

func (*PcfMbsBinding) GetMbsSessionIdOk

func (o *PcfMbsBinding) GetMbsSessionIdOk() (*MbsSessionId, bool)

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

func (*PcfMbsBinding) GetPcfFqdn

func (o *PcfMbsBinding) GetPcfFqdn() string

GetPcfFqdn returns the PcfFqdn field value if set, zero value otherwise.

func (*PcfMbsBinding) GetPcfFqdnOk

func (o *PcfMbsBinding) GetPcfFqdnOk() (*string, bool)

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

func (*PcfMbsBinding) GetPcfId

func (o *PcfMbsBinding) GetPcfId() string

GetPcfId returns the PcfId field value if set, zero value otherwise.

func (*PcfMbsBinding) GetPcfIdOk

func (o *PcfMbsBinding) GetPcfIdOk() (*string, bool)

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

func (*PcfMbsBinding) GetPcfIpEndPoints

func (o *PcfMbsBinding) GetPcfIpEndPoints() []IpEndPoint

GetPcfIpEndPoints returns the PcfIpEndPoints field value if set, zero value otherwise.

func (*PcfMbsBinding) GetPcfIpEndPointsOk

func (o *PcfMbsBinding) GetPcfIpEndPointsOk() ([]IpEndPoint, bool)

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

func (*PcfMbsBinding) GetPcfSetId

func (o *PcfMbsBinding) GetPcfSetId() string

GetPcfSetId returns the PcfSetId field value if set, zero value otherwise.

func (*PcfMbsBinding) GetPcfSetIdOk

func (o *PcfMbsBinding) GetPcfSetIdOk() (*string, bool)

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

func (*PcfMbsBinding) GetRecoveryTime

func (o *PcfMbsBinding) GetRecoveryTime() time.Time

GetRecoveryTime returns the RecoveryTime field value if set, zero value otherwise.

func (*PcfMbsBinding) GetRecoveryTimeOk

func (o *PcfMbsBinding) GetRecoveryTimeOk() (*time.Time, bool)

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

func (*PcfMbsBinding) GetSuppFeat

func (o *PcfMbsBinding) GetSuppFeat() string

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

func (*PcfMbsBinding) GetSuppFeatOk

func (o *PcfMbsBinding) GetSuppFeatOk() (*string, bool)

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

func (*PcfMbsBinding) HasBindLevel

func (o *PcfMbsBinding) HasBindLevel() bool

HasBindLevel returns a boolean if a field has been set.

func (*PcfMbsBinding) HasPcfFqdn

func (o *PcfMbsBinding) HasPcfFqdn() bool

HasPcfFqdn returns a boolean if a field has been set.

func (*PcfMbsBinding) HasPcfId

func (o *PcfMbsBinding) HasPcfId() bool

HasPcfId returns a boolean if a field has been set.

func (*PcfMbsBinding) HasPcfIpEndPoints

func (o *PcfMbsBinding) HasPcfIpEndPoints() bool

HasPcfIpEndPoints returns a boolean if a field has been set.

func (*PcfMbsBinding) HasPcfSetId

func (o *PcfMbsBinding) HasPcfSetId() bool

HasPcfSetId returns a boolean if a field has been set.

func (*PcfMbsBinding) HasRecoveryTime

func (o *PcfMbsBinding) HasRecoveryTime() bool

HasRecoveryTime returns a boolean if a field has been set.

func (*PcfMbsBinding) HasSuppFeat

func (o *PcfMbsBinding) HasSuppFeat() bool

HasSuppFeat returns a boolean if a field has been set.

func (PcfMbsBinding) MarshalJSON

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

func (*PcfMbsBinding) SetBindLevel

func (o *PcfMbsBinding) SetBindLevel(v BindingLevel)

SetBindLevel gets a reference to the given BindingLevel and assigns it to the BindLevel field.

func (*PcfMbsBinding) SetMbsSessionId

func (o *PcfMbsBinding) SetMbsSessionId(v MbsSessionId)

SetMbsSessionId sets field value

func (*PcfMbsBinding) SetPcfFqdn

func (o *PcfMbsBinding) SetPcfFqdn(v string)

SetPcfFqdn gets a reference to the given string and assigns it to the PcfFqdn field.

func (*PcfMbsBinding) SetPcfId

func (o *PcfMbsBinding) SetPcfId(v string)

SetPcfId gets a reference to the given string and assigns it to the PcfId field.

func (*PcfMbsBinding) SetPcfIpEndPoints

func (o *PcfMbsBinding) SetPcfIpEndPoints(v []IpEndPoint)

SetPcfIpEndPoints gets a reference to the given []IpEndPoint and assigns it to the PcfIpEndPoints field.

func (*PcfMbsBinding) SetPcfSetId

func (o *PcfMbsBinding) SetPcfSetId(v string)

SetPcfSetId gets a reference to the given string and assigns it to the PcfSetId field.

func (*PcfMbsBinding) SetRecoveryTime

func (o *PcfMbsBinding) SetRecoveryTime(v time.Time)

SetRecoveryTime gets a reference to the given time.Time and assigns it to the RecoveryTime field.

func (*PcfMbsBinding) SetSuppFeat

func (o *PcfMbsBinding) SetSuppFeat(v string)

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

func (PcfMbsBinding) ToMap

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

func (*PcfMbsBinding) UnmarshalJSON

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

type PcfMbsBindingPatch

type PcfMbsBindingPatch struct {
	// Fully Qualified Domain Name
	PcfFqdn        *string      `json:"pcfFqdn,omitempty"`
	PcfIpEndPoints []IpEndPoint `json:"pcfIpEndPoints,omitempty"`
	// String uniquely identifying a NF instance. The format of the NF Instance ID shall be a  Universally Unique Identifier (UUID) version 4, as described in IETF RFC 4122.
	PcfId *string `json:"pcfId,omitempty"`
}

PcfMbsBindingPatch Represents the requested modification to an Individual PCF for an MBS Session binding.

func NewPcfMbsBindingPatch

func NewPcfMbsBindingPatch() *PcfMbsBindingPatch

NewPcfMbsBindingPatch instantiates a new PcfMbsBindingPatch 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 NewPcfMbsBindingPatchWithDefaults

func NewPcfMbsBindingPatchWithDefaults() *PcfMbsBindingPatch

NewPcfMbsBindingPatchWithDefaults instantiates a new PcfMbsBindingPatch 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 (*PcfMbsBindingPatch) GetPcfFqdn

func (o *PcfMbsBindingPatch) GetPcfFqdn() string

GetPcfFqdn returns the PcfFqdn field value if set, zero value otherwise.

func (*PcfMbsBindingPatch) GetPcfFqdnOk

func (o *PcfMbsBindingPatch) GetPcfFqdnOk() (*string, bool)

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

func (*PcfMbsBindingPatch) GetPcfId

func (o *PcfMbsBindingPatch) GetPcfId() string

GetPcfId returns the PcfId field value if set, zero value otherwise.

func (*PcfMbsBindingPatch) GetPcfIdOk

func (o *PcfMbsBindingPatch) GetPcfIdOk() (*string, bool)

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

func (*PcfMbsBindingPatch) GetPcfIpEndPoints

func (o *PcfMbsBindingPatch) GetPcfIpEndPoints() []IpEndPoint

GetPcfIpEndPoints returns the PcfIpEndPoints field value if set, zero value otherwise.

func (*PcfMbsBindingPatch) GetPcfIpEndPointsOk

func (o *PcfMbsBindingPatch) GetPcfIpEndPointsOk() ([]IpEndPoint, bool)

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

func (*PcfMbsBindingPatch) HasPcfFqdn

func (o *PcfMbsBindingPatch) HasPcfFqdn() bool

HasPcfFqdn returns a boolean if a field has been set.

func (*PcfMbsBindingPatch) HasPcfId

func (o *PcfMbsBindingPatch) HasPcfId() bool

HasPcfId returns a boolean if a field has been set.

func (*PcfMbsBindingPatch) HasPcfIpEndPoints

func (o *PcfMbsBindingPatch) HasPcfIpEndPoints() bool

HasPcfIpEndPoints returns a boolean if a field has been set.

func (PcfMbsBindingPatch) MarshalJSON

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

func (*PcfMbsBindingPatch) SetPcfFqdn

func (o *PcfMbsBindingPatch) SetPcfFqdn(v string)

SetPcfFqdn gets a reference to the given string and assigns it to the PcfFqdn field.

func (*PcfMbsBindingPatch) SetPcfId

func (o *PcfMbsBindingPatch) SetPcfId(v string)

SetPcfId gets a reference to the given string and assigns it to the PcfId field.

func (*PcfMbsBindingPatch) SetPcfIpEndPoints

func (o *PcfMbsBindingPatch) SetPcfIpEndPoints(v []IpEndPoint)

SetPcfIpEndPoints gets a reference to the given []IpEndPoint and assigns it to the PcfIpEndPoints field.

func (PcfMbsBindingPatch) ToMap

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

type PlmnId

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

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

func NewPlmnId

func NewPlmnId(mcc string, mnc string) *PlmnId

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

func NewPlmnIdWithDefaults

func NewPlmnIdWithDefaults() *PlmnId

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

func (*PlmnId) GetMcc

func (o *PlmnId) GetMcc() string

GetMcc returns the Mcc field value

func (*PlmnId) GetMccOk

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

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

func (*PlmnId) GetMnc

func (o *PlmnId) GetMnc() string

GetMnc returns the Mnc field value

func (*PlmnId) GetMncOk

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

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

func (PlmnId) MarshalJSON

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

func (*PlmnId) SetMcc

func (o *PlmnId) SetMcc(v string)

SetMcc sets field value

func (*PlmnId) SetMnc

func (o *PlmnId) SetMnc(v string)

SetMnc sets field value

func (PlmnId) ToMap

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

func (*PlmnId) UnmarshalJSON

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

type PlmnIdNid

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

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

func NewPlmnIdNid

func NewPlmnIdNid(mcc string, mnc string) *PlmnIdNid

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

func NewPlmnIdNidWithDefaults

func NewPlmnIdNidWithDefaults() *PlmnIdNid

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

func (*PlmnIdNid) GetMcc

func (o *PlmnIdNid) GetMcc() string

GetMcc returns the Mcc field value

func (*PlmnIdNid) GetMccOk

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

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

func (*PlmnIdNid) GetMnc

func (o *PlmnIdNid) GetMnc() string

GetMnc returns the Mnc field value

func (*PlmnIdNid) GetMncOk

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

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

func (*PlmnIdNid) GetNid

func (o *PlmnIdNid) GetNid() string

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

func (*PlmnIdNid) GetNidOk

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

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

func (*PlmnIdNid) HasNid

func (o *PlmnIdNid) HasNid() bool

HasNid returns a boolean if a field has been set.

func (PlmnIdNid) MarshalJSON

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

func (*PlmnIdNid) SetMcc

func (o *PlmnIdNid) SetMcc(v string)

SetMcc sets field value

func (*PlmnIdNid) SetMnc

func (o *PlmnIdNid) SetMnc(v string)

SetMnc sets field value

func (*PlmnIdNid) SetNid

func (o *PlmnIdNid) SetNid(v string)

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

func (PlmnIdNid) ToMap

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

func (*PlmnIdNid) UnmarshalJSON

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

type ProblemDetails

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

ProblemDetails Provides additional information in an error response.

func NewProblemDetails

func NewProblemDetails() *ProblemDetails

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

func NewProblemDetailsWithDefaults

func NewProblemDetailsWithDefaults() *ProblemDetails

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

func (*ProblemDetails) GetAccessTokenError

func (o *ProblemDetails) GetAccessTokenError() AccessTokenErr

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

func (*ProblemDetails) GetAccessTokenErrorOk

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

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

func (*ProblemDetails) GetAccessTokenRequest

func (o *ProblemDetails) GetAccessTokenRequest() AccessTokenReq

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

func (*ProblemDetails) GetAccessTokenRequestOk

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

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

func (*ProblemDetails) GetCause

func (o *ProblemDetails) GetCause() string

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

func (*ProblemDetails) GetCauseOk

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

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

func (*ProblemDetails) GetDetail

func (o *ProblemDetails) GetDetail() string

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

func (*ProblemDetails) GetDetailOk

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

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

func (*ProblemDetails) GetInstance

func (o *ProblemDetails) GetInstance() string

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

func (*ProblemDetails) GetInstanceOk

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

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

func (*ProblemDetails) GetInvalidParams

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

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

func (*ProblemDetails) GetInvalidParamsOk

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

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

func (*ProblemDetails) GetNrfId

func (o *ProblemDetails) GetNrfId() string

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

func (*ProblemDetails) GetNrfIdOk

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

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

func (*ProblemDetails) GetStatus

func (o *ProblemDetails) GetStatus() int32

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

func (*ProblemDetails) GetStatusOk

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

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

func (*ProblemDetails) GetSupportedFeatures

func (o *ProblemDetails) GetSupportedFeatures() string

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

func (*ProblemDetails) GetSupportedFeaturesOk

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

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

func (*ProblemDetails) GetTitle

func (o *ProblemDetails) GetTitle() string

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

func (*ProblemDetails) GetTitleOk

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

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

func (*ProblemDetails) GetType

func (o *ProblemDetails) GetType() string

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

func (*ProblemDetails) GetTypeOk

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

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

func (*ProblemDetails) HasAccessTokenError

func (o *ProblemDetails) HasAccessTokenError() bool

HasAccessTokenError returns a boolean if a field has been set.

func (*ProblemDetails) HasAccessTokenRequest

func (o *ProblemDetails) HasAccessTokenRequest() bool

HasAccessTokenRequest returns a boolean if a field has been set.

func (*ProblemDetails) HasCause

func (o *ProblemDetails) HasCause() bool

HasCause returns a boolean if a field has been set.

func (*ProblemDetails) HasDetail

func (o *ProblemDetails) HasDetail() bool

HasDetail returns a boolean if a field has been set.

func (*ProblemDetails) HasInstance

func (o *ProblemDetails) HasInstance() bool

HasInstance returns a boolean if a field has been set.

func (*ProblemDetails) HasInvalidParams

func (o *ProblemDetails) HasInvalidParams() bool

HasInvalidParams returns a boolean if a field has been set.

func (*ProblemDetails) HasNrfId

func (o *ProblemDetails) HasNrfId() bool

HasNrfId returns a boolean if a field has been set.

func (*ProblemDetails) HasStatus

func (o *ProblemDetails) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*ProblemDetails) HasSupportedFeatures

func (o *ProblemDetails) HasSupportedFeatures() bool

HasSupportedFeatures returns a boolean if a field has been set.

func (*ProblemDetails) HasTitle

func (o *ProblemDetails) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*ProblemDetails) HasType

func (o *ProblemDetails) HasType() bool

HasType returns a boolean if a field has been set.

func (ProblemDetails) MarshalJSON

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

func (*ProblemDetails) SetAccessTokenError

func (o *ProblemDetails) SetAccessTokenError(v AccessTokenErr)

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

func (*ProblemDetails) SetAccessTokenRequest

func (o *ProblemDetails) SetAccessTokenRequest(v AccessTokenReq)

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

func (*ProblemDetails) SetCause

func (o *ProblemDetails) SetCause(v string)

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

func (*ProblemDetails) SetDetail

func (o *ProblemDetails) SetDetail(v string)

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

func (*ProblemDetails) SetInstance

func (o *ProblemDetails) SetInstance(v string)

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

func (*ProblemDetails) SetInvalidParams

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

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

func (*ProblemDetails) SetNrfId

func (o *ProblemDetails) SetNrfId(v string)

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

func (*ProblemDetails) SetStatus

func (o *ProblemDetails) SetStatus(v int32)

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

func (*ProblemDetails) SetSupportedFeatures

func (o *ProblemDetails) SetSupportedFeatures(v string)

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

func (*ProblemDetails) SetTitle

func (o *ProblemDetails) SetTitle(v string)

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

func (*ProblemDetails) SetType

func (o *ProblemDetails) SetType(v string)

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

func (ProblemDetails) ToMap

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

type RedirectResponse

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

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

func NewRedirectResponse

func NewRedirectResponse() *RedirectResponse

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

func NewRedirectResponseWithDefaults

func NewRedirectResponseWithDefaults() *RedirectResponse

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

func (*RedirectResponse) GetCause

func (o *RedirectResponse) GetCause() string

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

func (*RedirectResponse) GetCauseOk

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

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

func (*RedirectResponse) GetTargetScp

func (o *RedirectResponse) GetTargetScp() string

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

func (*RedirectResponse) GetTargetScpOk

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

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

func (*RedirectResponse) GetTargetSepp

func (o *RedirectResponse) GetTargetSepp() string

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

func (*RedirectResponse) GetTargetSeppOk

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

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

func (*RedirectResponse) HasCause

func (o *RedirectResponse) HasCause() bool

HasCause returns a boolean if a field has been set.

func (*RedirectResponse) HasTargetScp

func (o *RedirectResponse) HasTargetScp() bool

HasTargetScp returns a boolean if a field has been set.

func (*RedirectResponse) HasTargetSepp

func (o *RedirectResponse) HasTargetSepp() bool

HasTargetSepp returns a boolean if a field has been set.

func (RedirectResponse) MarshalJSON

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

func (*RedirectResponse) SetCause

func (o *RedirectResponse) SetCause(v string)

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

func (*RedirectResponse) SetTargetScp

func (o *RedirectResponse) SetTargetScp(v string)

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

func (*RedirectResponse) SetTargetSepp

func (o *RedirectResponse) SetTargetSepp(v string)

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

func (RedirectResponse) ToMap

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

type ServerConfiguration

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

ServerConfiguration stores the information about a server

type ServerConfigurations

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL

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

URL formats template on a index using given variables

type ServerVariable

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

ServerVariable stores the information about a server variable

type Snssai

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

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

func NewSnssai

func NewSnssai(sst int32) *Snssai

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

func NewSnssaiWithDefaults

func NewSnssaiWithDefaults() *Snssai

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

func (*Snssai) GetSd

func (o *Snssai) GetSd() string

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

func (*Snssai) GetSdOk

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

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

func (*Snssai) GetSst

func (o *Snssai) GetSst() int32

GetSst returns the Sst field value

func (*Snssai) GetSstOk

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

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

func (*Snssai) HasSd

func (o *Snssai) HasSd() bool

HasSd returns a boolean if a field has been set.

func (Snssai) MarshalJSON

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

func (*Snssai) SetSd

func (o *Snssai) SetSd(v string)

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

func (*Snssai) SetSst

func (o *Snssai) SetSst(v int32)

SetSst sets field value

func (Snssai) ToMap

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

func (*Snssai) UnmarshalJSON

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

type SnssaiDnnPair

type SnssaiDnnPair struct {
	// 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"`
	Snssai Snssai `json:"snssai"`
}

SnssaiDnnPair Contains a S-NSSAI and DNN combination.

func NewSnssaiDnnPair

func NewSnssaiDnnPair(dnn string, snssai Snssai) *SnssaiDnnPair

NewSnssaiDnnPair instantiates a new SnssaiDnnPair 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 NewSnssaiDnnPairWithDefaults

func NewSnssaiDnnPairWithDefaults() *SnssaiDnnPair

NewSnssaiDnnPairWithDefaults instantiates a new SnssaiDnnPair 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 (*SnssaiDnnPair) GetDnn

func (o *SnssaiDnnPair) GetDnn() string

GetDnn returns the Dnn field value

func (*SnssaiDnnPair) GetDnnOk

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

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

func (*SnssaiDnnPair) GetSnssai

func (o *SnssaiDnnPair) GetSnssai() Snssai

GetSnssai returns the Snssai field value

func (*SnssaiDnnPair) GetSnssaiOk

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

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

func (SnssaiDnnPair) MarshalJSON

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

func (*SnssaiDnnPair) SetDnn

func (o *SnssaiDnnPair) SetDnn(v string)

SetDnn sets field value

func (*SnssaiDnnPair) SetSnssai

func (o *SnssaiDnnPair) SetSnssai(v Snssai)

SetSnssai sets field value

func (SnssaiDnnPair) ToMap

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

func (*SnssaiDnnPair) UnmarshalJSON

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

type Ssm

type Ssm struct {
	SourceIpAddr NullableIpAddr `json:"sourceIpAddr"`
	DestIpAddr   NullableIpAddr `json:"destIpAddr"`
}

Ssm Source specific IP multicast address

func NewSsm

func NewSsm(sourceIpAddr NullableIpAddr, destIpAddr NullableIpAddr) *Ssm

NewSsm instantiates a new Ssm 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 NewSsmWithDefaults

func NewSsmWithDefaults() *Ssm

NewSsmWithDefaults instantiates a new Ssm 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 (*Ssm) GetDestIpAddr

func (o *Ssm) GetDestIpAddr() IpAddr

GetDestIpAddr returns the DestIpAddr field value If the value is explicit nil, the zero value for IpAddr will be returned

func (*Ssm) GetDestIpAddrOk

func (o *Ssm) GetDestIpAddrOk() (*IpAddr, bool)

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

func (*Ssm) GetSourceIpAddr

func (o *Ssm) GetSourceIpAddr() IpAddr

GetSourceIpAddr returns the SourceIpAddr field value If the value is explicit nil, the zero value for IpAddr will be returned

func (*Ssm) GetSourceIpAddrOk

func (o *Ssm) GetSourceIpAddrOk() (*IpAddr, bool)

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

func (Ssm) MarshalJSON

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

func (*Ssm) SetDestIpAddr

func (o *Ssm) SetDestIpAddr(v IpAddr)

SetDestIpAddr sets field value

func (*Ssm) SetSourceIpAddr

func (o *Ssm) SetSourceIpAddr(v IpAddr)

SetSourceIpAddr sets field value

func (Ssm) ToMap

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

func (*Ssm) UnmarshalJSON

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

type SubscriptionsCollectionAPIService

type SubscriptionsCollectionAPIService service

SubscriptionsCollectionAPIService SubscriptionsCollectionAPI service

func (*SubscriptionsCollectionAPIService) CreateIndividualSubcription

CreateIndividualSubcription Create an individual subscription for event notifications from the BSF

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

func (*SubscriptionsCollectionAPIService) CreateIndividualSubcriptionExecute

Execute executes the request

@return BsfSubscriptionResp

type Tmgi

type Tmgi struct {
	// MBS Service ID
	MbsServiceId string `json:"mbsServiceId"`
	PlmnId       PlmnId `json:"plmnId"`
}

Tmgi Temporary Mobile Group Identity

func NewTmgi

func NewTmgi(mbsServiceId string, plmnId PlmnId) *Tmgi

NewTmgi instantiates a new Tmgi 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 NewTmgiWithDefaults

func NewTmgiWithDefaults() *Tmgi

NewTmgiWithDefaults instantiates a new Tmgi 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 (*Tmgi) GetMbsServiceId

func (o *Tmgi) GetMbsServiceId() string

GetMbsServiceId returns the MbsServiceId field value

func (*Tmgi) GetMbsServiceIdOk

func (o *Tmgi) GetMbsServiceIdOk() (*string, bool)

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

func (*Tmgi) GetPlmnId

func (o *Tmgi) GetPlmnId() PlmnId

GetPlmnId returns the PlmnId field value

func (*Tmgi) GetPlmnIdOk

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

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

func (Tmgi) MarshalJSON

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

func (*Tmgi) SetMbsServiceId

func (o *Tmgi) SetMbsServiceId(v string)

SetMbsServiceId sets field value

func (*Tmgi) SetPlmnId

func (o *Tmgi) SetPlmnId(v PlmnId)

SetPlmnId sets field value

func (Tmgi) ToMap

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

func (*Tmgi) UnmarshalJSON

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

type TransportProtocol

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

TransportProtocol Types of transport protocol used in a given IP endpoint of an NF Service Instance

func (*TransportProtocol) MarshalJSON

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

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

func (*TransportProtocol) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

Jump to

Keyboard shortcuts

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