openapi_N5g_ddnmf_Discovery

package
v1.18.2 Latest Latest
Warning

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

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

README

Go API client for openapi_N5g_ddnmf_Discovery

N5g-ddnmf_Discovery Service.
© 2022, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC).
All rights reserved.

Overview

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

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

Installation

Install the following dependencies:

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

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

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

To use a proxy, set the environment variable HTTP_PROXY:

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

Configuration of Server URL

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

Select Server Configuration

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

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

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

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

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

URLs Configuration per Operation

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

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

Documentation for API Endpoints

All URIs are relative to https://example.com/n5g-ddnmf-disc/v1

Class Method HTTP request Description
ObtainTheAuthorizationForADiscovererUEApi ObtainDiscAuth Put /{ueId}/discovery-authorize/{discEntryId} Obtain the authorization from the 5G DDNMF for a discoverer UE in the PLMN to operate Model B restricted discovery
ObtainTheAuthorizationToAnnounceForAUEApi ObtainAnnounceAuth Put /{ueId}/announce-authorize/{discEntryId} Obtain the authorization to announce for a UE
ObtainTheAuthorizationToMonitorForAUEApi ObtainMonitorAuth Put /{ueId}/monitor-authorize/{discEntryId} Obtain the authorization to monitor for a UE
ObtainTheInformationAboutTheIndicatedDiscoveryCodeApi MatchReport Post /{ueId}/match-report Obtain the information about the indicated discovery code from the 5G DDNMF
UpdateTheAuthorizationForAnnouncingForAUEApi UpdateAnnounceAuth Patch /{ueId}/announce-authorize/{discEntryId} Update the authorization for announcing for a UE
UpdateTheAuthorizationForMonitoringForAUEApi UpdateMonitorAuth Patch /{ueId}/monitor-authorize/{discEntryId} Update the authorization for monitoring for a UE

Documentation For Models

Documentation For Authorization

oAuth2ClientCredentials
  • Type: OAuth
  • Flow: application
  • Authorization URL:
  • Scopes:
  • n5g-ddnmf-disc: Access to the N5g-ddnmf_Discovery API

Example

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

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

import "golang.org/x/oauth2"

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

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

Documentation for Utility Methods

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

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

Author

Documentation

Index

Constants

This section is empty.

Variables

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

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

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

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

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

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 {
	ObtainTheAuthorizationForADiscovererUEApi *ObtainTheAuthorizationForADiscovererUEApiService

	ObtainTheAuthorizationToAnnounceForAUEApi *ObtainTheAuthorizationToAnnounceForAUEApiService

	ObtainTheAuthorizationToMonitorForAUEApi *ObtainTheAuthorizationToMonitorForAUEApiService

	ObtainTheInformationAboutTheIndicatedDiscoveryCodeApi *ObtainTheInformationAboutTheIndicatedDiscoveryCodeApiService

	UpdateTheAuthorizationForAnnouncingForAUEApi *UpdateTheAuthorizationForAnnouncingForAUEApiService

	UpdateTheAuthorizationForMonitoringForAUEApi *UpdateTheAuthorizationForMonitoringForAUEApiService
	// contains filtered or unexported fields
}

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

func NewAPIClient

func NewAPIClient(cfg *Configuration) *APIClient

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

func (*APIClient) GetConfig

func (c *APIClient) GetConfig() *Configuration

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

type APIKey

type APIKey struct {
	Key    string
	Prefix string
}

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

type APIResponse

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

APIResponse stores the API response returned by the server.

func NewAPIResponse

func NewAPIResponse(r *http.Response) *APIResponse

NewAPIResponse returns a new APIResponse object.

func NewAPIResponseWithError

func NewAPIResponseWithError(errorMessage string) *APIResponse

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

type AccessTokenErr

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

AccessTokenErr Error returned in the access token response message

func NewAccessTokenErr

func NewAccessTokenErr(error_ string) *AccessTokenErr

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

func NewAccessTokenErrWithDefaults

func NewAccessTokenErrWithDefaults() *AccessTokenErr

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

func (*AccessTokenErr) GetError

func (o *AccessTokenErr) GetError() string

GetError returns the Error field value

func (*AccessTokenErr) GetErrorDescription

func (o *AccessTokenErr) GetErrorDescription() string

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

func (*AccessTokenErr) GetErrorDescriptionOk

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

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

func (*AccessTokenErr) GetErrorOk

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

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

func (*AccessTokenErr) GetErrorUri

func (o *AccessTokenErr) GetErrorUri() string

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

func (*AccessTokenErr) GetErrorUriOk

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

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

func (*AccessTokenErr) HasErrorDescription

func (o *AccessTokenErr) HasErrorDescription() bool

HasErrorDescription returns a boolean if a field has been set.

func (*AccessTokenErr) HasErrorUri

func (o *AccessTokenErr) HasErrorUri() bool

HasErrorUri returns a boolean if a field has been set.

func (AccessTokenErr) MarshalJSON

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

func (*AccessTokenErr) SetError

func (o *AccessTokenErr) SetError(v string)

SetError sets field value

func (*AccessTokenErr) SetErrorDescription

func (o *AccessTokenErr) SetErrorDescription(v string)

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

func (*AccessTokenErr) SetErrorUri

func (o *AccessTokenErr) SetErrorUri(v string)

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

func (AccessTokenErr) ToMap

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

type AccessTokenReq

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

AccessTokenReq Contains information related to the access token request

func NewAccessTokenReq

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

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

func NewAccessTokenReqWithDefaults

func NewAccessTokenReqWithDefaults() *AccessTokenReq

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

func (*AccessTokenReq) GetGrantType

func (o *AccessTokenReq) GetGrantType() string

GetGrantType returns the GrantType field value

func (*AccessTokenReq) GetGrantTypeOk

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

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

func (*AccessTokenReq) GetHnrfAccessTokenUri

func (o *AccessTokenReq) GetHnrfAccessTokenUri() string

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

func (*AccessTokenReq) GetHnrfAccessTokenUriOk

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

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

func (*AccessTokenReq) GetNfInstanceId

func (o *AccessTokenReq) GetNfInstanceId() string

GetNfInstanceId returns the NfInstanceId field value

func (*AccessTokenReq) GetNfInstanceIdOk

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

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

func (*AccessTokenReq) GetNfType

func (o *AccessTokenReq) GetNfType() NFType

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

func (*AccessTokenReq) GetNfTypeOk

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

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

func (*AccessTokenReq) GetRequesterFqdn

func (o *AccessTokenReq) GetRequesterFqdn() string

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

func (*AccessTokenReq) GetRequesterFqdnOk

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

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

func (*AccessTokenReq) GetRequesterPlmn

func (o *AccessTokenReq) GetRequesterPlmn() PlmnId

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

func (*AccessTokenReq) GetRequesterPlmnList

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

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

func (*AccessTokenReq) GetRequesterPlmnListOk

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

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

func (*AccessTokenReq) GetRequesterPlmnOk

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

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

func (*AccessTokenReq) GetRequesterSnpnList

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

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

func (*AccessTokenReq) GetRequesterSnpnListOk

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

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

func (*AccessTokenReq) GetRequesterSnssaiList

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

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

func (*AccessTokenReq) GetRequesterSnssaiListOk

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

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

func (*AccessTokenReq) GetScope

func (o *AccessTokenReq) GetScope() string

GetScope returns the Scope field value

func (*AccessTokenReq) GetScopeOk

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

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

func (*AccessTokenReq) GetSourceNfInstanceId

func (o *AccessTokenReq) GetSourceNfInstanceId() string

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

func (*AccessTokenReq) GetSourceNfInstanceIdOk

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

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

func (*AccessTokenReq) GetTargetNfInstanceId

func (o *AccessTokenReq) GetTargetNfInstanceId() string

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

func (*AccessTokenReq) GetTargetNfInstanceIdOk

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

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

func (*AccessTokenReq) GetTargetNfServiceSetId

func (o *AccessTokenReq) GetTargetNfServiceSetId() string

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

func (*AccessTokenReq) GetTargetNfServiceSetIdOk

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

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

func (*AccessTokenReq) GetTargetNfSetId

func (o *AccessTokenReq) GetTargetNfSetId() string

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

func (*AccessTokenReq) GetTargetNfSetIdOk

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

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

func (*AccessTokenReq) GetTargetNfType

func (o *AccessTokenReq) GetTargetNfType() NFType

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

func (*AccessTokenReq) GetTargetNfTypeOk

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

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

func (*AccessTokenReq) GetTargetNsiList

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

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

func (*AccessTokenReq) GetTargetNsiListOk

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

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

func (*AccessTokenReq) GetTargetPlmn

func (o *AccessTokenReq) GetTargetPlmn() PlmnId

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

func (*AccessTokenReq) GetTargetPlmnOk

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

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

func (*AccessTokenReq) GetTargetSnpn

func (o *AccessTokenReq) GetTargetSnpn() PlmnIdNid

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

func (*AccessTokenReq) GetTargetSnpnOk

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

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

func (*AccessTokenReq) GetTargetSnssaiList

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

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

func (*AccessTokenReq) GetTargetSnssaiListOk

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

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

func (*AccessTokenReq) HasHnrfAccessTokenUri

func (o *AccessTokenReq) HasHnrfAccessTokenUri() bool

HasHnrfAccessTokenUri returns a boolean if a field has been set.

func (*AccessTokenReq) HasNfType

func (o *AccessTokenReq) HasNfType() bool

HasNfType returns a boolean if a field has been set.

func (*AccessTokenReq) HasRequesterFqdn

func (o *AccessTokenReq) HasRequesterFqdn() bool

HasRequesterFqdn returns a boolean if a field has been set.

func (*AccessTokenReq) HasRequesterPlmn

func (o *AccessTokenReq) HasRequesterPlmn() bool

HasRequesterPlmn returns a boolean if a field has been set.

func (*AccessTokenReq) HasRequesterPlmnList

func (o *AccessTokenReq) HasRequesterPlmnList() bool

HasRequesterPlmnList returns a boolean if a field has been set.

func (*AccessTokenReq) HasRequesterSnpnList

func (o *AccessTokenReq) HasRequesterSnpnList() bool

HasRequesterSnpnList returns a boolean if a field has been set.

func (*AccessTokenReq) HasRequesterSnssaiList

func (o *AccessTokenReq) HasRequesterSnssaiList() bool

HasRequesterSnssaiList returns a boolean if a field has been set.

func (*AccessTokenReq) HasSourceNfInstanceId

func (o *AccessTokenReq) HasSourceNfInstanceId() bool

HasSourceNfInstanceId returns a boolean if a field has been set.

func (*AccessTokenReq) HasTargetNfInstanceId

func (o *AccessTokenReq) HasTargetNfInstanceId() bool

HasTargetNfInstanceId returns a boolean if a field has been set.

func (*AccessTokenReq) HasTargetNfServiceSetId

func (o *AccessTokenReq) HasTargetNfServiceSetId() bool

HasTargetNfServiceSetId returns a boolean if a field has been set.

func (*AccessTokenReq) HasTargetNfSetId

func (o *AccessTokenReq) HasTargetNfSetId() bool

HasTargetNfSetId returns a boolean if a field has been set.

func (*AccessTokenReq) HasTargetNfType

func (o *AccessTokenReq) HasTargetNfType() bool

HasTargetNfType returns a boolean if a field has been set.

func (*AccessTokenReq) HasTargetNsiList

func (o *AccessTokenReq) HasTargetNsiList() bool

HasTargetNsiList returns a boolean if a field has been set.

func (*AccessTokenReq) HasTargetPlmn

func (o *AccessTokenReq) HasTargetPlmn() bool

HasTargetPlmn returns a boolean if a field has been set.

func (*AccessTokenReq) HasTargetSnpn

func (o *AccessTokenReq) HasTargetSnpn() bool

HasTargetSnpn returns a boolean if a field has been set.

func (*AccessTokenReq) HasTargetSnssaiList

func (o *AccessTokenReq) HasTargetSnssaiList() bool

HasTargetSnssaiList returns a boolean if a field has been set.

func (AccessTokenReq) MarshalJSON

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

func (*AccessTokenReq) SetGrantType

func (o *AccessTokenReq) SetGrantType(v string)

SetGrantType sets field value

func (*AccessTokenReq) SetHnrfAccessTokenUri

func (o *AccessTokenReq) SetHnrfAccessTokenUri(v string)

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

func (*AccessTokenReq) SetNfInstanceId

func (o *AccessTokenReq) SetNfInstanceId(v string)

SetNfInstanceId sets field value

func (*AccessTokenReq) SetNfType

func (o *AccessTokenReq) SetNfType(v NFType)

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

func (*AccessTokenReq) SetRequesterFqdn

func (o *AccessTokenReq) SetRequesterFqdn(v string)

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

func (*AccessTokenReq) SetRequesterPlmn

func (o *AccessTokenReq) SetRequesterPlmn(v PlmnId)

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

func (*AccessTokenReq) SetRequesterPlmnList

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

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

func (*AccessTokenReq) SetRequesterSnpnList

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

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

func (*AccessTokenReq) SetRequesterSnssaiList

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

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

func (*AccessTokenReq) SetScope

func (o *AccessTokenReq) SetScope(v string)

SetScope sets field value

func (*AccessTokenReq) SetSourceNfInstanceId

func (o *AccessTokenReq) SetSourceNfInstanceId(v string)

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

func (*AccessTokenReq) SetTargetNfInstanceId

func (o *AccessTokenReq) SetTargetNfInstanceId(v string)

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

func (*AccessTokenReq) SetTargetNfServiceSetId

func (o *AccessTokenReq) SetTargetNfServiceSetId(v string)

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

func (*AccessTokenReq) SetTargetNfSetId

func (o *AccessTokenReq) SetTargetNfSetId(v string)

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

func (*AccessTokenReq) SetTargetNfType

func (o *AccessTokenReq) SetTargetNfType(v NFType)

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

func (*AccessTokenReq) SetTargetNsiList

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

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

func (*AccessTokenReq) SetTargetPlmn

func (o *AccessTokenReq) SetTargetPlmn(v PlmnId)

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

func (*AccessTokenReq) SetTargetSnpn

func (o *AccessTokenReq) SetTargetSnpn(v PlmnIdNid)

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

func (*AccessTokenReq) SetTargetSnssaiList

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

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

func (AccessTokenReq) ToMap

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

type AnnounceAuthReqData

type AnnounceAuthReqData struct {
	DiscType           DiscoveryType                  `json:"discType"`
	OpenDiscData       *AnnounceDiscDataForOpen       `json:"openDiscData,omitempty"`
	RestrictedDiscData *AnnounceDiscDataForRestricted `json:"restrictedDiscData,omitempty"`
}

AnnounceAuthReqData Represents Data used to request the authorization to announce for a UE

func NewAnnounceAuthReqData

func NewAnnounceAuthReqData(discType DiscoveryType) *AnnounceAuthReqData

NewAnnounceAuthReqData instantiates a new AnnounceAuthReqData 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 NewAnnounceAuthReqDataWithDefaults

func NewAnnounceAuthReqDataWithDefaults() *AnnounceAuthReqData

NewAnnounceAuthReqDataWithDefaults instantiates a new AnnounceAuthReqData 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 (*AnnounceAuthReqData) GetDiscType

func (o *AnnounceAuthReqData) GetDiscType() DiscoveryType

GetDiscType returns the DiscType field value

func (*AnnounceAuthReqData) GetDiscTypeOk

func (o *AnnounceAuthReqData) GetDiscTypeOk() (*DiscoveryType, bool)

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

func (*AnnounceAuthReqData) GetOpenDiscData

func (o *AnnounceAuthReqData) GetOpenDiscData() AnnounceDiscDataForOpen

GetOpenDiscData returns the OpenDiscData field value if set, zero value otherwise.

func (*AnnounceAuthReqData) GetOpenDiscDataOk

func (o *AnnounceAuthReqData) GetOpenDiscDataOk() (*AnnounceDiscDataForOpen, bool)

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

