mt

package
v0.0.0-...-b1a38c4 Latest Latest
Warning

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

Go to latest
Published: Feb 26, 2024 License: Apache-2.0 Imports: 52 Imported by: 0

Documentation

Overview

Package mt provides primitives to interact with the openapi HTTP API.

Code generated by github.com/deepmap/oapi-codegen/v2 version v2.0.1-0.20240123090344-d326c01d279a DO NOT EDIT.

Index

Constants

View Source
const (
	OAuth2ClientCredentialsScopes = "oAuth2ClientCredentials.Scopes"
)

Variables

This section is empty.

Functions

func GetKinOpenApi3Document

func GetKinOpenApi3Document() (*openapi3.T, error)

func GetKinOpenApi3DocumentMust

func GetKinOpenApi3DocumentMust() *openapi3.T

func NewProvideLocationInfoRequest

func NewProvideLocationInfoRequest(server string, supi externalRef2.Supi, body ProvideLocationInfoJSONRequestBody) (*http.Request, error)

NewProvideLocationInfoRequest calls the generic ProvideLocationInfo builder with application/json body

func NewProvideLocationInfoRequestWithBody

func NewProvideLocationInfoRequestWithBody(server string, supi externalRef2.Supi, contentType string, body io.Reader) (*http.Request, error)

NewProvideLocationInfoRequestWithBody generates requests for ProvideLocationInfo with any type of body

func NewQueryUeInfoRequest

func NewQueryUeInfoRequest(server string, supi externalRef2.Supi, params *QueryUeInfoParams) (*http.Request, error)

NewQueryUeInfoRequest generates requests for QueryUeInfo

func RegisterHandlers

func RegisterHandlers(router gin.IRouter, si ServerInterface)

RegisterHandlers creates http.Handler with routing matching OpenAPI spec.

func RegisterHandlersWithOptions

func RegisterHandlersWithOptions(router gin.IRouter, si ServerInterface, options GinServerOptions)

RegisterHandlersWithOptions creates http.Handler with additional options

Types

type Client

type Client struct {
	// The endpoint of the server conforming to this interface, with scheme,
	// https://api.deepmap.com for example. This can contain a path relative
	// to the server, such as https://api.deepmap.com/dev-test, and all the
	// paths in the swagger spec will be appended to the server.
	Server string

	// Doer for performing requests, typically a *http.Client with any
	// customized settings, such as certificate chains.
	Client HttpRequestDoer

	// A list of callbacks for modifying requests which are generated before sending over
	// the network.
	RequestEditors []RequestEditorFn
}

Client which conforms to the OpenAPI3 specification for this service.

func NewClient

func NewClient(server string, opts ...ClientOption) (*Client, error)

Creates a new Client, with reasonable defaults

func (*Client) ProvideLocationInfo