func (*AnnounceAuthReqData) GetRestrictedDiscData

func (o *AnnounceAuthReqData) GetRestrictedDiscData() AnnounceDiscDataForRestricted

GetRestrictedDiscData returns the RestrictedDiscData field value if set, zero value otherwise.

func (*AnnounceAuthReqData) GetRestrictedDiscDataOk

func (o *AnnounceAuthReqData) GetRestrictedDiscDataOk() (*AnnounceDiscDataForRestricted, bool)

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

func (*AnnounceAuthReqData) HasOpenDiscData

func (o *AnnounceAuthReqData) HasOpenDiscData() bool

HasOpenDiscData returns a boolean if a field has been set.

func (*AnnounceAuthReqData) HasRestrictedDiscData

func (o *AnnounceAuthReqData) HasRestrictedDiscData() bool

HasRestrictedDiscData returns a boolean if a field has been set.

func (AnnounceAuthReqData) MarshalJSON

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

func (*AnnounceAuthReqData) SetDiscType

func (o *AnnounceAuthReqData) SetDiscType(v DiscoveryType)

SetDiscType sets field value

func (*AnnounceAuthReqData) SetOpenDiscData

func (o *AnnounceAuthReqData) SetOpenDiscData(v AnnounceDiscDataForOpen)

SetOpenDiscData gets a reference to the given AnnounceDiscDataForOpen and assigns it to the OpenDiscData field.

func (*AnnounceAuthReqData) SetRestrictedDiscData

func (o *AnnounceAuthReqData) SetRestrictedDiscData(v AnnounceDiscDataForRestricted)

SetRestrictedDiscData gets a reference to the given AnnounceDiscDataForRestricted and assigns it to the RestrictedDiscData field.

func (AnnounceAuthReqData) ToMap

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

type AnnounceDiscDataForOpen

type AnnounceDiscDataForOpen struct {
	// Contains the ProSe Application ID.
	ProseAppId string `json:"proseAppId"`
	// string with format 'date-time' as defined in OpenAPI.
	ValidityTime time.Time `json:"validityTime"`
	// Contains the ProSe Application Code.
	ProseAppCode *string `json:"proseAppCode,omitempty"`
	// Contains the Prose Application Code Prefix.
	ProseAppCodePrefix     *string                         `json:"proseAppCodePrefix,omitempty"`
	ProseAppCodeSuffixPool *ProseApplicationCodeSuffixPool `json:"proseAppCodeSuffixPool,omitempty"`
	// Contains the metadata.
	MetaData *string `json:"metaData,omitempty"`
}

AnnounceDiscDataForOpen Represents Data for open discovery used to request the authorization to announce for a UE

func NewAnnounceDiscDataForOpen

func NewAnnounceDiscDataForOpen(proseAppId string, validityTime time.Time) *AnnounceDiscDataForOpen

NewAnnounceDiscDataForOpen instantiates a new AnnounceDiscDataForOpen 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 NewAnnounceDiscDataForOpenWithDefaults

func NewAnnounceDiscDataForOpenWithDefaults() *AnnounceDiscDataForOpen

NewAnnounceDiscDataForOpenWithDefaults instantiates a new AnnounceDiscDataForOpen 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 (*AnnounceDiscDataForOpen) GetMetaData

func (o *AnnounceDiscDataForOpen) GetMetaData() string

GetMetaData returns the MetaData field value if set, zero value otherwise.

func (*AnnounceDiscDataForOpen) GetMetaDataOk

func (o *AnnounceDiscDataForOpen) GetMetaDataOk() (*string, bool)

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

func (*AnnounceDiscDataForOpen) GetProseAppCode

func (o *AnnounceDiscDataForOpen) GetProseAppCode() string

GetProseAppCode returns the ProseAppCode field value if set, zero value otherwise.

func (*AnnounceDiscDataForOpen) GetProseAppCodeOk

func (o *AnnounceDiscDataForOpen) GetProseAppCodeOk() (*string, bool)

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

func (*AnnounceDiscDataForOpen) GetProseAppCodePrefix

func (o *AnnounceDiscDataForOpen) GetProseAppCodePrefix() string

GetProseAppCodePrefix returns the ProseAppCodePrefix field value if set, zero value otherwise.

func (*AnnounceDiscDataForOpen) GetProseAppCodePrefixOk

func (o *AnnounceDiscDataForOpen) GetProseAppCodePrefixOk() (*string, bool)

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

func (*AnnounceDiscDataForOpen) GetProseAppCodeSuffixPool

func (o *AnnounceDiscDataForOpen) GetProseAppCodeSuffixPool() ProseApplicationCodeSuffixPool

GetProseAppCodeSuffixPool returns the ProseAppCodeSuffixPool field value if set, zero value otherwise.

func (*AnnounceDiscDataForOpen) GetProseAppCodeSuffixPoolOk

func (o *AnnounceDiscDataForOpen) GetProseAppCodeSuffixPoolOk() (*ProseApplicationCodeSuffixPool, bool)

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

func (*AnnounceDiscDataForOpen) GetProseAppId

func (o *AnnounceDiscDataForOpen) GetProseAppId() string

GetProseAppId returns the ProseAppId field value

func (*AnnounceDiscDataForOpen) GetProseAppIdOk

func (o *AnnounceDiscDataForOpen) GetProseAppIdOk() (*string, bool)

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

func (*AnnounceDiscDataForOpen) GetValidityTime

func (o *AnnounceDiscDataForOpen) GetValidityTime() time.Time

GetValidityTime returns the ValidityTime field value

func (*AnnounceDiscDataForOpen) GetValidityTimeOk

func (o *AnnounceDiscDataForOpen) GetValidityTimeOk() (*time.Time, bool)

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

func (*AnnounceDiscDataForOpen) HasMetaData

func (o *AnnounceDiscDataForOpen) HasMetaData() bool

HasMetaData returns a boolean if a field has been set.

func (*AnnounceDiscDataForOpen) HasProseAppCode

func (o *AnnounceDiscDataForOpen) HasProseAppCode() bool

HasProseAppCode returns a boolean if a field has been set.

func (*AnnounceDiscDataForOpen) HasProseAppCodePrefix

func (o *AnnounceDiscDataForOpen) HasProseAppCodePrefix() bool

HasProseAppCodePrefix returns a boolean if a field has been set.

func (*AnnounceDiscDataForOpen) HasProseAppCodeSuffixPool

func (o *AnnounceDiscDataForOpen) HasProseAppCodeSuffixPool() bool

HasProseAppCodeSuffixPool returns a boolean if a field has been set.

func (AnnounceDiscDataForOpen) MarshalJSON

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

func (*AnnounceDiscDataForOpen) SetMetaData

func (o *AnnounceDiscDataForOpen) SetMetaData(v string)

SetMetaData gets a reference to the given string and assigns it to the MetaData field.

func (*AnnounceDiscDataForOpen) SetProseAppCode

func (o *AnnounceDiscDataForOpen) SetProseAppCode(v string)

SetProseAppCode gets a reference to the given string and assigns it to the ProseAppCode field.

func (*AnnounceDiscDataForOpen) SetProseAppCodePrefix

func (o *AnnounceDiscDataForOpen) SetProseAppCodePrefix(v string)

SetProseAppCodePrefix gets a reference to the given string and assigns it to the ProseAppCodePrefix field.

func (*AnnounceDiscDataForOpen) SetProseAppCodeSuffixPool

func (o *AnnounceDiscDataForOpen) SetProseAppCodeSuffixPool(v ProseApplicationCodeSuffixPool)

SetProseAppCodeSuffixPool gets a reference to the given ProseApplicationCodeSuffixPool and assigns it to the ProseAppCodeSuffixPool field.

func (*AnnounceDiscDataForOpen) SetProseAppId

func (o *AnnounceDiscDataForOpen) SetProseAppId(v string)

SetProseAppId sets field value

func (*AnnounceDiscDataForOpen) SetValidityTime

func (o *AnnounceDiscDataForOpen) SetValidityTime(v time.Time)

SetValidityTime sets field value

func (AnnounceDiscDataForOpen) ToMap

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

type AnnounceDiscDataForRestricted

type AnnounceDiscDataForRestricted struct {
	// Contains the RPAUID.
	Rpauid string `json:"rpauid"`
	// Contains the Application ID.
	AppId string `json:"appId"`
	// string with format 'date-time' as defined in OpenAPI.
	ValidityTime time.Time `json:"validityTime"`
	// Contains the ProSe Restricted Code.
	ProseRestrictedCode *string `json:"proseRestrictedCode,omitempty"`
	// Contains the ProSe Restricted Code Prefix.
	ProseRestrictedPrefix *string                   `json:"proseRestrictedPrefix,omitempty"`
	CodeSuffixPool        *RestrictedCodeSuffixPool `json:"codeSuffixPool,omitempty"`
}

AnnounceDiscDataForRestricted Represents Data for restricted discovery used to request the authorization to announce for a UE

func NewAnnounceDiscDataForRestricted

func NewAnnounceDiscDataForRestricted(rpauid string, appId string, validityTime time.Time) *AnnounceDiscDataForRestricted

NewAnnounceDiscDataForRestricted instantiates a new AnnounceDiscDataForRestricted 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 NewAnnounceDiscDataForRestrictedWithDefaults

func NewAnnounceDiscDataForRestrictedWithDefaults() *AnnounceDiscDataForRestricted

NewAnnounceDiscDataForRestrictedWithDefaults instantiates a new AnnounceDiscDataForRestricted 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 (*AnnounceDiscDataForRestricted) GetAppId

func (o *AnnounceDiscDataForRestricted) GetAppId() string

GetAppId returns the AppId field value

func (*AnnounceDiscDataForRestricted) GetAppIdOk

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

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

func (*AnnounceDiscDataForRestricted) GetCodeSuffixPool

GetCodeSuffixPool returns the CodeSuffixPool field value if set, zero value otherwise.

func (*AnnounceDiscDataForRestricted) GetCodeSuffixPoolOk

func (o *AnnounceDiscDataForRestricted) GetCodeSuffixPoolOk() (*RestrictedCodeSuffixPool, bool)

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

func (*AnnounceDiscDataForRestricted) GetProseRestrictedCode

func (o *AnnounceDiscDataForRestricted) GetProseRestrictedCode() string

GetProseRestrictedCode returns the ProseRestrictedCode field value if set, zero value otherwise.

func (*AnnounceDiscDataForRestricted) GetProseRestrictedCodeOk

func (o *AnnounceDiscDataForRestricted) GetProseRestrictedCodeOk() (*string, bool)

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

func (*AnnounceDiscDataForRestricted) GetProseRestrictedPrefix

func (o *AnnounceDiscDataForRestricted) GetProseRestrictedPrefix() string

GetProseRestrictedPrefix returns the ProseRestrictedPrefix field value if set, zero value otherwise.

func (*AnnounceDiscDataForRestricted) GetProseRestrictedPrefixOk

func (o *AnnounceDiscDataForRestricted) GetProseRestrictedPrefixOk() (*string, bool)

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

func (*AnnounceDiscDataForRestricted) GetRpauid

func (o *AnnounceDiscDataForRestricted) GetRpauid() string

GetRpauid returns the Rpauid field value

func (*AnnounceDiscDataForRestricted) GetRpauidOk

func (o *AnnounceDiscDataForRestricted) GetRpauidOk() (*string, bool)

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

func (*AnnounceDiscDataForRestricted) GetValidityTime

func (o *AnnounceDiscDataForRestricted) GetValidityTime() time.Time

GetValidityTime returns the ValidityTime field value

func (*AnnounceDiscDataForRestricted) GetValidityTimeOk

func (o *AnnounceDiscDataForRestricted) GetValidityTimeOk() (*time.Time, bool)

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

func (*AnnounceDiscDataForRestricted) HasCodeSuffixPool

func (o *AnnounceDiscDataForRestricted) HasCodeSuffixPool() bool

HasCodeSuffixPool returns a boolean if a field has been set.

func (*AnnounceDiscDataForRestricted) HasProseRestrictedCode

func (o *AnnounceDiscDataForRestricted) HasProseRestrictedCode() bool

HasProseRestrictedCode returns a boolean if a field has been set.

func (*AnnounceDiscDataForRestricted) HasProseRestrictedPrefix

func (o *AnnounceDiscDataForRestricted) HasProseRestrictedPrefix() bool

HasProseRestrictedPrefix returns a boolean if a field has been set.

func (AnnounceDiscDataForRestricted) MarshalJSON

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

func (*AnnounceDiscDataForRestricted) SetAppId

func (o *AnnounceDiscDataForRestricted) SetAppId(v string)

SetAppId sets field value

func (*AnnounceDiscDataForRestricted) SetCodeSuffixPool

SetCodeSuffixPool gets a reference to the given RestrictedCodeSuffixPool and assigns it to the CodeSuffixPool field.

func (*AnnounceDiscDataForRestricted) SetProseRestrictedCode

func (o *AnnounceDiscDataForRestricted) SetProseRestrictedCode(v string)

SetProseRestrictedCode gets a reference to the given string and assigns it to the ProseRestrictedCode field.

func (*AnnounceDiscDataForRestricted) SetProseRestrictedPrefix

func (o *AnnounceDiscDataForRestricted) SetProseRestrictedPrefix(v string)

SetProseRestrictedPrefix gets a reference to the given string and assigns it to the ProseRestrictedPrefix field.

func (*AnnounceDiscDataForRestricted) SetRpauid

func (o *AnnounceDiscDataForRestricted) SetRpauid(v string)

SetRpauid sets field value

func (*AnnounceDiscDataForRestricted) SetValidityTime

func (o *AnnounceDiscDataForRestricted) SetValidityTime(v time.Time)

SetValidityTime sets field value

func (AnnounceDiscDataForRestricted) ToMap

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

type AnnounceUpdateData

type AnnounceUpdateData struct {
	DiscType DiscoveryType `json:"discType"`
	// string with format 'date-time' as defined in OpenAPI.
	ValidityTime time.Time `json:"validityTime"`
	// Contains the ProSe Application Code.
	ProseAppCode *string `json:"proseAppCode,omitempty"`
}

AnnounceUpdateData Represents Announce Authorize Data to update

func NewAnnounceUpdateData

func NewAnnounceUpdateData(discType DiscoveryType, validityTime time.Time) *AnnounceUpdateData

NewAnnounceUpdateData instantiates a new AnnounceUpdateData 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 NewAnnounceUpdateDataWithDefaults

func NewAnnounceUpdateDataWithDefaults() *AnnounceUpdateData

NewAnnounceUpdateDataWithDefaults instantiates a new AnnounceUpdateData 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 (*AnnounceUpdateData) GetDiscType

func (o *AnnounceUpdateData) GetDiscType() DiscoveryType

GetDiscType returns the DiscType field value

func (*AnnounceUpdateData) GetDiscTypeOk

func (o *AnnounceUpdateData) GetDiscTypeOk() (*DiscoveryType, bool)

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

func (*AnnounceUpdateData) GetProseAppCode

func (o *AnnounceUpdateData) GetProseAppCode() string

GetProseAppCode returns the ProseAppCode field value if set, zero value otherwise.

func (*AnnounceUpdateData) GetProseAppCodeOk

func (o *AnnounceUpdateData) GetProseAppCodeOk() (*string, bool)

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

func (*AnnounceUpdateData) GetValidityTime

func (o *AnnounceUpdateData) GetValidityTime() time.Time

GetValidityTime returns the ValidityTime field value

func (*AnnounceUpdateData) GetValidityTimeOk

func (o *AnnounceUpdateData) GetValidityTimeOk() (*time.Time, bool)

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

func (*AnnounceUpdateData) HasProseAppCode

func (o *AnnounceUpdateData) HasProseAppCode() bool

HasProseAppCode returns a boolean if a field has been set.

func (AnnounceUpdateData) MarshalJSON

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

func (*AnnounceUpdateData) SetDiscType

func (o *AnnounceUpdateData) SetDiscType(v DiscoveryType)

SetDiscType sets field value

func (*AnnounceUpdateData) SetProseAppCode

func (o *AnnounceUpdateData) SetProseAppCode(v string)

SetProseAppCode gets a reference to the given string and assigns it to the ProseAppCode field.

func (*AnnounceUpdateData) SetValidityTime

func (o *AnnounceUpdateData) SetValidityTime(v time.Time)

SetValidityTime sets field value

func (AnnounceUpdateData) ToMap

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

type ApiMatchReportRequest

type ApiMatchReportRequest struct {
	ApiService *ObtainTheInformationAboutTheIndicatedDiscoveryCodeApiService
	// contains filtered or unexported fields
}

func (ApiMatchReportRequest) Execute

func (ApiMatchReportRequest) MatchReportReqData

func (r ApiMatchReportRequest) MatchReportReqData(matchReportReqData MatchReportReqData) ApiMatchReportRequest

type ApiObtainAnnounceAuthRequest

type ApiObtainAnnounceAuthRequest struct {
	ApiService *ObtainTheAuthorizationToAnnounceForAUEApiService
	// contains filtered or unexported fields
}

func (ApiObtainAnnounceAuthRequest) AnnounceAuthReqData

func (r ApiObtainAnnounceAuthRequest) AnnounceAuthReqData(announceAuthReqData AnnounceAuthReqData) ApiObtainAnnounceAuthRequest

func (ApiObtainAnnounceAuthRequest) Execute

type ApiObtainDiscAuthRequest

type ApiObtainDiscAuthRequest struct {
	ApiService *ObtainTheAuthorizationForADiscovererUEApiService
	// contains filtered or unexported fields
}

func (ApiObtainDiscAuthRequest) DiscoveryAuthReqData

func (r ApiObtainDiscAuthRequest) DiscoveryAuthReqData(discoveryAuthReqData DiscoveryAuthReqData) ApiObtainDiscAuthRequest

func (ApiObtainDiscAuthRequest) Execute

type ApiObtainMonitorAuthRequest

type ApiObtainMonitorAuthRequest struct {
	ApiService *ObtainTheAuthorizationToMonitorForAUEApiService
	// contains filtered or unexported fields
}

func (ApiObtainMonitorAuthRequest) Execute

func (ApiObtainMonitorAuthRequest) MonitorAuthReqData

func (r ApiObtainMonitorAuthRequest) MonitorAuthReqData(monitorAuthReqData MonitorAuthReqData) ApiObtainMonitorAuthRequest

type ApiUpdateAnnounceAuthRequest

type ApiUpdateAnnounceAuthRequest struct {
	ApiService *UpdateTheAuthorizationForAnnouncingForAUEApiService
	// contains filtered or unexported fields
}

func (ApiUpdateAnnounceAuthRequest) AnnounceUpdateData

func (r ApiUpdateAnnounceAuthRequest) AnnounceUpdateData(announceUpdateData AnnounceUpdateData) ApiUpdateAnnounceAuthRequest

func (ApiUpdateAnnounceAuthRequest) Execute

type ApiUpdateMonitorAuthRequest

type ApiUpdateMonitorAuthRequest struct {
	ApiService *UpdateTheAuthorizationForMonitoringForAUEApiService
	// contains filtered or unexported fields
}

func (ApiUpdateMonitorAuthRequest) Execute

func (ApiUpdateMonitorAuthRequest) MonitorUpdateData

func (r ApiUpdateMonitorAuthRequest) MonitorUpdateData(monitorUpdateData MonitorUpdateData) ApiUpdateMonitorAuthRequest

type AuthDataForRestricted

type AuthDataForRestricted struct {
	ProseQueryCodes []string `json:"proseQueryCodes"`
	// Contains the ProSe Response Code.
	ProseRespCode string `json:"proseRespCode"`
	// string with format 'date-time' as defined in OpenAPI.
	ValidityTime time.Time `json:"validityTime"`
}

AuthDataForRestricted Represents obtained authorization Data for restricted discovery for a discoverer UE

func NewAuthDataForRestricted

func NewAuthDataForRestricted(proseQueryCodes []string, proseRespCode string, validityTime time.Time) *AuthDataForRestricted

NewAuthDataForRestricted instantiates a new AuthDataForRestricted 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 NewAuthDataForRestrictedWithDefaults

func NewAuthDataForRestrictedWithDefaults() *AuthDataForRestricted

NewAuthDataForRestrictedWithDefaults instantiates a new AuthDataForRestricted 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 (*AuthDataForRestricted) GetProseQueryCodes

func (o *AuthDataForRestricted) GetProseQueryCodes() []string

GetProseQueryCodes returns the ProseQueryCodes field value

func (*AuthDataForRestricted) GetProseQueryCodesOk

func (o *AuthDataForRestricted) GetProseQueryCodesOk() ([]string, bool)

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

func (*AuthDataForRestricted) GetProseRespCode

func (o *AuthDataForRestricted) GetProseRespCode() string

GetProseRespCode returns the ProseRespCode field value

func (*AuthDataForRestricted) GetProseRespCodeOk

func (o *AuthDataForRestricted) GetProseRespCodeOk() (*string, bool)

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

func (*AuthDataForRestricted) GetValidityTime

func (o *AuthDataForRestricted) GetValidityTime() time.Time

GetValidityTime returns the ValidityTime field value

func (*AuthDataForRestricted) GetValidityTimeOk

func (o *AuthDataForRestricted) GetValidityTimeOk() (*time.Time, bool)

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

func (AuthDataForRestricted) MarshalJSON

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

func (*AuthDataForRestricted) SetProseQueryCodes

func (o *AuthDataForRestricted) SetProseQueryCodes(v []string)

SetProseQueryCodes sets field value

func (*AuthDataForRestricted) SetProseRespCode

func (o *AuthDataForRestricted) SetProseRespCode(v string)

SetProseRespCode sets field value

func (*AuthDataForRestricted) SetValidityTime

func (o *AuthDataForRestricted) SetValidityTime(v time.Time)

SetValidityTime sets field value

func (AuthDataForRestricted) ToMap

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

type BasicAuth

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

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

type Configuration

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

Configuration stores the configuration of the API client

func NewConfiguration

func NewConfiguration() *Configuration

NewConfiguration returns a new Configuration object

func (*Configuration) AddDefaultHeader

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

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

func (*Configuration) ServerURL

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

ServerURL returns URL based on server settings

func (*Configuration) ServerURLWithContext

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

ServerURLWithContext returns a new server URL given an endpoint

type DiscDataForRestricted

type DiscDataForRestricted struct {
	// Contains the RPAUID.
	Rpauid string `json:"rpauid"`
	// Contains the PDUID.
	TargetPduid string `json:"targetPduid"`
	// Contains the Application ID.
	AppId string `json:"appId"`
	// Contains the RPAUID.
	TargetRpauid string `json:"targetRpauid"`
}

DiscDataForRestricted Represents Data for restricted discovery used to request the authorization for a discoverer UE

func NewDiscDataForRestricted

func NewDiscDataForRestricted(rpauid string, targetPduid string, appId string, targetRpauid string) *DiscDataForRestricted

NewDiscDataForRestricted instantiates a new DiscDataForRestricted 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 NewDiscDataForRestrictedWithDefaults

func NewDiscDataForRestrictedWithDefaults() *DiscDataForRestricted

NewDiscDataForRestrictedWithDefaults instantiates a new DiscDataForRestricted 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 (*DiscDataForRestricted) GetAppId

func (o *DiscDataForRestricted) GetAppId() string

GetAppId returns the AppId field value

func (*DiscDataForRestricted) GetAppIdOk

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

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

func (*DiscDataForRestricted) GetRpauid

func (o *DiscDataForRestricted) GetRpauid() string

GetRpauid returns the Rpauid field value

func (*DiscDataForRestricted) GetRpauidOk

func (o *DiscDataForRestricted) GetRpauidOk() (*string, bool)

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

func (*DiscDataForRestricted) GetTargetPduid

func (o *DiscDataForRestricted) GetTargetPduid() string

GetTargetPduid returns the TargetPduid field value

func (*DiscDataForRestricted) GetTargetPduidOk

func (o *DiscDataForRestricted) GetTargetPduidOk() (*string, bool)

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

func (*DiscDataForRestricted) GetTargetRpauid

func (o *DiscDataForRestricted) GetTargetRpauid() string

GetTargetRpauid returns the TargetRpauid field value

func (*DiscDataForRestricted) GetTargetRpauidOk

func (o *DiscDataForRestricted) GetTargetRpauidOk() (*string, bool)

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

func (DiscDataForRestricted) MarshalJSON

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

func (*DiscDataForRestricted) SetAppId

func (o *DiscDataForRestricted) SetAppId(v string)

SetAppId sets field value

func (*DiscDataForRestricted) SetRpauid

func (o *DiscDataForRestricted) SetRpauid(v string)

SetRpauid sets field value

func (*DiscDataForRestricted) SetTargetPduid

func (o *DiscDataForRestricted) SetTargetPduid(v string)

SetTargetPduid sets field value

func (*DiscDataForRestricted) SetTargetRpauid

func (o *DiscDataForRestricted) SetTargetRpauid(v string)

SetTargetRpauid sets field value

func (DiscDataForRestricted) ToMap

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

type DiscoveryAuthReqData

type DiscoveryAuthReqData struct {
	DiscType           DiscoveryType          `json:"discType"`
	RestrictedDiscData *DiscDataForRestricted `json:"restrictedDiscData,omitempty"`
}

DiscoveryAuthReqData Represents Data used to request the authorization for a discoverer UE.

func NewDiscoveryAuthReqData

func NewDiscoveryAuthReqData(discType DiscoveryType) *DiscoveryAuthReqData

NewDiscoveryAuthReqData instantiates a new DiscoveryAuthReqData 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 NewDiscoveryAuthReqDataWithDefaults

func NewDiscoveryAuthReqDataWithDefaults() *DiscoveryAuthReqData

NewDiscoveryAuthReqDataWithDefaults instantiates a new DiscoveryAuthReqData 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 (*DiscoveryAuthReqData) GetDiscType

func (o *DiscoveryAuthReqData) GetDiscType() DiscoveryType

GetDiscType returns the DiscType field value

func (*DiscoveryAuthReqData) GetDiscTypeOk

func (o *DiscoveryAuthReqData) GetDiscTypeOk() (*DiscoveryType, bool)

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

func (*DiscoveryAuthReqData) GetRestrictedDiscData

func (o *DiscoveryAuthReqData) GetRestrictedDiscData() DiscDataForRestricted

GetRestrictedDiscData returns the RestrictedDiscData field value if set, zero value otherwise.

func (*DiscoveryAuthReqData) GetRestrictedDiscDataOk

func (o *DiscoveryAuthReqData) GetRestrictedDiscDataOk() (*DiscDataForRestricted, bool)

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

func (*DiscoveryAuthReqData) HasRestrictedDiscData

func (o *DiscoveryAuthReqData) HasRestrictedDiscData() bool

HasRestrictedDiscData returns a boolean if a field has been set.

func (DiscoveryAuthReqData) MarshalJSON

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

func (*DiscoveryAuthReqData) SetDiscType

func (o *DiscoveryAuthReqData) SetDiscType(v DiscoveryType)

SetDiscType sets field value

func (*DiscoveryAuthReqData) SetRestrictedDiscData

func (o *DiscoveryAuthReqData) SetRestrictedDiscData(v DiscDataForRestricted)

SetRestrictedDiscData gets a reference to the given DiscDataForRestricted and assigns it to the RestrictedDiscData field.

func (DiscoveryAuthReqData) ToMap

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

type DiscoveryAuthRespData

type DiscoveryAuthRespData struct {
	AuthDataRestricted *AuthDataForRestricted `json:"authDataRestricted,omitempty"`
}

DiscoveryAuthRespData Represents the obtained authorization Data for a discoverer UE

func NewDiscoveryAuthRespData

func NewDiscoveryAuthRespData() *DiscoveryAuthRespData

NewDiscoveryAuthRespData instantiates a new DiscoveryAuthRespData 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 NewDiscoveryAuthRespDataWithDefaults

func NewDiscoveryAuthRespDataWithDefaults() *DiscoveryAuthRespData

NewDiscoveryAuthRespDataWithDefaults instantiates a new DiscoveryAuthRespData 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 (*DiscoveryAuthRespData) GetAuthDataRestricted

func (o *DiscoveryAuthRespData) GetAuthDataRestricted() AuthDataForRestricted

GetAuthDataRestricted returns the AuthDataRestricted field value if set, zero value otherwise.

func (*DiscoveryAuthRespData) GetAuthDataRestrictedOk

func (o *DiscoveryAuthRespData) GetAuthDataRestrictedOk() (*AuthDataForRestricted, bool)

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

func (*DiscoveryAuthRespData) HasAuthDataRestricted

func (o *DiscoveryAuthRespData) HasAuthDataRestricted() bool

HasAuthDataRestricted returns a boolean if a field has been set.

func (DiscoveryAuthRespData) MarshalJSON

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

func (*DiscoveryAuthRespData) SetAuthDataRestricted

func (o *DiscoveryAuthRespData) SetAuthDataRestricted(v AuthDataForRestricted)

SetAuthDataRestricted gets a reference to the given AuthDataForRestricted and assigns it to the AuthDataRestricted field.

func (DiscoveryAuthRespData) ToMap

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

type DiscoveryType

type DiscoveryType struct {
	String *string
}

DiscoveryType Possible values are - OPEN: Discovery type is \"open\". - RESTRICTED: Discovery type is \"restricted\".

func (*DiscoveryType) MarshalJSON

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

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

func (*DiscoveryType) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

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 InvalidParam

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

InvalidParam It contains an invalid parameter and a related description.

func NewInvalidParam

func NewInvalidParam(param string) *InvalidParam

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

func NewInvalidParamWithDefaults

func NewInvalidParamWithDefaults() *InvalidParam

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

func (*InvalidParam) GetParam

func (o *InvalidParam) GetParam() string

GetParam returns the Param field value

func (*InvalidParam) GetParamOk

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

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

func (*InvalidParam) GetReason

func (o *InvalidParam) GetReason() string

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

func (*InvalidParam) GetReasonOk

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

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

func (*InvalidParam) HasReason

func (o *InvalidParam) HasReason() bool

HasReason returns a boolean if a field has been set.

func (InvalidParam) MarshalJSON

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

func (*InvalidParam) SetParam

func (o *InvalidParam) SetParam(v string)

SetParam sets field value

func (*InvalidParam) SetReason

func (o *InvalidParam) SetReason(v string)

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

func (InvalidParam) ToMap

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

type MappedNullable

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

type MatchInfoForOpen

type MatchInfoForOpen 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"`
	AppId []string `json:"appId"`
}

MatchInfoForOpen Represents a report including a matching result, and the information that can be used for charging purpose for the open discovery type.

func NewMatchInfoForOpen

func NewMatchInfoForOpen(supi string, appId []string) *MatchInfoForOpen

NewMatchInfoForOpen instantiates a new MatchInfoForOpen 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 NewMatchInfoForOpenWithDefaults

func NewMatchInfoForOpenWithDefaults() *MatchInfoForOpen

NewMatchInfoForOpenWithDefaults instantiates a new MatchInfoForOpen 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 (*MatchInfoForOpen) GetAppId

func (o *MatchInfoForOpen) GetAppId() []string

GetAppId returns the AppId field value

func (*MatchInfoForOpen) GetAppIdOk

func (o *MatchInfoForOpen) GetAppIdOk() ([]string, bool)

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

func (*MatchInfoForOpen) GetSupi

func (o *MatchInfoForOpen) GetSupi() string

GetSupi returns the Supi field value

func (*MatchInfoForOpen) GetSupiOk

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

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

func (MatchInfoForOpen) MarshalJSON

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

func (*MatchInfoForOpen) SetAppId

func (o *MatchInfoForOpen) SetAppId(v []string)

SetAppId sets field value