func (c *Client) ProvideLocationInfo(ctx context.Context, supi externalRef2.Supi, body ProvideLocationInfoJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProvideLocationInfoWithBody

func (c *Client) ProvideLocationInfoWithBody(ctx context.Context, supi externalRef2.Supi, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) QueryUeInfo

func (c *Client) QueryUeInfo(ctx context.Context, supi externalRef2.Supi, params *QueryUeInfoParams, reqEditors ...RequestEditorFn) (*http.Response, error)

type ClientInterface

type ClientInterface interface {
	// QueryUeInfo request
	QueryUeInfo(ctx context.Context, supi externalRef2.Supi, params *QueryUeInfoParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ProvideLocationInfoWithBody request with any body
	ProvideLocationInfoWithBody(ctx context.Context, supi externalRef2.Supi, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	ProvideLocationInfo(ctx context.Context, supi externalRef2.Supi, body ProvideLocationInfoJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
}

The interface specification for the client above.

type ClientOption

type ClientOption func(*Client) error

ClientOption allows setting custom parameters during construction

func WithBaseURL

func WithBaseURL(baseURL string) ClientOption

WithBaseURL overrides the baseURL.

func WithHTTPClient

func WithHTTPClient(doer HttpRequestDoer) ClientOption

WithHTTPClient allows overriding the default Doer, which is automatically created using http.Client. This is useful for tests.

func WithRequestEditorFn

func WithRequestEditorFn(fn RequestEditorFn) ClientOption

WithRequestEditorFn allows setting up a callback function, which will be called right before sending the request. This can be used to mutate the request.

type ClientWithResponses

type ClientWithResponses struct {
	ClientInterface
}

ClientWithResponses builds on ClientInterface to offer response payloads

func NewClientWithResponses

func NewClientWithResponses(server string, opts ...ClientOption) (*ClientWithResponses, error)

NewClientWithResponses creates a new ClientWithResponses, which wraps Client with return type handling

func (*ClientWithResponses) ProvideLocationInfoWithBodyWithResponse

func (c *ClientWithResponses) ProvideLocationInfoWithBodyWithResponse(ctx context.Context, supi externalRef2.Supi, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ProvideLocationInfoResponse, error)

ProvideLocationInfoWithBodyWithResponse request with arbitrary body returning *ProvideLocationInfoResponse

func (*ClientWithResponses) ProvideLocationInfoWithResponse

func (c *ClientWithResponses) ProvideLocationInfoWithResponse(ctx context.Context, supi externalRef2.Supi, body ProvideLocationInfoJSONRequestBody, reqEditors ...RequestEditorFn) (*ProvideLocationInfoResponse, error)

func (*ClientWithResponses) QueryUeInfoWithResponse

func (c *ClientWithResponses) QueryUeInfoWithResponse(ctx context.Context, supi externalRef2.Supi, params *QueryUeInfoParams, reqEditors ...RequestEditorFn) (*QueryUeInfoResponse, error)

QueryUeInfoWithResponse request returning *QueryUeInfoResponse

type ClientWithResponsesInterface

type ClientWithResponsesInterface interface {
	// QueryUeInfoWithResponse request
	QueryUeInfoWithResponse(ctx context.Context, supi externalRef2.Supi, params *QueryUeInfoParams, reqEditors ...RequestEditorFn) (*QueryUeInfoResponse, error)

	// ProvideLocationInfoWithBodyWithResponse request with any body
	ProvideLocationInfoWithBodyWithResponse(ctx context.Context, supi externalRef2.Supi, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ProvideLocationInfoResponse, error)

	ProvideLocationInfoWithResponse(ctx context.Context, supi externalRef2.Supi, body ProvideLocationInfoJSONRequestBody, reqEditors ...RequestEditorFn) (*ProvideLocationInfoResponse, error)
}

ClientWithResponsesInterface is the interface specification for the client with responses above.

type GinServerOptions

type GinServerOptions struct {
	BaseURL      string
	Middlewares  []MiddlewareFunc
	ErrorHandler func(*gin.Context, error, int)
}

GinServerOptions provides options for the Gin server.

type HttpRequestDoer

type HttpRequestDoer interface {
	Do(req *http.Request) (*http.Response, error)
}

Doer performs HTTP requests.

The standard http.Client implements this interface.

type LocationInfoRequest

type LocationInfoRequest struct {
	Req5gsLoc            *bool                           `json:"req5gsLoc,omitempty"`
	ReqCurrentLoc        *bool                           `json:"reqCurrentLoc,omitempty"`
	ReqRatType           *bool                           `json:"reqRatType,omitempty"`
	ReqServingNode       *bool                           `json:"reqServingNode,omitempty"`
	ReqTimeZone          *bool                           `json:"reqTimeZone,omitempty"`
	SupportedFeatures    *externalRef2.SupportedFeatures `json:"supportedFeatures,omitempty"`
	AdditionalProperties map[string]interface{}          `json:"-"`
}

LocationInfoRequest defines model for LocationInfoRequest.

func (LocationInfoRequest) Get

func (a LocationInfoRequest) Get(fieldName string) (value interface{}, found bool)

Getter for additional properties for LocationInfoRequest. Returns the specified element and whether it was found

func (LocationInfoRequest) MarshalJSON

func (a LocationInfoRequest) MarshalJSON() ([]byte, error)

Override default JSON handling for LocationInfoRequest to handle AdditionalProperties

func (*LocationInfoRequest) Set

func (a *LocationInfoRequest) Set(fieldName string, value interface{})

Setter for additional properties for LocationInfoRequest

func (*LocationInfoRequest) UnmarshalJSON

func (a *LocationInfoRequest) UnmarshalJSON(b []byte) error

Override default JSON handling for LocationInfoRequest to handle AdditionalProperties

type LocationInfoResult

type LocationInfoResult struct {
	AmfInstanceId *externalRef2.NfInstanceId `json:"amfInstanceId,omitempty"`
	CurrentLoc    *bool                      `json:"currentLoc,omitempty"`
	Ecgi          *externalRef2.Ecgi         `json:"ecgi,omitempty"`

	// GeoInfo Original reference TS29572_Nlmf_Location.yaml#/components/schemas/GeographicArea
	GeoInfo interface{} `json:"geoInfo,omitempty"`

	// LocationAge Original reference TS29572_Nlmf_Location.yaml#/components/schemas/AgeOfLocationEstimate
	LocationAge          interface{}                     `json:"locationAge,omitempty"`
	Ncgi                 *externalRef2.Ncgi              `json:"ncgi,omitempty"`
	RatType              *externalRef2.RatType           `json:"ratType,omitempty"`
	SmsfInstanceId       *externalRef2.NfInstanceId      `json:"smsfInstanceId,omitempty"`
	SupportedFeatures    *externalRef2.SupportedFeatures `json:"supportedFeatures,omitempty"`
	Tai                  *externalRef2.Tai               `json:"tai,omitempty"`
	Timezone             *externalRef2.TimeZone          `json:"timezone,omitempty"`
	VPlmnId              *externalRef2.PlmnId            `json:"vPlmnId,omitempty"`
	AdditionalProperties map[string]interface{}          `json:"-"`
}

LocationInfoResult defines model for LocationInfoResult.

func (LocationInfoResult) Get

func (a LocationInfoResult) Get(fieldName string) (value interface{}, found bool)

Getter for additional properties for LocationInfoResult. Returns the specified element and whether it was found

func (LocationInfoResult) MarshalJSON

func (a LocationInfoResult) MarshalJSON() ([]byte, error)

Override default JSON handling for LocationInfoResult to handle AdditionalProperties

func (*LocationInfoResult) Set

func (a *LocationInfoResult) Set(fieldName string, value interface{})

Setter for additional properties for LocationInfoResult

func (*LocationInfoResult) UnmarshalJSON

func (a *LocationInfoResult) UnmarshalJSON(b []byte) error

Override default JSON handling for LocationInfoResult to handle AdditionalProperties

type MiddlewareFunc

type MiddlewareFunc func(c *gin.Context)

type N5GSrvccInfo

type N5GSrvccInfo struct {
	CMsisdn              externalRef2.CMsisdn   `json:"cMsisdn,omitempty"`
	StnSr                *externalRef2.StnSr    `json:"stnSr,omitempty"`
	Ue5GSrvccCapability  bool                   `json:"ue5GSrvccCapability"`
	AdditionalProperties map[string]interface{} `json:"-"`
}

N5GSrvccInfo defines model for 5GSrvccInfo.

func (N5GSrvccInfo) Get

func (a N5GSrvccInfo) Get(fieldName string) (value interface{}, found bool)

Getter for additional properties for N5GSrvccInfo. Returns the specified element and whether it was found

func (N5GSrvccInfo) MarshalJSON

func (a N5GSrvccInfo) MarshalJSON() ([]byte, error)

Override default JSON handling for N5GSrvccInfo to handle AdditionalProperties

func (*N5GSrvccInfo) Set

func (a *N5GSrvccInfo) Set(fieldName string, value interface{})

Setter for additional properties for N5GSrvccInfo

func (*N5GSrvccInfo) UnmarshalJSON

func (a *N5GSrvccInfo) UnmarshalJSON(b []byte) error

Override default JSON handling for N5GSrvccInfo to handle AdditionalProperties

type ProvideLocationInfo200JSONResponse

type ProvideLocationInfo200JSONResponse LocationInfoResult

func (ProvideLocationInfo200JSONResponse) VisitProvideLocationInfoResponse

func (response ProvideLocationInfo200JSONResponse) VisitProvideLocationInfoResponse(w http.ResponseWriter) error

type ProvideLocationInfo400ApplicationProblemPlusJSONResponse

type ProvideLocationInfo400ApplicationProblemPlusJSONResponse struct {
	externalRef2.N400ApplicationProblemPlusJSONResponse
}

func (ProvideLocationInfo400ApplicationProblemPlusJSONResponse) VisitProvideLocationInfoResponse

func (response ProvideLocationInfo400ApplicationProblemPlusJSONResponse) VisitProvideLocationInfoResponse(w http.ResponseWriter) error

type ProvideLocationInfo404ApplicationProblemPlusJSONResponse

type ProvideLocationInfo404ApplicationProblemPlusJSONResponse struct {
	externalRef2.N404ApplicationProblemPlusJSONResponse
}

func (ProvideLocationInfo404ApplicationProblemPlusJSONResponse) VisitProvideLocationInfoResponse

func (response ProvideLocationInfo404ApplicationProblemPlusJSONResponse) VisitProvideLocationInfoResponse(w http.ResponseWriter) error

type ProvideLocationInfo500ApplicationProblemPlusJSONResponse

type ProvideLocationInfo500ApplicationProblemPlusJSONResponse struct {
	externalRef2.N500ApplicationProblemPlusJSONResponse
}

func (ProvideLocationInfo500ApplicationProblemPlusJSONResponse) VisitProvideLocationInfoResponse

func (response ProvideLocationInfo500ApplicationProblemPlusJSONResponse) VisitProvideLocationInfoResponse(w http.ResponseWriter) error

type ProvideLocationInfo501ApplicationProblemPlusJSONResponse

type ProvideLocationInfo501ApplicationProblemPlusJSONResponse struct {
	externalRef2.N501ApplicationProblemPlusJSONResponse
}

func (ProvideLocationInfo501ApplicationProblemPlusJSONResponse) VisitProvideLocationInfoResponse

func (response ProvideLocationInfo501ApplicationProblemPlusJSONResponse) VisitProvideLocationInfoResponse(w http.ResponseWriter) error

type ProvideLocationInfo503ApplicationProblemPlusJSONResponse

type ProvideLocationInfo503ApplicationProblemPlusJSONResponse struct {
	externalRef2.N503ApplicationProblemPlusJSONResponse
}

func (ProvideLocationInfo503ApplicationProblemPlusJSONResponse) VisitProvideLocationInfoResponse

func (response ProvideLocationInfo503ApplicationProblemPlusJSONResponse) VisitProvideLocationInfoResponse(w http.ResponseWriter) error

type ProvideLocationInfoJSONRequestBody

type ProvideLocationInfoJSONRequestBody = LocationInfoRequest

ProvideLocationInfoJSONRequestBody defines body for ProvideLocationInfo for application/json ContentType.

type ProvideLocationInfoRequestObject

type ProvideLocationInfoRequestObject struct {
	Supi externalRef2.Supi `json:"supi"`
	Body *ProvideLocationInfoJSONRequestBody
}

type ProvideLocationInfoResponse

type ProvideLocationInfoResponse struct {
	Body                          []byte
	HTTPResponse                  *http.Response
	JSON200                       *LocationInfoResult
	ApplicationproblemJSON400     *externalRef2.N400
	ApplicationproblemJSON404     *externalRef2.N404
	ApplicationproblemJSON500     *externalRef2.N500
	ApplicationproblemJSON501     *externalRef2.N501
	ApplicationproblemJSON503     *externalRef2.N503
	ApplicationproblemJSONDefault *externalRef2.ProblemDetails
}

func ParseProvideLocationInfoResponse

func ParseProvideLocationInfoResponse(rsp *http.Response) (*ProvideLocationInfoResponse, error)

ParseProvideLocationInfoResponse parses an HTTP response from a ProvideLocationInfoWithResponse call

func (ProvideLocationInfoResponse) Status

Status returns HTTPResponse.Status

func (ProvideLocationInfoResponse) StatusCode

func (r ProvideLocationInfoResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type ProvideLocationInfoResponseObject

type ProvideLocationInfoResponseObject interface {
	VisitProvideLocationInfoResponse(w http.ResponseWriter) error
}

type ProvideLocationInfodefaultApplicationProblemPlusJSONResponse

type ProvideLocationInfodefaultApplicationProblemPlusJSONResponse struct {
	Body       externalRef2.ProblemDetails
	StatusCode int
}

func (ProvideLocationInfodefaultApplicationProblemPlusJSONResponse) VisitProvideLocationInfoResponse

func (response ProvideLocationInfodefaultApplicationProblemPlusJSONResponse) VisitProvideLocationInfoResponse(w http.ResponseWriter) error

type QueryUeInfo200JSONResponse

type QueryUeInfo200JSONResponse UeInfo

func (QueryUeInfo200JSONResponse) VisitQueryUeInfoResponse

func (response QueryUeInfo200JSONResponse) VisitQueryUeInfoResponse(w http.ResponseWriter) error

type QueryUeInfo400ApplicationProblemPlusJSONResponse

type QueryUeInfo400ApplicationProblemPlusJSONResponse struct {
	externalRef2.N400ApplicationProblemPlusJSONResponse
}

func (QueryUeInfo400ApplicationProblemPlusJSONResponse) VisitQueryUeInfoResponse

func (response QueryUeInfo400ApplicationProblemPlusJSONResponse) VisitQueryUeInfoResponse(w http.ResponseWriter) error

type QueryUeInfo404ApplicationProblemPlusJSONResponse

type QueryUeInfo404ApplicationProblemPlusJSONResponse struct {
	externalRef2.N404ApplicationProblemPlusJSONResponse
}

func (QueryUeInfo404ApplicationProblemPlusJSONResponse) VisitQueryUeInfoResponse

func (response QueryUeInfo404ApplicationProblemPlusJSONResponse) VisitQueryUeInfoResponse(w http.ResponseWriter) error

type QueryUeInfo500ApplicationProblemPlusJSONResponse

type QueryUeInfo500ApplicationProblemPlusJSONResponse struct {
	externalRef2.N500ApplicationProblemPlusJSONResponse
}

func (QueryUeInfo500ApplicationProblemPlusJSONResponse) VisitQueryUeInfoResponse

func (response QueryUeInfo500ApplicationProblemPlusJSONResponse) VisitQueryUeInfoResponse(w http.ResponseWriter) error

type QueryUeInfo501ApplicationProblemPlusJSONResponse

type QueryUeInfo501ApplicationProblemPlusJSONResponse struct {
	externalRef2.N501ApplicationProblemPlusJSONResponse
}

func (QueryUeInfo501ApplicationProblemPlusJSONResponse) VisitQueryUeInfoResponse

func (response QueryUeInfo501ApplicationProblemPlusJSONResponse) VisitQueryUeInfoResponse(w http.ResponseWriter) error

type QueryUeInfo503ApplicationProblemPlusJSONResponse

type QueryUeInfo503ApplicationProblemPlusJSONResponse struct {
	externalRef2.N503ApplicationProblemPlusJSONResponse
}

func (QueryUeInfo503ApplicationProblemPlusJSONResponse) VisitQueryUeInfoResponse

func (response QueryUeInfo503ApplicationProblemPlusJSONResponse) VisitQueryUeInfoResponse(w http.ResponseWriter) error

type QueryUeInfoParams

type QueryUeInfoParams struct {
	// Fields attributes to be retrieved
	Fields []string `form:"fields" json:"fields"`

	// SupportedFeatures Supported Features
	SupportedFeatures *externalRef2.SupportedFeatures `form:"supported-features,omitempty" json:"supported-features,omitempty"`
}

QueryUeInfoParams defines parameters for QueryUeInfo.

type QueryUeInfoRequestObject

type QueryUeInfoRequestObject struct {
	Supi   externalRef2.Supi `json:"supi"`
	Params QueryUeInfoParams
}

type QueryUeInfoResponse

type QueryUeInfoResponse struct {
	Body                          []byte
	HTTPResponse                  *http.Response
	JSON200                       *UeInfo
	ApplicationproblemJSON400     *externalRef2.N400
	ApplicationproblemJSON404     *externalRef2.N404
	ApplicationproblemJSON500     *externalRef2.N500
	ApplicationproblemJSON501     *externalRef2.N501
	ApplicationproblemJSON503     *externalRef2.N503
	ApplicationproblemJSONDefault *externalRef2.ProblemDetails
}

func ParseQueryUeInfoResponse

func ParseQueryUeInfoResponse(rsp *http.Response) (*QueryUeInfoResponse, error)

ParseQueryUeInfoResponse parses an HTTP response from a QueryUeInfoWithResponse call

func (QueryUeInfoResponse) Status

func (r QueryUeInfoResponse) Status() string

Status returns HTTPResponse.Status

func (QueryUeInfoResponse) StatusCode

func (r QueryUeInfoResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type QueryUeInfoResponseObject

type QueryUeInfoResponseObject interface {
	VisitQueryUeInfoResponse(w http.ResponseWriter) error
}

type QueryUeInfodefaultApplicationProblemPlusJSONResponse

type QueryUeInfodefaultApplicationProblemPlusJSONResponse struct {
	Body       externalRef2.ProblemDetails
	StatusCode int
}

func (QueryUeInfodefaultApplicationProblemPlusJSONResponse) VisitQueryUeInfoResponse

type RequestEditorFn

type RequestEditorFn func(ctx context.Context, req *http.Request) error

RequestEditorFn is the function signature for the RequestEditor callback function

type ServerInterface

type ServerInterface interface {
	// Query Information for the UE
	// (GET /{supi})
	QueryUeInfo(c *gin.Context, supi externalRef2.Supi, params QueryUeInfoParams)
	// Provides the UE's 5GS location information
	// (POST /{supi}/loc-info/provide-loc-info)
	ProvideLocationInfo(c *gin.Context, supi externalRef2.Supi)
}

ServerInterface represents all server handlers.

func NewStrictHandler

func NewStrictHandler(ssi StrictServerInterface, middlewares []StrictMiddlewareFunc) ServerInterface

type ServerInterfaceWrapper

type ServerInterfaceWrapper struct {
	Handler            ServerInterface
	HandlerMiddlewares []MiddlewareFunc
	ErrorHandler       func(*gin.Context, error, int)
}

ServerInterfaceWrapper converts contexts to parameters.

func (*ServerInterfaceWrapper) ProvideLocationInfo

func (siw *ServerInterfaceWrapper) ProvideLocationInfo(c *gin.Context)

ProvideLocationInfo operation middleware

func (*ServerInterfaceWrapper) QueryUeInfo

func (siw *ServerInterfaceWrapper) QueryUeInfo(c *gin.Context)

QueryUeInfo operation middleware

type StrictHandlerFunc

type StrictHandlerFunc = strictgin.StrictGinHandlerFunc

type StrictMiddlewareFunc

type StrictMiddlewareFunc = strictgin.StrictGinMiddlewareFunc

type StrictServerInterface

type StrictServerInterface interface {
	// Query Information for the UE
	// (GET /{supi})
	QueryUeInfo(ctx context.Context, request QueryUeInfoRequestObject) (QueryUeInfoResponseObject, error)
	// Provides the UE's 5GS location information
	// (POST /{supi}/loc-info/provide-loc-info)
	ProvideLocationInfo(ctx context.Context, request ProvideLocationInfoRequestObject) (ProvideLocationInfoResponseObject, error)
}

StrictServerInterface represents all server handlers.

type UeInfo

type UeInfo struct {
	N5gSrvccInfo         *N5GSrvccInfo               `json:"5gSrvccInfo,omitempty"`
	TadsInfo             *externalRef1.UeContextInfo `json:"tadsInfo,omitempty"`
	UserState            *externalRef0.N5GsUserState `json:"userState,omitempty"`
	AdditionalProperties map[string]interface{}      `json:"-"`
}

UeInfo defines model for UeInfo.

func (UeInfo) Get

func (a UeInfo) Get(fieldName string) (value interface{}, found bool)

Getter for additional properties for UeInfo. Returns the specified element and whether it was found

func (UeInfo) MarshalJSON

func (a UeInfo) MarshalJSON() ([]byte, error)

Override default JSON handling for UeInfo to handle AdditionalProperties

func (*UeInfo) Set

func (a *UeInfo) Set(fieldName string, value interface{})

Setter for additional properties for UeInfo

func (*UeInfo) UnmarshalJSON

func (a *UeInfo) UnmarshalJSON(b []byte) error

Override default JSON handling for UeInfo to handle AdditionalProperties

Jump to

Keyboard shortcuts

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