func (*MatchInfoForOpen) SetSupi

func (o *MatchInfoForOpen) SetSupi(v string)

SetSupi sets field value

func (MatchInfoForOpen) ToMap

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

type MatchInfoForRestricted

type MatchInfoForRestricted 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"`
	// Contains the RPAUID.
	Rpauid string `json:"rpauid"`
	// Contains the RPAUID.
	TargetRpauid string `json:"targetRpauid"`
	// Contains the ProSe Restricted Code.
	ProseRestrictedCode string `json:"proseRestrictedCode"`
}

MatchInfoForRestricted Represents a report including a matching result, and the information that can be used for charging purpose for the restricted discovery type.

func NewMatchInfoForRestricted

func NewMatchInfoForRestricted(supi string, rpauid string, targetRpauid string, proseRestrictedCode string) *MatchInfoForRestricted

NewMatchInfoForRestricted instantiates a new MatchInfoForRestricted 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 NewMatchInfoForRestrictedWithDefaults

func NewMatchInfoForRestrictedWithDefaults() *MatchInfoForRestricted

NewMatchInfoForRestrictedWithDefaults instantiates a new MatchInfoForRestricted 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 (*MatchInfoForRestricted) GetProseRestrictedCode

func (o *MatchInfoForRestricted) GetProseRestrictedCode() string

GetProseRestrictedCode returns the ProseRestrictedCode field value

func (*MatchInfoForRestricted) GetProseRestrictedCodeOk

func (o *MatchInfoForRestricted) GetProseRestrictedCodeOk() (*string, bool)

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

func (*MatchInfoForRestricted) GetRpauid

func (o *MatchInfoForRestricted) GetRpauid() string

GetRpauid returns the Rpauid field value

func (*MatchInfoForRestricted) GetRpauidOk

func (o *MatchInfoForRestricted) GetRpauidOk() (*string, bool)

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

func (*MatchInfoForRestricted) GetSupi

func (o *MatchInfoForRestricted) GetSupi() string

GetSupi returns the Supi field value

func (*MatchInfoForRestricted) GetSupiOk

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

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

func (*MatchInfoForRestricted) GetTargetRpauid

func (o *MatchInfoForRestricted) GetTargetRpauid() string

GetTargetRpauid returns the TargetRpauid field value

func (*MatchInfoForRestricted) GetTargetRpauidOk

func (o *MatchInfoForRestricted) GetTargetRpauidOk() (*string, bool)

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

func (MatchInfoForRestricted) MarshalJSON

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

func (*MatchInfoForRestricted) SetProseRestrictedCode

func (o *MatchInfoForRestricted) SetProseRestrictedCode(v string)

SetProseRestrictedCode sets field value

func (*MatchInfoForRestricted) SetRpauid

func (o *MatchInfoForRestricted) SetRpauid(v string)

SetRpauid sets field value

func (*MatchInfoForRestricted) SetSupi

func (o *MatchInfoForRestricted) SetSupi(v string)

SetSupi sets field value

func (*MatchInfoForRestricted) SetTargetRpauid

func (o *MatchInfoForRestricted) SetTargetRpauid(v string)

SetTargetRpauid sets field value

func (MatchInfoForRestricted) ToMap

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

type MatchInformation

type MatchInformation struct {
	DiscType             DiscoveryType           `json:"discType"`
	OpenMatchInfoForOpen *MatchInfoForOpen       `json:"openMatchInfoForOpen,omitempty"`
	RestrictedMatchInfo  *MatchInfoForRestricted `json:"restrictedMatchInfo,omitempty"`
}

MatchInformation Represents a report including a matching result, and the information that can be used for charging purpose.

func NewMatchInformation

func NewMatchInformation(discType DiscoveryType) *MatchInformation

NewMatchInformation instantiates a new MatchInformation 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 NewMatchInformationWithDefaults

func NewMatchInformationWithDefaults() *MatchInformation

NewMatchInformationWithDefaults instantiates a new MatchInformation 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 (*MatchInformation) GetDiscType

func (o *MatchInformation) GetDiscType() DiscoveryType

GetDiscType returns the DiscType field value

func (*MatchInformation) GetDiscTypeOk

func (o *MatchInformation) GetDiscTypeOk() (*DiscoveryType, bool)

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

func (*MatchInformation) GetOpenMatchInfoForOpen

func (o *MatchInformation) GetOpenMatchInfoForOpen() MatchInfoForOpen

GetOpenMatchInfoForOpen returns the OpenMatchInfoForOpen field value if set, zero value otherwise.

func (*MatchInformation) GetOpenMatchInfoForOpenOk

func (o *MatchInformation) GetOpenMatchInfoForOpenOk() (*MatchInfoForOpen, bool)

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

func (*MatchInformation) GetRestrictedMatchInfo

func (o *MatchInformation) GetRestrictedMatchInfo() MatchInfoForRestricted

GetRestrictedMatchInfo returns the RestrictedMatchInfo field value if set, zero value otherwise.

func (*MatchInformation) GetRestrictedMatchInfoOk

func (o *MatchInformation) GetRestrictedMatchInfoOk() (*MatchInfoForRestricted, bool)

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

func (*MatchInformation) HasOpenMatchInfoForOpen

func (o *MatchInformation) HasOpenMatchInfoForOpen() bool

HasOpenMatchInfoForOpen returns a boolean if a field has been set.

func (*MatchInformation) HasRestrictedMatchInfo

func (o *MatchInformation) HasRestrictedMatchInfo() bool

HasRestrictedMatchInfo returns a boolean if a field has been set.

func (MatchInformation) MarshalJSON

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

func (*MatchInformation) SetDiscType

func (o *MatchInformation) SetDiscType(v DiscoveryType)

SetDiscType sets field value

func (*MatchInformation) SetOpenMatchInfoForOpen

func (o *MatchInformation) SetOpenMatchInfoForOpen(v MatchInfoForOpen)

SetOpenMatchInfoForOpen gets a reference to the given MatchInfoForOpen and assigns it to the OpenMatchInfoForOpen field.

func (*MatchInformation) SetRestrictedMatchInfo

func (o *MatchInformation) SetRestrictedMatchInfo(v MatchInfoForRestricted)

SetRestrictedMatchInfo gets a reference to the given MatchInfoForRestricted and assigns it to the RestrictedMatchInfo field.

func (MatchInformation) ToMap

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

type MatchReportReqData

type MatchReportReqData struct {
	DiscType        DiscoveryType `json:"discType"`
	ProseAppCodes   []string      `json:"proseAppCodes,omitempty"`
	MoniteredPlmnId *PlmnId       `json:"moniteredPlmnId,omitempty"`
}

MatchReportReqData Represents the Match Report information

func NewMatchReportReqData

func NewMatchReportReqData(discType DiscoveryType) *MatchReportReqData

NewMatchReportReqData instantiates a new MatchReportReqData 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 NewMatchReportReqDataWithDefaults

func NewMatchReportReqDataWithDefaults() *MatchReportReqData

NewMatchReportReqDataWithDefaults instantiates a new MatchReportReqData 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 (*MatchReportReqData) GetDiscType

func (o *MatchReportReqData) GetDiscType() DiscoveryType

GetDiscType returns the DiscType field value

func (*MatchReportReqData) GetDiscTypeOk

func (o *MatchReportReqData) GetDiscTypeOk() (*DiscoveryType, bool)

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

func (*MatchReportReqData) GetMoniteredPlmnId

func (o *MatchReportReqData) GetMoniteredPlmnId() PlmnId

GetMoniteredPlmnId returns the MoniteredPlmnId field value if set, zero value otherwise.

func (*MatchReportReqData) GetMoniteredPlmnIdOk

func (o *MatchReportReqData) GetMoniteredPlmnIdOk() (*PlmnId, bool)

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

func (*MatchReportReqData) GetProseAppCodes

func (o *MatchReportReqData) GetProseAppCodes() []string

GetProseAppCodes returns the ProseAppCodes field value if set, zero value otherwise.

func (*MatchReportReqData) GetProseAppCodesOk

func (o *MatchReportReqData) GetProseAppCodesOk() ([]string, bool)

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

func (*MatchReportReqData) HasMoniteredPlmnId

func (o *MatchReportReqData) HasMoniteredPlmnId() bool

HasMoniteredPlmnId returns a boolean if a field has been set.

func (*MatchReportReqData) HasProseAppCodes

func (o *MatchReportReqData) HasProseAppCodes() bool

HasProseAppCodes returns a boolean if a field has been set.

func (MatchReportReqData) MarshalJSON

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

func (*MatchReportReqData) SetDiscType

func (o *MatchReportReqData) SetDiscType(v DiscoveryType)

SetDiscType sets field value

func (*MatchReportReqData) SetMoniteredPlmnId

func (o *MatchReportReqData) SetMoniteredPlmnId(v PlmnId)

SetMoniteredPlmnId gets a reference to the given PlmnId and assigns it to the MoniteredPlmnId field.

func (*MatchReportReqData) SetProseAppCodes

func (o *MatchReportReqData) SetProseAppCodes(v []string)

SetProseAppCodes gets a reference to the given []string and assigns it to the ProseAppCodes field.

func (MatchReportReqData) ToMap

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

type MatchReportRespData

type MatchReportRespData struct {
	ProseAppIdNames []string `json:"proseAppIdNames,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	ValidityTime *time.Time `json:"validityTime,omitempty"`
	// Contains the metadata.
	MetaData           *string  `json:"metaData,omitempty"`
	MetaDataIndexMasks []string `json:"metaDataIndexMasks,omitempty"`
}

MatchReportRespData Represents Match Report Acknowledgement

func NewMatchReportRespData

func NewMatchReportRespData() *MatchReportRespData

NewMatchReportRespData instantiates a new MatchReportRespData 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 NewMatchReportRespDataWithDefaults

func NewMatchReportRespDataWithDefaults() *MatchReportRespData

NewMatchReportRespDataWithDefaults instantiates a new MatchReportRespData 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 (*MatchReportRespData) GetMetaData

func (o *MatchReportRespData) GetMetaData() string

GetMetaData returns the MetaData field value if set, zero value otherwise.

func (*MatchReportRespData) GetMetaDataIndexMasks

func (o *MatchReportRespData) GetMetaDataIndexMasks() []string

GetMetaDataIndexMasks returns the MetaDataIndexMasks field value if set, zero value otherwise.

func (*MatchReportRespData) GetMetaDataIndexMasksOk

func (o *MatchReportRespData) GetMetaDataIndexMasksOk() ([]string, bool)

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

func (*MatchReportRespData) GetMetaDataOk

func (o *MatchReportRespData) GetMetaDataOk() (*string, bool)

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

func (*MatchReportRespData) GetProseAppIdNames

func (o *MatchReportRespData) GetProseAppIdNames() []string

GetProseAppIdNames returns the ProseAppIdNames field value if set, zero value otherwise.

func (*MatchReportRespData) GetProseAppIdNamesOk

func (o *MatchReportRespData) GetProseAppIdNamesOk() ([]string, bool)

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

func (*MatchReportRespData) GetValidityTime

func (o *MatchReportRespData) GetValidityTime() time.Time

GetValidityTime returns the ValidityTime field value if set, zero value otherwise.

func (*MatchReportRespData) GetValidityTimeOk

func (o *MatchReportRespData) GetValidityTimeOk() (*time.Time, bool)

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

func (*MatchReportRespData) HasMetaData

func (o *MatchReportRespData) HasMetaData() bool

HasMetaData returns a boolean if a field has been set.

func (*MatchReportRespData) HasMetaDataIndexMasks

func (o *MatchReportRespData) HasMetaDataIndexMasks() bool

HasMetaDataIndexMasks returns a boolean if a field has been set.

func (*MatchReportRespData) HasProseAppIdNames

func (o *MatchReportRespData) HasProseAppIdNames() bool

HasProseAppIdNames returns a boolean if a field has been set.

func (*MatchReportRespData) HasValidityTime

func (o *MatchReportRespData) HasValidityTime() bool

HasValidityTime returns a boolean if a field has been set.

func (MatchReportRespData) MarshalJSON

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

func (*MatchReportRespData) SetMetaData

func (o *MatchReportRespData) SetMetaData(v string)

SetMetaData gets a reference to the given string and assigns it to the MetaData field.

func (*MatchReportRespData) SetMetaDataIndexMasks

func (o *MatchReportRespData) SetMetaDataIndexMasks(v []string)

SetMetaDataIndexMasks gets a reference to the given []string and assigns it to the MetaDataIndexMasks field.

func (*MatchReportRespData) SetProseAppIdNames

func (o *MatchReportRespData) SetProseAppIdNames(v []string)

SetProseAppIdNames gets a reference to the given []string and assigns it to the ProseAppIdNames field.

func (*MatchReportRespData) SetValidityTime

func (o *MatchReportRespData) SetValidityTime(v time.Time)

SetValidityTime gets a reference to the given time.Time and assigns it to the ValidityTime field.

func (MatchReportRespData) ToMap

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

type MonitorAuthDataForOpen

type MonitorAuthDataForOpen struct {
	ProseAppCodes []string `json:"proseAppCodes,omitempty"`
	// Contains the Prose Application Code Prefix.
	ProseAppPrefix *string  `json:"proseAppPrefix,omitempty"`
	ProseAppMasks  []string `json:"proseAppMasks"`
	Ttl            int32    `json:"ttl"`
}

MonitorAuthDataForOpen Represents the obtained Announce Authorize Data for open discovery for a UE

func NewMonitorAuthDataForOpen

func NewMonitorAuthDataForOpen(proseAppMasks []string, ttl int32) *MonitorAuthDataForOpen

NewMonitorAuthDataForOpen instantiates a new MonitorAuthDataForOpen 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 NewMonitorAuthDataForOpenWithDefaults

func NewMonitorAuthDataForOpenWithDefaults() *MonitorAuthDataForOpen

NewMonitorAuthDataForOpenWithDefaults instantiates a new MonitorAuthDataForOpen 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 (*MonitorAuthDataForOpen) GetProseAppCodes

func (o *MonitorAuthDataForOpen) GetProseAppCodes() []string

GetProseAppCodes returns the ProseAppCodes field value if set, zero value otherwise.

func (*MonitorAuthDataForOpen) GetProseAppCodesOk

func (o *MonitorAuthDataForOpen) GetProseAppCodesOk() ([]string, bool)

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

func (*MonitorAuthDataForOpen) GetProseAppMasks

func (o *MonitorAuthDataForOpen) GetProseAppMasks() []string

GetProseAppMasks returns the ProseAppMasks field value

func (*MonitorAuthDataForOpen) GetProseAppMasksOk

func (o *MonitorAuthDataForOpen) GetProseAppMasksOk() ([]string, bool)

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

func (*MonitorAuthDataForOpen) GetProseAppPrefix

func (o *MonitorAuthDataForOpen) GetProseAppPrefix() string

GetProseAppPrefix returns the ProseAppPrefix field value if set, zero value otherwise.

func (*MonitorAuthDataForOpen) GetProseAppPrefixOk

func (o *MonitorAuthDataForOpen) GetProseAppPrefixOk() (*string, bool)

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

func (*MonitorAuthDataForOpen) GetTtl

func (o *MonitorAuthDataForOpen) GetTtl() int32

GetTtl returns the Ttl field value

func (*MonitorAuthDataForOpen) GetTtlOk

func (o *MonitorAuthDataForOpen) GetTtlOk() (*int32, bool)

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

func (*MonitorAuthDataForOpen) HasProseAppCodes

func (o *MonitorAuthDataForOpen) HasProseAppCodes() bool

HasProseAppCodes returns a boolean if a field has been set.

func (*MonitorAuthDataForOpen) HasProseAppPrefix

func (o *MonitorAuthDataForOpen) HasProseAppPrefix() bool

HasProseAppPrefix returns a boolean if a field has been set.

func (MonitorAuthDataForOpen) MarshalJSON

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

func (*MonitorAuthDataForOpen) SetProseAppCodes

func (o *MonitorAuthDataForOpen) SetProseAppCodes(v []string)

SetProseAppCodes gets a reference to the given []string and assigns it to the ProseAppCodes field.

func (*MonitorAuthDataForOpen) SetProseAppMasks

func (o *MonitorAuthDataForOpen) SetProseAppMasks(v []string)

SetProseAppMasks sets field value

func (*MonitorAuthDataForOpen) SetProseAppPrefix

func (o *MonitorAuthDataForOpen) SetProseAppPrefix(v string)

SetProseAppPrefix gets a reference to the given string and assigns it to the ProseAppPrefix field.

func (*MonitorAuthDataForOpen) SetTtl

func (o *MonitorAuthDataForOpen) SetTtl(v int32)

SetTtl sets field value

func (MonitorAuthDataForOpen) ToMap

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

type MonitorAuthDataForRestricted

type MonitorAuthDataForRestricted struct {
	// Contains the ProSe Restricted Code.
	ProseRestrictedCode string `json:"proseRestrictedCode"`
	// string with format 'date-time' as defined in OpenAPI.
	ValidityTime time.Time `json:"validityTime"`
}

MonitorAuthDataForRestricted Represents the obtained Announce Authorize Data for restricted discovery for a UE

func NewMonitorAuthDataForRestricted

func NewMonitorAuthDataForRestricted(proseRestrictedCode string, validityTime time.Time) *MonitorAuthDataForRestricted

NewMonitorAuthDataForRestricted instantiates a new MonitorAuthDataForRestricted 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 NewMonitorAuthDataForRestrictedWithDefaults

func NewMonitorAuthDataForRestrictedWithDefaults() *MonitorAuthDataForRestricted

NewMonitorAuthDataForRestrictedWithDefaults instantiates a new MonitorAuthDataForRestricted 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 (*MonitorAuthDataForRestricted) GetProseRestrictedCode

func (o *MonitorAuthDataForRestricted) GetProseRestrictedCode() string

GetProseRestrictedCode returns the ProseRestrictedCode field value

func (*MonitorAuthDataForRestricted) GetProseRestrictedCodeOk

func (o *MonitorAuthDataForRestricted) GetProseRestrictedCodeOk() (*string, bool)

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

func (*MonitorAuthDataForRestricted) GetValidityTime

func (o *MonitorAuthDataForRestricted) GetValidityTime() time.Time

GetValidityTime returns the ValidityTime field value

func (*MonitorAuthDataForRestricted) GetValidityTimeOk

func (o *MonitorAuthDataForRestricted) GetValidityTimeOk() (*time.Time, bool)

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

func (MonitorAuthDataForRestricted) MarshalJSON

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

func (*MonitorAuthDataForRestricted) SetProseRestrictedCode

func (o *MonitorAuthDataForRestricted) SetProseRestrictedCode(v string)

SetProseRestrictedCode sets field value

func (*MonitorAuthDataForRestricted) SetValidityTime

func (o *MonitorAuthDataForRestricted) SetValidityTime(v time.Time)

SetValidityTime sets field value

func (MonitorAuthDataForRestricted) ToMap

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

type MonitorAuthReqData

type MonitorAuthReqData struct {
	DiscType           DiscoveryType                 `json:"discType"`
	OpenDiscData       *MonitorDiscDataForOpen       `json:"openDiscData,omitempty"`
	RestrictedDiscData *MonitorDiscDataForRestricted `json:"restrictedDiscData,omitempty"`
}

MonitorAuthReqData Represents Data used to request the authorization to monitor for a UE

func NewMonitorAuthReqData

func NewMonitorAuthReqData(discType DiscoveryType) *MonitorAuthReqData

NewMonitorAuthReqData instantiates a new MonitorAuthReqData 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 NewMonitorAuthReqDataWithDefaults

func NewMonitorAuthReqDataWithDefaults() *MonitorAuthReqData

NewMonitorAuthReqDataWithDefaults instantiates a new MonitorAuthReqData 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 (*MonitorAuthReqData) GetDiscType

func (o *MonitorAuthReqData) GetDiscType() DiscoveryType

GetDiscType returns the DiscType field value

func (*MonitorAuthReqData) GetDiscTypeOk

func (o *MonitorAuthReqData) GetDiscTypeOk() (*DiscoveryType, bool)

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

func (*MonitorAuthReqData) GetOpenDiscData

func (o *MonitorAuthReqData) GetOpenDiscData() MonitorDiscDataForOpen

GetOpenDiscData returns the OpenDiscData field value if set, zero value otherwise.

func (*MonitorAuthReqData) GetOpenDiscDataOk

func (o *MonitorAuthReqData) GetOpenDiscDataOk() (*MonitorDiscDataForOpen, bool)

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

func (*MonitorAuthReqData) GetRestrictedDiscData

func (o *MonitorAuthReqData) GetRestrictedDiscData() MonitorDiscDataForRestricted

GetRestrictedDiscData returns the RestrictedDiscData field value if set, zero value otherwise.

func (*MonitorAuthReqData) GetRestrictedDiscDataOk

func (o *MonitorAuthReqData) GetRestrictedDiscDataOk() (*MonitorDiscDataForRestricted, bool)

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

func (*MonitorAuthReqData) HasOpenDiscData

func (o *MonitorAuthReqData) HasOpenDiscData() bool

HasOpenDiscData returns a boolean if a field has been set.

func (*MonitorAuthReqData) HasRestrictedDiscData

func (o *MonitorAuthReqData) HasRestrictedDiscData() bool

HasRestrictedDiscData returns a boolean if a field has been set.

func (MonitorAuthReqData) MarshalJSON

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

func (*MonitorAuthReqData) SetDiscType

func (o *MonitorAuthReqData) SetDiscType(v DiscoveryType)

SetDiscType sets field value

func (*MonitorAuthReqData) SetOpenDiscData

func (o *MonitorAuthReqData) SetOpenDiscData(v MonitorDiscDataForOpen)

SetOpenDiscData gets a reference to the given MonitorDiscDataForOpen and assigns it to the OpenDiscData field.

func (*MonitorAuthReqData) SetRestrictedDiscData

func (o *MonitorAuthReqData) SetRestrictedDiscData(v MonitorDiscDataForRestricted)

SetRestrictedDiscData gets a reference to the given MonitorDiscDataForRestricted and assigns it to the RestrictedDiscData field.

func (MonitorAuthReqData) ToMap

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

type MonitorAuthRespData

type MonitorAuthRespData struct {
	AuthDataOpen       *MonitorAuthDataForOpen       `json:"authDataOpen,omitempty"`
	AuthDataRestricted *MonitorAuthDataForRestricted `json:"authDataRestricted,omitempty"`
}

MonitorAuthRespData Represents the obtained Monitor Authorize Data for a UE

func NewMonitorAuthRespData

func NewMonitorAuthRespData() *MonitorAuthRespData

NewMonitorAuthRespData instantiates a new MonitorAuthRespData 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 NewMonitorAuthRespDataWithDefaults

func NewMonitorAuthRespDataWithDefaults() *MonitorAuthRespData

NewMonitorAuthRespDataWithDefaults instantiates a new MonitorAuthRespData 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 (*MonitorAuthRespData) GetAuthDataOpen

func (o *MonitorAuthRespData) GetAuthDataOpen() MonitorAuthDataForOpen

GetAuthDataOpen returns the AuthDataOpen field value if set, zero value otherwise.

func (*MonitorAuthRespData) GetAuthDataOpenOk

func (o *MonitorAuthRespData) GetAuthDataOpenOk() (*MonitorAuthDataForOpen, bool)

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

func (*MonitorAuthRespData) GetAuthDataRestricted

func (o *MonitorAuthRespData) GetAuthDataRestricted() MonitorAuthDataForRestricted

GetAuthDataRestricted returns the AuthDataRestricted field value if set, zero value otherwise.

func (*MonitorAuthRespData) GetAuthDataRestrictedOk

func (o *MonitorAuthRespData) GetAuthDataRestrictedOk() (*MonitorAuthDataForRestricted, bool)

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

func (*MonitorAuthRespData) HasAuthDataOpen

func (o *MonitorAuthRespData) HasAuthDataOpen() bool

HasAuthDataOpen returns a boolean if a field has been set.

func (*MonitorAuthRespData) HasAuthDataRestricted

func (o *MonitorAuthRespData) HasAuthDataRestricted() bool

HasAuthDataRestricted returns a boolean if a field has been set.

func (MonitorAuthRespData) MarshalJSON

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

func (*MonitorAuthRespData) SetAuthDataOpen

func (o *MonitorAuthRespData) SetAuthDataOpen(v MonitorAuthDataForOpen)

SetAuthDataOpen gets a reference to the given MonitorAuthDataForOpen and assigns it to the AuthDataOpen field.

func (*MonitorAuthRespData) SetAuthDataRestricted

func (o *MonitorAuthRespData) SetAuthDataRestricted(v MonitorAuthDataForRestricted)

SetAuthDataRestricted gets a reference to the given MonitorAuthDataForRestricted and assigns it to the AuthDataRestricted field.

func (MonitorAuthRespData) ToMap

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

type MonitorDiscDataForOpen

type MonitorDiscDataForOpen struct {
	ProseAppIdNames []string `json:"proseAppIdNames"`
}

MonitorDiscDataForOpen Represents Data for open discovery used to request the authorization to monitor for a UE

func NewMonitorDiscDataForOpen

func NewMonitorDiscDataForOpen(proseAppIdNames []string) *MonitorDiscDataForOpen

NewMonitorDiscDataForOpen instantiates a new MonitorDiscDataForOpen 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 NewMonitorDiscDataForOpenWithDefaults

func NewMonitorDiscDataForOpenWithDefaults() *MonitorDiscDataForOpen

NewMonitorDiscDataForOpenWithDefaults instantiates a new MonitorDiscDataForOpen 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 (*MonitorDiscDataForOpen) GetProseAppIdNames

func (o *MonitorDiscDataForOpen) GetProseAppIdNames() []string

GetProseAppIdNames returns the ProseAppIdNames field value

func (*MonitorDiscDataForOpen) GetProseAppIdNamesOk

func (o *MonitorDiscDataForOpen) GetProseAppIdNamesOk() ([]string, bool)

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

func (MonitorDiscDataForOpen) MarshalJSON

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

func (*MonitorDiscDataForOpen) SetProseAppIdNames

func (o *MonitorDiscDataForOpen) SetProseAppIdNames(v []string)

SetProseAppIdNames sets field value

func (MonitorDiscDataForOpen) ToMap

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

type MonitorDiscDataForRestricted

type MonitorDiscDataForRestricted struct {
	// Contains the RPAUID.
	Rpauid string `json:"rpauid"`
	// Contains the PDUID.
	TargetPduid string `json:"targetPduid"`
	// Contains the Application ID.
	AppId string `json:"appId"`
	// Contains the RPAUID.
	TargetRpauid string `json:"targetRpauid"`
}

MonitorDiscDataForRestricted Represents Data for restricted discovery used to request the authorization to monitor for a UE

func NewMonitorDiscDataForRestricted

func NewMonitorDiscDataForRestricted(rpauid string, targetPduid string, appId string, targetRpauid string) *MonitorDiscDataForRestricted

NewMonitorDiscDataForRestricted instantiates a new MonitorDiscDataForRestricted 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 NewMonitorDiscDataForRestrictedWithDefaults

func NewMonitorDiscDataForRestrictedWithDefaults() *MonitorDiscDataForRestricted

NewMonitorDiscDataForRestrictedWithDefaults instantiates a new MonitorDiscDataForRestricted 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 (*MonitorDiscDataForRestricted) GetAppId

func (o *MonitorDiscDataForRestricted) GetAppId() string

GetAppId returns the AppId field value

func (*MonitorDiscDataForRestricted) GetAppIdOk

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

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

func (*MonitorDiscDataForRestricted) GetRpauid

func (o *MonitorDiscDataForRestricted) GetRpauid() string

GetRpauid returns the Rpauid field value

func (*MonitorDiscDataForRestricted) GetRpauidOk

func (o *MonitorDiscDataForRestricted) GetRpauidOk() (*string, bool)

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

func (*MonitorDiscDataForRestricted) GetTargetPduid

func (o *MonitorDiscDataForRestricted) GetTargetPduid() string

GetTargetPduid returns the TargetPduid field value

func (*MonitorDiscDataForRestricted) GetTargetPduidOk

func (o *MonitorDiscDataForRestricted) GetTargetPduidOk() (*string, bool)

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

func (*MonitorDiscDataForRestricted) GetTargetRpauid

func (o *MonitorDiscDataForRestricted) GetTargetRpauid() string

GetTargetRpauid returns the TargetRpauid field value

func (*MonitorDiscDataForRestricted) GetTargetRpauidOk

func (o *MonitorDiscDataForRestricted) GetTargetRpauidOk() (*string, bool)

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

func (MonitorDiscDataForRestricted) MarshalJSON

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

func (*MonitorDiscDataForRestricted) SetAppId

func (o *MonitorDiscDataForRestricted) SetAppId(v string)

SetAppId sets field value

func (*MonitorDiscDataForRestricted) SetRpauid

func (o *MonitorDiscDataForRestricted) SetRpauid(v string)

SetRpauid sets field value

func (*MonitorDiscDataForRestricted) SetTargetPduid

func (o *MonitorDiscDataForRestricted) SetTargetPduid(v string)

SetTargetPduid sets field value

func (*MonitorDiscDataForRestricted) SetTargetRpauid

func (o *MonitorDiscDataForRestricted) SetTargetRpauid(v string)

SetTargetRpauid sets field value

func (MonitorDiscDataForRestricted) ToMap

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

type MonitorUpdateData

type MonitorUpdateData struct {
	DiscType             DiscoveryType                   `json:"discType"`
	OpenUpdateData       *MonitorUpdateDataForOpen       `json:"openUpdateData,omitempty"`
	RestrictedUpdateData *MonitorUpdateDataForRestricted `json:"restrictedUpdateData,omitempty"`
}

MonitorUpdateData Represents Monitor Authorize Data to update.

func NewMonitorUpdateData

func NewMonitorUpdateData(discType DiscoveryType) *MonitorUpdateData

NewMonitorUpdateData instantiates a new MonitorUpdateData 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 NewMonitorUpdateDataWithDefaults

func NewMonitorUpdateDataWithDefaults() *MonitorUpdateData

NewMonitorUpdateDataWithDefaults instantiates a new MonitorUpdateData 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 (*MonitorUpdateData) GetDiscType

func (o *MonitorUpdateData) GetDiscType() DiscoveryType

GetDiscType returns the DiscType field value

func (*MonitorUpdateData) GetDiscTypeOk

func (o *MonitorUpdateData) GetDiscTypeOk() (*DiscoveryType, bool)

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

func (*MonitorUpdateData) GetOpenUpdateData

func (o *MonitorUpdateData) GetOpenUpdateData() MonitorUpdateDataForOpen

GetOpenUpdateData returns the OpenUpdateData field value if set, zero value otherwise.

func (*MonitorUpdateData) GetOpenUpdateDataOk

func (o *MonitorUpdateData) GetOpenUpdateDataOk() (*MonitorUpdateDataForOpen, bool)

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

func (*MonitorUpdateData) GetRestrictedUpdateData

func (o *MonitorUpdateData) GetRestrictedUpdateData() MonitorUpdateDataForRestricted

GetRestrictedUpdateData returns the RestrictedUpdateData field value if set, zero value otherwise.

func (*MonitorUpdateData) GetRestrictedUpdateDataOk

func (o *MonitorUpdateData) GetRestrictedUpdateDataOk() (*MonitorUpdateDataForRestricted, bool)

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

func (*MonitorUpdateData) HasOpenUpdateData

func (o *MonitorUpdateData) HasOpenUpdateData() bool

HasOpenUpdateData returns a boolean if a field has been set.

func (*MonitorUpdateData) HasRestrictedUpdateData

func (o *MonitorUpdateData) HasRestrictedUpdateData() bool

HasRestrictedUpdateData returns a boolean if a field has been set.

func (MonitorUpdateData) MarshalJSON

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

func (*MonitorUpdateData) SetDiscType

func (o *MonitorUpdateData) SetDiscType(v DiscoveryType)

SetDiscType sets field value

func (*MonitorUpdateData) SetOpenUpdateData

func (o *MonitorUpdateData) SetOpenUpdateData(v MonitorUpdateDataForOpen)

SetOpenUpdateData gets a reference to the given MonitorUpdateDataForOpen and assigns it to the OpenUpdateData field.

func (*MonitorUpdateData) SetRestrictedUpdateData

func (o *MonitorUpdateData) SetRestrictedUpdateData(v MonitorUpdateDataForRestricted)

SetRestrictedUpdateData gets a reference to the given MonitorUpdateDataForRestricted and assigns it to the RestrictedUpdateData field.

func (MonitorUpdateData) ToMap

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

type MonitorUpdateDataForOpen

type MonitorUpdateDataForOpen struct {
	// Contains the ProSe Application ID name.
	ProseAppIdName string `json:"proseAppIdName"`
	Ttl            int32  `json:"ttl"`
}

MonitorUpdateDataForOpen Represents Monitor Update Data for the Discovery Type \"OPEN\".

func NewMonitorUpdateDataForOpen

func NewMonitorUpdateDataForOpen(proseAppIdName string, ttl int32) *MonitorUpdateDataForOpen

NewMonitorUpdateDataForOpen instantiates a new MonitorUpdateDataForOpen 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 NewMonitorUpdateDataForOpenWithDefaults

func NewMonitorUpdateDataForOpenWithDefaults() *MonitorUpdateDataForOpen

NewMonitorUpdateDataForOpenWithDefaults instantiates a new MonitorUpdateDataForOpen 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 (*MonitorUpdateDataForOpen) GetProseAppIdName

func (o *MonitorUpdateDataForOpen) GetProseAppIdName() string

GetProseAppIdName returns the ProseAppIdName field value

func (*MonitorUpdateDataForOpen) GetProseAppIdNameOk

func (o *MonitorUpdateDataForOpen) GetProseAppIdNameOk() (*string, bool)

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

func (*MonitorUpdateDataForOpen) GetTtl

func (o *MonitorUpdateDataForOpen) GetTtl() int32

GetTtl returns the Ttl field value

func (*MonitorUpdateDataForOpen) GetTtlOk

func (o *MonitorUpdateDataForOpen) GetTtlOk() (*int32, bool)

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

func (MonitorUpdateDataForOpen) MarshalJSON

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

func (*MonitorUpdateDataForOpen) SetProseAppIdName

func (o *MonitorUpdateDataForOpen) SetProseAppIdName(v string)

SetProseAppIdName sets field value

func (*MonitorUpdateDataForOpen) SetTtl

func (o *MonitorUpdateDataForOpen) SetTtl(v int32)

SetTtl sets field value

func (MonitorUpdateDataForOpen) ToMap

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

type MonitorUpdateDataForRestricted

type MonitorUpdateDataForRestricted struct {
	// Contains the ProSe Restricted Code.
	ProseRestrictedCode string `json:"proseRestrictedCode"`
	// Contains the Application ID.
	AppId string `json:"appId"`
	// Contains the RPAUID.
	BannedRpauid string `json:"bannedRpauid"`
	// Contains the PDUID.
	BannedPduid string `json:"bannedPduid"`
	// String providing an URI formatted according to RFC 3986.
	MonitorUpdateResultCallbackRef *string `json:"monitorUpdateResultCallbackRef,omitempty"`
}

MonitorUpdateDataForRestricted Represents Monitor Update Data for the Discovery Type \"RESTRICTED\".

func NewMonitorUpdateDataForRestricted

func NewMonitorUpdateDataForRestricted(proseRestrictedCode string, appId string, bannedRpauid string, bannedPduid string) *MonitorUpdateDataForRestricted

NewMonitorUpdateDataForRestricted instantiates a new MonitorUpdateDataForRestricted 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 NewMonitorUpdateDataForRestrictedWithDefaults

func NewMonitorUpdateDataForRestrictedWithDefaults() *MonitorUpdateDataForRestricted

NewMonitorUpdateDataForRestrictedWithDefaults instantiates a new MonitorUpdateDataForRestricted 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 (*MonitorUpdateDataForRestricted) GetAppId

func (o *MonitorUpdateDataForRestricted) GetAppId() string

GetAppId returns the AppId field value

func (*MonitorUpdateDataForRestricted) GetAppIdOk

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

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

func (*MonitorUpdateDataForRestricted) GetBannedPduid

func (o *MonitorUpdateDataForRestricted) GetBannedPduid() string

GetBannedPduid returns the BannedPduid field value

func (*MonitorUpdateDataForRestricted) GetBannedPduidOk

func (o *MonitorUpdateDataForRestricted) GetBannedPduidOk() (*string, bool)

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

func (*MonitorUpdateDataForRestricted) GetBannedRpauid

func (o *MonitorUpdateDataForRestricted) GetBannedRpauid() string

GetBannedRpauid returns the BannedRpauid field value

func (*MonitorUpdateDataForRestricted) GetBannedRpauidOk

func (o *MonitorUpdateDataForRestricted) GetBannedRpauidOk() (*string, bool)

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

func (*MonitorUpdateDataForRestricted) GetMonitorUpdateResultCallbackRef

func (o *MonitorUpdateDataForRestricted) GetMonitorUpdateResultCallbackRef() string

GetMonitorUpdateResultCallbackRef returns the MonitorUpdateResultCallbackRef field value if set, zero value otherwise.

func (*MonitorUpdateDataForRestricted) GetMonitorUpdateResultCallbackRefOk

func (o *MonitorUpdateDataForRestricted) GetMonitorUpdateResultCallbackRefOk() (*string, bool)

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

func (*MonitorUpdateDataForRestricted) GetProseRestrictedCode

func (o *MonitorUpdateDataForRestricted) GetProseRestrictedCode() string

GetProseRestrictedCode returns the ProseRestrictedCode field value

func (*MonitorUpdateDataForRestricted) GetProseRestrictedCodeOk

func (o *MonitorUpdateDataForRestricted) GetProseRestrictedCodeOk() (*string, bool)

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

func (*MonitorUpdateDataForRestricted) HasMonitorUpdateResultCallbackRef

func (o *MonitorUpdateDataForRestricted) HasMonitorUpdateResultCallbackRef() bool

HasMonitorUpdateResultCallbackRef returns a boolean if a field has been set.

func (MonitorUpdateDataForRestricted) MarshalJSON

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

func (*MonitorUpdateDataForRestricted) SetAppId

func (o *MonitorUpdateDataForRestricted) SetAppId(v string)

SetAppId sets field value

func (*MonitorUpdateDataForRestricted) SetBannedPduid

func (o *MonitorUpdateDataForRestricted) SetBannedPduid(v string)

SetBannedPduid sets field value

func (*MonitorUpdateDataForRestricted) SetBannedRpauid

func (o *MonitorUpdateDataForRestricted) SetBannedRpauid(v string)

SetBannedRpauid sets field value

func (*MonitorUpdateDataForRestricted) SetMonitorUpdateResultCallbackRef

func (o *MonitorUpdateDataForRestricted) SetMonitorUpdateResultCallbackRef(v string)

SetMonitorUpdateResultCallbackRef gets a reference to the given string and assigns it to the MonitorUpdateResultCallbackRef field.

func (*MonitorUpdateDataForRestricted) SetProseRestrictedCode

func (o *MonitorUpdateDataForRestricted) SetProseRestrictedCode(v string)

SetProseRestrictedCode sets field value

func (MonitorUpdateDataForRestricted) ToMap

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

type MonitorUpdateResult

type MonitorUpdateResult struct {
	DiscType DiscoveryType `json:"discType"`
	// Contains the ProSe Restricted Code.
	ProseRestrictedCode string `json:"proseRestrictedCode"`
	// Contains the Application ID.
	AppId string `json:"appId"`
	// Contains the RPAUID.
	BannedRpauid string `json:"bannedRpauid"`
	// Contains the PDUID.
	BannedPduid      string           `json:"bannedPduid"`
	RevocationResult RevocationResult `json:"revocationResult"`
}

MonitorUpdateResult Represents the monitoring revocation results.

func NewMonitorUpdateResult

func NewMonitorUpdateResult(discType DiscoveryType, proseRestrictedCode string, appId string, bannedRpauid string, bannedPduid string, revocationResult RevocationResult) *MonitorUpdateResult

NewMonitorUpdateResult instantiates a new MonitorUpdateResult 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 NewMonitorUpdateResultWithDefaults

func NewMonitorUpdateResultWithDefaults() *MonitorUpdateResult

NewMonitorUpdateResultWithDefaults instantiates a new MonitorUpdateResult 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 (*MonitorUpdateResult) GetAppId

func (o *MonitorUpdateResult) GetAppId() string

GetAppId returns the AppId field value

func (*MonitorUpdateResult) GetAppIdOk

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

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

func (*MonitorUpdateResult) GetBannedPduid

func (o *MonitorUpdateResult) GetBannedPduid() string

GetBannedPduid returns the BannedPduid field value

func (*MonitorUpdateResult) GetBannedPduidOk

func (o *MonitorUpdateResult) GetBannedPduidOk() (*string, bool)

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

func (*MonitorUpdateResult) GetBannedRpauid

func (o *MonitorUpdateResult) GetBannedRpauid() string

GetBannedRpauid returns the BannedRpauid field value

func (*MonitorUpdateResult) GetBannedRpauidOk

func (o *MonitorUpdateResult) GetBannedRpauidOk() (*string, bool)

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

func (*MonitorUpdateResult) GetDiscType

func (o *MonitorUpdateResult) GetDiscType() DiscoveryType

GetDiscType returns the DiscType field value

func (*MonitorUpdateResult) GetDiscTypeOk

func (o *MonitorUpdateResult) GetDiscTypeOk() (*DiscoveryType, bool)

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

func (*MonitorUpdateResult) GetProseRestrictedCode

func (o *MonitorUpdateResult) GetProseRestrictedCode() string

GetProseRestrictedCode returns the ProseRestrictedCode field value

func (*MonitorUpdateResult) GetProseRestrictedCodeOk

func (o *MonitorUpdateResult) GetProseRestrictedCodeOk() (*string, bool)

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

func (*MonitorUpdateResult) GetRevocationResult

func (o *MonitorUpdateResult) GetRevocationResult() RevocationResult

GetRevocationResult returns the RevocationResult field value

func (*MonitorUpdateResult) GetRevocationResultOk

func (o *MonitorUpdateResult) GetRevocationResultOk() (*RevocationResult, bool)

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

func (MonitorUpdateResult) MarshalJSON

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

func (*MonitorUpdateResult) SetAppId

func (o *MonitorUpdateResult) SetAppId(v string)

SetAppId sets field value

func (*MonitorUpdateResult) SetBannedPduid

func (o *MonitorUpdateResult) SetBannedPduid(v string)

SetBannedPduid sets field value

func (*MonitorUpdateResult) SetBannedRpauid

func (o *MonitorUpdateResult) SetBannedRpauid(v string)

SetBannedRpauid sets field value

func (*MonitorUpdateResult) SetDiscType

func (o *MonitorUpdateResult) SetDiscType(v DiscoveryType)

SetDiscType sets field value

func (*MonitorUpdateResult) SetProseRestrictedCode

func (o *MonitorUpdateResult) SetProseRestrictedCode(v string)

SetProseRestrictedCode sets field value

func (*MonitorUpdateResult) SetRevocationResult

func (o *MonitorUpdateResult) SetRevocationResult(v RevocationResult)

SetRevocationResult sets field value

func (MonitorUpdateResult) ToMap

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

type NFType

type NFType struct {
	String *string
}

NFType NF types known to NRF

func (*NFType) MarshalJSON

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

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

func (*NFType) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

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

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

func NewNullableAnnounceAuthReqData

func NewNullableAnnounceAuthReqData(val *AnnounceAuthReqData) *NullableAnnounceAuthReqData

func (NullableAnnounceAuthReqData) Get

func (NullableAnnounceAuthReqData) IsSet

func (NullableAnnounceAuthReqData) MarshalJSON

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

func (*NullableAnnounceAuthReqData) Set

func (*NullableAnnounceAuthReqData) UnmarshalJSON

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

func (*NullableAnnounceAuthReqData) Unset

func (v *NullableAnnounceAuthReqData) Unset()

type NullableAnnounceDiscDataForOpen

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

func (NullableAnnounceDiscDataForOpen) Get

func (NullableAnnounceDiscDataForOpen) IsSet

func (NullableAnnounceDiscDataForOpen) MarshalJSON

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

func (*NullableAnnounceDiscDataForOpen) Set

func (*NullableAnnounceDiscDataForOpen) UnmarshalJSON

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

func (*NullableAnnounceDiscDataForOpen) Unset

type NullableAnnounceDiscDataForRestricted

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

func (NullableAnnounceDiscDataForRestricted) Get

func (NullableAnnounceDiscDataForRestricted) IsSet

func (NullableAnnounceDiscDataForRestricted) MarshalJSON

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

func (*NullableAnnounceDiscDataForRestricted) Set

func (*NullableAnnounceDiscDataForRestricted) UnmarshalJSON

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

func (*NullableAnnounceDiscDataForRestricted) Unset

type NullableAnnounceUpdateData

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

func NewNullableAnnounceUpdateData

func NewNullableAnnounceUpdateData(val *AnnounceUpdateData) *NullableAnnounceUpdateData

func (NullableAnnounceUpdateData) Get

func (NullableAnnounceUpdateData) IsSet

func (v NullableAnnounceUpdateData) IsSet() bool

func (NullableAnnounceUpdateData) MarshalJSON

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

func (*NullableAnnounceUpdateData) Set

func (*NullableAnnounceUpdateData) UnmarshalJSON

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

func (*NullableAnnounceUpdateData) Unset

func (v *NullableAnnounceUpdateData) Unset()

type NullableAuthDataForRestricted

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

func (NullableAuthDataForRestricted) Get

func (NullableAuthDataForRestricted) IsSet

func (NullableAuthDataForRestricted) MarshalJSON

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

func (*NullableAuthDataForRestricted) Set

func (*NullableAuthDataForRestricted) UnmarshalJSON

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

func (*NullableAuthDataForRestricted) Unset

func (v *NullableAuthDataForRestricted) 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 NullableDiscDataForRestricted

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

func (NullableDiscDataForRestricted) Get

func (NullableDiscDataForRestricted) IsSet

func (NullableDiscDataForRestricted) MarshalJSON

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

func (*NullableDiscDataForRestricted) Set

func (*NullableDiscDataForRestricted) UnmarshalJSON

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

func (*NullableDiscDataForRestricted) Unset

func (v *NullableDiscDataForRestricted) Unset()

type NullableDiscoveryAuthReqData

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

func NewNullableDiscoveryAuthReqData

func NewNullableDiscoveryAuthReqData(val *DiscoveryAuthReqData) *NullableDiscoveryAuthReqData

func (NullableDiscoveryAuthReqData) Get

func (NullableDiscoveryAuthReqData) IsSet

func (NullableDiscoveryAuthReqData) MarshalJSON

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

func (*NullableDiscoveryAuthReqData) Set

func (*NullableDiscoveryAuthReqData) UnmarshalJSON

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

func (*NullableDiscoveryAuthReqData) Unset

func (v *NullableDiscoveryAuthReqData) Unset()

type NullableDiscoveryAuthRespData

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

func (NullableDiscoveryAuthRespData) Get

func (NullableDiscoveryAuthRespData) IsSet

func (NullableDiscoveryAuthRespData) MarshalJSON

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

func (*NullableDiscoveryAuthRespData) Set

func (*NullableDiscoveryAuthRespData) UnmarshalJSON

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

func (*NullableDiscoveryAuthRespData) Unset

func (v *NullableDiscoveryAuthRespData) Unset()

type NullableDiscoveryType

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

func NewNullableDiscoveryType

func NewNullableDiscoveryType(val *DiscoveryType) *NullableDiscoveryType

func (NullableDiscoveryType) Get

func (NullableDiscoveryType) IsSet

func (v NullableDiscoveryType) IsSet() bool

func (NullableDiscoveryType) MarshalJSON

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

func (*NullableDiscoveryType) Set

func (v *NullableDiscoveryType) Set(val *DiscoveryType)

func (*NullableDiscoveryType) UnmarshalJSON

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

func (*NullableDiscoveryType) Unset

func (v *NullableDiscoveryType) 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 NullableMatchInfoForOpen

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

func NewNullableMatchInfoForOpen

func NewNullableMatchInfoForOpen(val *MatchInfoForOpen) *NullableMatchInfoForOpen

func (NullableMatchInfoForOpen) Get

func (NullableMatchInfoForOpen) IsSet

func (v NullableMatchInfoForOpen) IsSet() bool

func (NullableMatchInfoForOpen) MarshalJSON

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

func (*NullableMatchInfoForOpen) Set

func (*NullableMatchInfoForOpen) UnmarshalJSON

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

func (*NullableMatchInfoForOpen) Unset

func (v *NullableMatchInfoForOpen) Unset()

type NullableMatchInfoForRestricted

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

func (NullableMatchInfoForRestricted) Get

func (NullableMatchInfoForRestricted) IsSet

func (NullableMatchInfoForRestricted) MarshalJSON

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

func (*NullableMatchInfoForRestricted) Set

func (*NullableMatchInfoForRestricted) UnmarshalJSON

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

func (*NullableMatchInfoForRestricted) Unset

func (v *NullableMatchInfoForRestricted) Unset()

type NullableMatchInformation

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

func NewNullableMatchInformation

func NewNullableMatchInformation(val *MatchInformation) *NullableMatchInformation

func (NullableMatchInformation) Get

func (NullableMatchInformation) IsSet

func (v NullableMatchInformation) IsSet() bool

func (NullableMatchInformation) MarshalJSON

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

func (*NullableMatchInformation) Set

func (*NullableMatchInformation) UnmarshalJSON

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

func (*NullableMatchInformation) Unset

func (v *NullableMatchInformation) Unset()

type NullableMatchReportReqData

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

func NewNullableMatchReportReqData

func NewNullableMatchReportReqData(val *MatchReportReqData) *NullableMatchReportReqData

func (NullableMatchReportReqData) Get

func (NullableMatchReportReqData) IsSet

func (v NullableMatchReportReqData) IsSet() bool

func (NullableMatchReportReqData) MarshalJSON

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

func (*NullableMatchReportReqData) Set

func (*NullableMatchReportReqData) UnmarshalJSON

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

func (*NullableMatchReportReqData) Unset

func (v *NullableMatchReportReqData) Unset()

type NullableMatchReportRespData

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

func NewNullableMatchReportRespData

func NewNullableMatchReportRespData(val *MatchReportRespData) *NullableMatchReportRespData

func (NullableMatchReportRespData) Get

func (NullableMatchReportRespData) IsSet

func (NullableMatchReportRespData) MarshalJSON

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

func (*NullableMatchReportRespData) Set

func (*NullableMatchReportRespData) UnmarshalJSON

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

func (*NullableMatchReportRespData) Unset

func (v *NullableMatchReportRespData) Unset()

type NullableMonitorAuthDataForOpen

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

func (NullableMonitorAuthDataForOpen) Get

func (NullableMonitorAuthDataForOpen) IsSet

func (NullableMonitorAuthDataForOpen) MarshalJSON

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

func (*NullableMonitorAuthDataForOpen) Set

func (*NullableMonitorAuthDataForOpen) UnmarshalJSON

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

func (*NullableMonitorAuthDataForOpen) Unset

func (v *NullableMonitorAuthDataForOpen) Unset()

type NullableMonitorAuthDataForRestricted

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

func (NullableMonitorAuthDataForRestricted) Get

func (NullableMonitorAuthDataForRestricted) IsSet

func (NullableMonitorAuthDataForRestricted) MarshalJSON

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

func (*NullableMonitorAuthDataForRestricted) Set

func (*NullableMonitorAuthDataForRestricted) UnmarshalJSON

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

func (*NullableMonitorAuthDataForRestricted) Unset

type NullableMonitorAuthReqData

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

func NewNullableMonitorAuthReqData

func NewNullableMonitorAuthReqData(val *MonitorAuthReqData) *NullableMonitorAuthReqData

func (NullableMonitorAuthReqData) Get

func (NullableMonitorAuthReqData) IsSet

func (v NullableMonitorAuthReqData) IsSet() bool

func (NullableMonitorAuthReqData) MarshalJSON

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

func (*NullableMonitorAuthReqData) Set

func (*NullableMonitorAuthReqData) UnmarshalJSON

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

func (*NullableMonitorAuthReqData) Unset

func (v *NullableMonitorAuthReqData) Unset()

type NullableMonitorAuthRespData

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

func NewNullableMonitorAuthRespData

func NewNullableMonitorAuthRespData(val *MonitorAuthRespData) *NullableMonitorAuthRespData

func (NullableMonitorAuthRespData) Get

func (NullableMonitorAuthRespData) IsSet

func (NullableMonitorAuthRespData) MarshalJSON

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

func (*NullableMonitorAuthRespData) Set

func (*NullableMonitorAuthRespData) UnmarshalJSON

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

func (*NullableMonitorAuthRespData) Unset

func (v *NullableMonitorAuthRespData) Unset()

type NullableMonitorDiscDataForOpen

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

func (NullableMonitorDiscDataForOpen) Get

func (NullableMonitorDiscDataForOpen) IsSet

func (NullableMonitorDiscDataForOpen) MarshalJSON

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

func (*NullableMonitorDiscDataForOpen) Set

func (*NullableMonitorDiscDataForOpen) UnmarshalJSON

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

func (*NullableMonitorDiscDataForOpen) Unset

func (v *NullableMonitorDiscDataForOpen) Unset()

type NullableMonitorDiscDataForRestricted

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

func (NullableMonitorDiscDataForRestricted) Get

func (NullableMonitorDiscDataForRestricted) IsSet

func (NullableMonitorDiscDataForRestricted) MarshalJSON

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

func (*NullableMonitorDiscDataForRestricted) Set

func (*NullableMonitorDiscDataForRestricted) UnmarshalJSON

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

func (*NullableMonitorDiscDataForRestricted) Unset

type NullableMonitorUpdateData

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

func NewNullableMonitorUpdateData

func NewNullableMonitorUpdateData(val *MonitorUpdateData) *NullableMonitorUpdateData

func (NullableMonitorUpdateData) Get

func (NullableMonitorUpdateData) IsSet

func (v NullableMonitorUpdateData) IsSet() bool

func (NullableMonitorUpdateData) MarshalJSON

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

func (*NullableMonitorUpdateData) Set

func (*NullableMonitorUpdateData) UnmarshalJSON

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

func (*NullableMonitorUpdateData) Unset

func (v *NullableMonitorUpdateData) Unset()

type NullableMonitorUpdateDataForOpen

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

func (NullableMonitorUpdateDataForOpen) Get

func (NullableMonitorUpdateDataForOpen) IsSet

func (NullableMonitorUpdateDataForOpen) MarshalJSON

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

func (*NullableMonitorUpdateDataForOpen) Set

func (*NullableMonitorUpdateDataForOpen) UnmarshalJSON

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

func (*NullableMonitorUpdateDataForOpen) Unset

type NullableMonitorUpdateDataForRestricted

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

func (NullableMonitorUpdateDataForRestricted) Get

func (NullableMonitorUpdateDataForRestricted) IsSet

func (NullableMonitorUpdateDataForRestricted) MarshalJSON

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

func (*NullableMonitorUpdateDataForRestricted) Set

func (*NullableMonitorUpdateDataForRestricted) UnmarshalJSON

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

func (*NullableMonitorUpdateDataForRestricted) Unset

type NullableMonitorUpdateResult

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

func NewNullableMonitorUpdateResult

func NewNullableMonitorUpdateResult(val *MonitorUpdateResult) *NullableMonitorUpdateResult

func (NullableMonitorUpdateResult) Get

func (NullableMonitorUpdateResult) IsSet

func (NullableMonitorUpdateResult) MarshalJSON

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

func (*NullableMonitorUpdateResult) Set

func (*NullableMonitorUpdateResult) UnmarshalJSON

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

func (*NullableMonitorUpdateResult) Unset

func (v *NullableMonitorUpdateResult) 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 NullablePatchResult

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

func NewNullablePatchResult

func NewNullablePatchResult(val *PatchResult) *NullablePatchResult

func (NullablePatchResult) Get

func (NullablePatchResult) IsSet

func (v NullablePatchResult) IsSet() bool

func (NullablePatchResult) MarshalJSON

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

func (*NullablePatchResult) Set

func (v *NullablePatchResult) Set(val *PatchResult)

func (*NullablePatchResult) UnmarshalJSON

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

func (*NullablePatchResult) Unset

func (v *NullablePatchResult) 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 NullableProseAppCodeSuffixRange

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

func (NullableProseAppCodeSuffixRange) Get

func (NullableProseAppCodeSuffixRange) IsSet

func (NullableProseAppCodeSuffixRange) MarshalJSON

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

func (*NullableProseAppCodeSuffixRange) Set

func (*NullableProseAppCodeSuffixRange) UnmarshalJSON

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

func (*NullableProseAppCodeSuffixRange) Unset

type NullableProseApplicationCodeSuffixPool

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

func (NullableProseApplicationCodeSuffixPool) Get

func (NullableProseApplicationCodeSuffixPool) IsSet

func (NullableProseApplicationCodeSuffixPool) MarshalJSON

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

func (*NullableProseApplicationCodeSuffixPool) Set

func (*NullableProseApplicationCodeSuffixPool) UnmarshalJSON

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

func (*NullableProseApplicationCodeSuffixPool) 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 NullableReportItem

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

func NewNullableReportItem

func NewNullableReportItem(val *ReportItem) *NullableReportItem

func (NullableReportItem) Get

func (v NullableReportItem) Get() *ReportItem

func (NullableReportItem) IsSet

func (v NullableReportItem) IsSet() bool

func (NullableReportItem) MarshalJSON

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

func (*NullableReportItem) Set

func (v *NullableReportItem) Set(val *ReportItem)

func (*NullableReportItem) UnmarshalJSON

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

func (*NullableReportItem) Unset

func (v *NullableReportItem) Unset()

type NullableRestrictedCodeSuffixPool

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

func (NullableRestrictedCodeSuffixPool) Get

func (NullableRestrictedCodeSuffixPool) IsSet

func (NullableRestrictedCodeSuffixPool) MarshalJSON

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

func (*NullableRestrictedCodeSuffixPool) Set

func (*NullableRestrictedCodeSuffixPool) UnmarshalJSON

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

func (*NullableRestrictedCodeSuffixPool) Unset

type NullableRestrictedCodeSuffixRange

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

func (NullableRestrictedCodeSuffixRange) Get

func (NullableRestrictedCodeSuffixRange) IsSet

func (NullableRestrictedCodeSuffixRange) MarshalJSON

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

func (*NullableRestrictedCodeSuffixRange) Set

func (*NullableRestrictedCodeSuffixRange) UnmarshalJSON

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

func (*NullableRestrictedCodeSuffixRange) Unset

type NullableRevocationResult

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

func NewNullableRevocationResult

func NewNullableRevocationResult(val *RevocationResult) *NullableRevocationResult

func (NullableRevocationResult) Get

func (NullableRevocationResult) IsSet

func (v NullableRevocationResult) IsSet() bool

func (NullableRevocationResult) MarshalJSON

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

func (*NullableRevocationResult) Set

func (*NullableRevocationResult) UnmarshalJSON

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

func (*NullableRevocationResult) Unset

func (v *NullableRevocationResult) 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 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 ObtainTheAuthorizationForADiscovererUEApiService

type ObtainTheAuthorizationForADiscovererUEApiService service

ObtainTheAuthorizationForADiscovererUEApiService ObtainTheAuthorizationForADiscovererUEApi service

func (*ObtainTheAuthorizationForADiscovererUEApiService) ObtainDiscAuth

ObtainDiscAuth Obtain the authorization from the 5G DDNMF for a discoverer UE in the PLMN to operate Model B restricted discovery

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param ueId Identifier of the UE
@param discEntryId Discovery Entry Id
@return ApiObtainDiscAuthRequest

func (*ObtainTheAuthorizationForADiscovererUEApiService) ObtainDiscAuthExecute

Execute executes the request

@return DiscoveryAuthRespData

type ObtainTheAuthorizationToAnnounceForAUEApiService

type ObtainTheAuthorizationToAnnounceForAUEApiService service

ObtainTheAuthorizationToAnnounceForAUEApiService ObtainTheAuthorizationToAnnounceForAUEApi service

func (*ObtainTheAuthorizationToAnnounceForAUEApiService) ObtainAnnounceAuth

ObtainAnnounceAuth Obtain the authorization to announce for a UE

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param ueId Identifier of the UE
@param discEntryId Discovery Entry Id
@return ApiObtainAnnounceAuthRequest

func (*ObtainTheAuthorizationToAnnounceForAUEApiService) ObtainAnnounceAuthExecute

Execute executes the request

type ObtainTheAuthorizationToMonitorForAUEApiService

type ObtainTheAuthorizationToMonitorForAUEApiService service

ObtainTheAuthorizationToMonitorForAUEApiService ObtainTheAuthorizationToMonitorForAUEApi service

func (*ObtainTheAuthorizationToMonitorForAUEApiService) ObtainMonitorAuth

ObtainMonitorAuth Obtain the authorization to monitor for a UE

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param ueId Identifier of the UE
@param discEntryId Discovery Entry Id
@return ApiObtainMonitorAuthRequest

func (*ObtainTheAuthorizationToMonitorForAUEApiService) ObtainMonitorAuthExecute

Execute executes the request

@return MonitorAuthRespData

type ObtainTheInformationAboutTheIndicatedDiscoveryCodeApiService

type ObtainTheInformationAboutTheIndicatedDiscoveryCodeApiService service

ObtainTheInformationAboutTheIndicatedDiscoveryCodeApiService ObtainTheInformationAboutTheIndicatedDiscoveryCodeApi service

func (*ObtainTheInformationAboutTheIndicatedDiscoveryCodeApiService) MatchReport

MatchReport Obtain the information about the indicated discovery code from the 5G DDNMF

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param ueId Identifier of the UE
@return ApiMatchReportRequest

func (*ObtainTheInformationAboutTheIndicatedDiscoveryCodeApiService) MatchReportExecute

Execute executes the request

@return MatchReportRespData

type PatchResult

type PatchResult struct {
	// The execution report contains an array of report items. Each report item indicates one  failed modification.
	Report []ReportItem `json:"report"`
}

PatchResult The execution report result on failed modification.

func NewPatchResult

func NewPatchResult(report []ReportItem) *PatchResult

NewPatchResult instantiates a new PatchResult 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 NewPatchResultWithDefaults

func NewPatchResultWithDefaults() *PatchResult

NewPatchResultWithDefaults instantiates a new PatchResult 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 (*PatchResult) GetReport

func (o *PatchResult) GetReport() []ReportItem

GetReport returns the Report field value

func (*PatchResult) GetReportOk

func (o *PatchResult) GetReportOk() ([]ReportItem, bool)

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

func (PatchResult) MarshalJSON

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

func (*PatchResult) SetReport

func (o *PatchResult) SetReport(v []ReportItem)

SetReport sets field value

func (PatchResult) ToMap

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

type PlmnIdNid

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

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

func NewPlmnIdNid

func NewPlmnIdNid(mcc string, mnc string) *PlmnIdNid

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

func NewPlmnIdNidWithDefaults

func NewPlmnIdNidWithDefaults() *PlmnIdNid

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

func (*PlmnIdNid) GetMcc

func (o *PlmnIdNid) GetMcc() string

GetMcc returns the Mcc field value

func (*PlmnIdNid) GetMccOk

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

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

func (*PlmnIdNid) GetMnc

func (o *PlmnIdNid) GetMnc() string

GetMnc returns the Mnc field value

func (*PlmnIdNid) GetMncOk

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

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

func (*PlmnIdNid) GetNid

func (o *PlmnIdNid) GetNid() string

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

func (*PlmnIdNid) GetNidOk

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

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

func (*PlmnIdNid) HasNid

func (o *PlmnIdNid) HasNid() bool

HasNid returns a boolean if a field has been set.

func (PlmnIdNid) MarshalJSON

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

func (*PlmnIdNid) SetMcc

func (o *PlmnIdNid) SetMcc(v string)

SetMcc sets field value

func (*PlmnIdNid) SetMnc

func (o *PlmnIdNid) SetMnc(v string)

SetMnc sets field value

func (*PlmnIdNid) SetNid

func (o *PlmnIdNid) SetNid(v string)

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

func (PlmnIdNid) ToMap

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

type ProblemDetails

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

ProblemDetails Provides additional information in an error response.

func NewProblemDetails

func NewProblemDetails() *ProblemDetails

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

func NewProblemDetailsWithDefaults

func NewProblemDetailsWithDefaults() *ProblemDetails

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

func (*ProblemDetails) GetAccessTokenError

func (o *ProblemDetails) GetAccessTokenError() AccessTokenErr

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

func (*ProblemDetails) GetAccessTokenErrorOk

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

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

func (*ProblemDetails) GetAccessTokenRequest

func (o *ProblemDetails) GetAccessTokenRequest() AccessTokenReq

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

func (*ProblemDetails) GetAccessTokenRequestOk

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

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

func (*ProblemDetails) GetCause

func (o *ProblemDetails) GetCause() string

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

func (*ProblemDetails) GetCauseOk

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

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

func (*ProblemDetails) GetDetail

func (o *ProblemDetails) GetDetail() string

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

func (*ProblemDetails) GetDetailOk

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

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

func (*ProblemDetails) GetInstance

func (o *ProblemDetails) GetInstance() string

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

func (*ProblemDetails) GetInstanceOk

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

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

func (*ProblemDetails) GetInvalidParams

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

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

func (*ProblemDetails) GetInvalidParamsOk

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

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

func (*ProblemDetails) GetNrfId

func (o *ProblemDetails) GetNrfId() string

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

func (*ProblemDetails) GetNrfIdOk

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

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

func (*ProblemDetails) GetStatus

func (o *ProblemDetails) GetStatus() int32

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

func (*ProblemDetails) GetStatusOk

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

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

func (*ProblemDetails) GetSupportedApiVersions

func (o *ProblemDetails) GetSupportedApiVersions() []string

GetSupportedApiVersions returns the SupportedApiVersions field value if set, zero value otherwise.

func (*ProblemDetails) GetSupportedApiVersionsOk

func (o *ProblemDetails) GetSupportedApiVersionsOk() ([]string, bool)

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

func (*ProblemDetails) GetSupportedFeatures

func (o *ProblemDetails) GetSupportedFeatures() string

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

func (*ProblemDetails) GetSupportedFeaturesOk

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

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

func (*ProblemDetails) GetTitle

func (o *ProblemDetails) GetTitle() string

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

func (*ProblemDetails) GetTitleOk

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

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

func (*ProblemDetails) GetType

func (o *ProblemDetails) GetType() string

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

func (*ProblemDetails) GetTypeOk

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

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

func (*ProblemDetails) HasAccessTokenError

func (o *ProblemDetails) HasAccessTokenError() bool

HasAccessTokenError returns a boolean if a field has been set.

func (*ProblemDetails) HasAccessTokenRequest

func (o *ProblemDetails) HasAccessTokenRequest() bool

HasAccessTokenRequest returns a boolean if a field has been set.

func (*ProblemDetails) HasCause

func (o *ProblemDetails) HasCause() bool

HasCause returns a boolean if a field has been set.

func (*ProblemDetails) HasDetail

func (o *ProblemDetails) HasDetail() bool

HasDetail returns a boolean if a field has been set.

func (*ProblemDetails) HasInstance

func (o *ProblemDetails) HasInstance() bool

HasInstance returns a boolean if a field has been set.

func (*ProblemDetails) HasInvalidParams

func (o *ProblemDetails) HasInvalidParams() bool

HasInvalidParams returns a boolean if a field has been set.

func (*ProblemDetails) HasNrfId

func (o *ProblemDetails) HasNrfId() bool

HasNrfId returns a boolean if a field has been set.

func (*ProblemDetails) HasStatus

func (o *ProblemDetails) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*ProblemDetails) HasSupportedApiVersions

func (o *ProblemDetails) HasSupportedApiVersions() bool

HasSupportedApiVersions returns a boolean if a field has been set.

func (*ProblemDetails) HasSupportedFeatures

func (o *ProblemDetails) HasSupportedFeatures() bool

HasSupportedFeatures returns a boolean if a field has been set.

func (*ProblemDetails) HasTitle

func (o *ProblemDetails) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*ProblemDetails) HasType

func (o *ProblemDetails) HasType() bool

HasType returns a boolean if a field has been set.

func (ProblemDetails) MarshalJSON

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

func (*ProblemDetails) SetAccessTokenError

func (o *ProblemDetails) SetAccessTokenError(v AccessTokenErr)

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

func (*ProblemDetails) SetAccessTokenRequest

func (o *ProblemDetails) SetAccessTokenRequest(v AccessTokenReq)

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

func (*ProblemDetails) SetCause

func (o *ProblemDetails) SetCause(v string)

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

func (*ProblemDetails) SetDetail

func (o *ProblemDetails) SetDetail(v string)

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

func (*ProblemDetails) SetInstance

func (o *ProblemDetails) SetInstance(v string)

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

func (*ProblemDetails) SetInvalidParams

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

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

func (*ProblemDetails) SetNrfId

func (o *ProblemDetails) SetNrfId(v string)

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

func (*ProblemDetails) SetStatus

func (o *ProblemDetails) SetStatus(v int32)

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

func (*ProblemDetails) SetSupportedApiVersions

func (o *ProblemDetails) SetSupportedApiVersions(v []string)

SetSupportedApiVersions gets a reference to the given []string and assigns it to the SupportedApiVersions field.

func (*ProblemDetails) SetSupportedFeatures

func (o *ProblemDetails) SetSupportedFeatures(v string)

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

func (*ProblemDetails) SetTitle

func (o *ProblemDetails) SetTitle(v string)

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

func (*ProblemDetails) SetType

func (o *ProblemDetails) SetType(v string)

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

func (ProblemDetails) ToMap

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

type ProseAppCodeSuffixRange

type ProseAppCodeSuffixRange struct {
	// Contains the ProSe Application Code Suffix.
	BeginningSuffix string `json:"beginningSuffix"`
	// Contains the ProSe Application Code Suffix.
	EndingSuffix string `json:"endingSuffix"`
}

ProseAppCodeSuffixRange Contains a range of the Prose Application Code Suffixes which are consecutive.

func NewProseAppCodeSuffixRange

func NewProseAppCodeSuffixRange(beginningSuffix string, endingSuffix string) *ProseAppCodeSuffixRange

NewProseAppCodeSuffixRange instantiates a new ProseAppCodeSuffixRange 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 NewProseAppCodeSuffixRangeWithDefaults

func NewProseAppCodeSuffixRangeWithDefaults() *ProseAppCodeSuffixRange

NewProseAppCodeSuffixRangeWithDefaults instantiates a new ProseAppCodeSuffixRange 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 (*ProseAppCodeSuffixRange) GetBeginningSuffix

func (o *ProseAppCodeSuffixRange) GetBeginningSuffix() string

GetBeginningSuffix returns the BeginningSuffix field value

func (*ProseAppCodeSuffixRange) GetBeginningSuffixOk

func (o *ProseAppCodeSuffixRange) GetBeginningSuffixOk() (*string, bool)

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

func (*ProseAppCodeSuffixRange) GetEndingSuffix

func (o *ProseAppCodeSuffixRange) GetEndingSuffix() string

GetEndingSuffix returns the EndingSuffix field value

func (*ProseAppCodeSuffixRange) GetEndingSuffixOk

func (o *ProseAppCodeSuffixRange) GetEndingSuffixOk() (*string, bool)

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

func (ProseAppCodeSuffixRange) MarshalJSON

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

func (*ProseAppCodeSuffixRange) SetBeginningSuffix

func (o *ProseAppCodeSuffixRange) SetBeginningSuffix(v string)

SetBeginningSuffix sets field value

func (*ProseAppCodeSuffixRange) SetEndingSuffix

func (o *ProseAppCodeSuffixRange) SetEndingSuffix(v string)

SetEndingSuffix sets field value

func (ProseAppCodeSuffixRange) ToMap

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

type ProseApplicationCodeSuffixPool

type ProseApplicationCodeSuffixPool struct {
	Interface *interface{}
}

ProseApplicationCodeSuffixPool Contains the Prose Application Code Suffix Pool.

func (*ProseApplicationCodeSuffixPool) MarshalJSON

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

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

func (*ProseApplicationCodeSuffixPool) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

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 ReportItem

type ReportItem struct {
	// Contains a JSON pointer value (as defined in IETF RFC 6901) that references a  location of a resource to which the modification is subject.
	Path string `json:"path"`
	// A human-readable reason providing details on the reported modification failure.  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"`
}

ReportItem indicates performed modivications.

func NewReportItem

func NewReportItem(path string) *ReportItem

NewReportItem instantiates a new ReportItem 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 NewReportItemWithDefaults

func NewReportItemWithDefaults() *ReportItem

NewReportItemWithDefaults instantiates a new ReportItem 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 (*ReportItem) GetPath

func (o *ReportItem) GetPath() string

GetPath returns the Path field value

func (*ReportItem) GetPathOk

func (o *ReportItem) GetPathOk() (*string, bool)

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

func (*ReportItem) GetReason

func (o *ReportItem) GetReason() string

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

func (*ReportItem) GetReasonOk

func (o *ReportItem) 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 (*ReportItem) HasReason

func (o *ReportItem) HasReason() bool

HasReason returns a boolean if a field has been set.

func (ReportItem) MarshalJSON

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

func (*ReportItem) SetPath

func (o *ReportItem) SetPath(v string)

SetPath sets field value

func (*ReportItem) SetReason

func (o *ReportItem) SetReason(v string)

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

func (ReportItem) ToMap

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

type RestrictedCodeSuffixPool

type RestrictedCodeSuffixPool struct {
	Interface *interface{}
}

RestrictedCodeSuffixPool Contains the Restricted Code Suffix Pool.

func (*RestrictedCodeSuffixPool) MarshalJSON

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

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

func (*RestrictedCodeSuffixPool) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type RestrictedCodeSuffixRange

type RestrictedCodeSuffixRange struct {
	// Contains the ProSe Restricted Code Suffix.
	BeginningSuffix string `json:"beginningSuffix"`
	// Contains the ProSe Restricted Code Suffix.
	EndingSuffix string `json:"endingSuffix"`
}

RestrictedCodeSuffixRange Contains a range of the Restricted Code Suffixes which are consecutive.

func NewRestrictedCodeSuffixRange

func NewRestrictedCodeSuffixRange(beginningSuffix string, endingSuffix string) *RestrictedCodeSuffixRange

NewRestrictedCodeSuffixRange instantiates a new RestrictedCodeSuffixRange 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 NewRestrictedCodeSuffixRangeWithDefaults

func NewRestrictedCodeSuffixRangeWithDefaults() *RestrictedCodeSuffixRange

NewRestrictedCodeSuffixRangeWithDefaults instantiates a new RestrictedCodeSuffixRange 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 (*RestrictedCodeSuffixRange) GetBeginningSuffix

func (o *RestrictedCodeSuffixRange) GetBeginningSuffix() string

GetBeginningSuffix returns the BeginningSuffix field value

func (*RestrictedCodeSuffixRange) GetBeginningSuffixOk

func (o *RestrictedCodeSuffixRange) GetBeginningSuffixOk() (*string, bool)

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

func (*RestrictedCodeSuffixRange) GetEndingSuffix

func (o *RestrictedCodeSuffixRange) GetEndingSuffix() string

GetEndingSuffix returns the EndingSuffix field value

func (*RestrictedCodeSuffixRange) GetEndingSuffixOk

func (o *RestrictedCodeSuffixRange) GetEndingSuffixOk() (*string, bool)

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

func (RestrictedCodeSuffixRange) MarshalJSON

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

func (*RestrictedCodeSuffixRange) SetBeginningSuffix

func (o *RestrictedCodeSuffixRange) SetBeginningSuffix(v string)

SetBeginningSuffix sets field value

func (*RestrictedCodeSuffixRange) SetEndingSuffix

func (o *RestrictedCodeSuffixRange) SetEndingSuffix(v string)

SetEndingSuffix sets field value

func (RestrictedCodeSuffixRange) ToMap

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

type RevocationResult

type RevocationResult struct {
	String *string
}

RevocationResult Possible values are - SUCCESSFUL: The Monitoring Revocation is successful. - FAILED: The Monitoring Revocation is failed.

func (*RevocationResult) MarshalJSON

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

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

func (*RevocationResult) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type ServerConfiguration

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

ServerConfiguration stores the information about a server

type ServerConfigurations

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL

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

URL formats template on a index using given variables

type ServerVariable

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

ServerVariable stores the information about a server variable

type Snssai

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

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

func NewSnssai

func NewSnssai(sst int32) *Snssai

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

func NewSnssaiWithDefaults

func NewSnssaiWithDefaults() *Snssai

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

func (*Snssai) GetSd

func (o *Snssai) GetSd() string

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

func (*Snssai) GetSdOk

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

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

func (*Snssai) GetSst

func (o *Snssai) GetSst() int32

GetSst returns the Sst field value

func (*Snssai) GetSstOk

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

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

func (*Snssai) HasSd

func (o *Snssai) HasSd() bool

HasSd returns a boolean if a field has been set.

func (Snssai) MarshalJSON

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

func (*Snssai) SetSd

func (o *Snssai) SetSd(v string)

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

func (*Snssai) SetSst

func (o *Snssai) SetSst(v int32)

SetSst sets field value

func (Snssai) ToMap

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

type UpdateTheAuthorizationForAnnouncingForAUEApiService

type UpdateTheAuthorizationForAnnouncingForAUEApiService service

UpdateTheAuthorizationForAnnouncingForAUEApiService UpdateTheAuthorizationForAnnouncingForAUEApi service

func (*UpdateTheAuthorizationForAnnouncingForAUEApiService) UpdateAnnounceAuth

UpdateAnnounceAuth Update the authorization for announcing for a UE

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param ueId Identifier of the UE
@param discEntryId Discovery Entry Id
@return ApiUpdateAnnounceAuthRequest

func (*UpdateTheAuthorizationForAnnouncingForAUEApiService) UpdateAnnounceAuthExecute

Execute executes the request

@return PatchResult

type UpdateTheAuthorizationForMonitoringForAUEApiService

type UpdateTheAuthorizationForMonitoringForAUEApiService service

UpdateTheAuthorizationForMonitoringForAUEApiService UpdateTheAuthorizationForMonitoringForAUEApi service

func (*UpdateTheAuthorizationForMonitoringForAUEApiService) UpdateMonitorAuth

UpdateMonitorAuth Update the authorization for monitoring for a UE

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param ueId Identifier of the UE
@param discEntryId Discovery Entry Id
@return ApiUpdateMonitorAuthRequest

func (*UpdateTheAuthorizationForMonitoringForAUEApiService) UpdateMonitorAuthExecute

Execute executes the request

@return PatchResult

Source Files

Jump to

Keyboard shortcuts

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