Documentation
¶
Index ¶
- type APIClient
- type Configuration
- func (c *Configuration) AddDefaultHeader(key string, value string)
- func (c *Configuration) BasePath() string
- func (c *Configuration) DefaultHeader() map[string]string
- func (c *Configuration) HTTPClient() *http.Client
- func (c *Configuration) Host() string
- func (c *Configuration) Metrics() openapi.RequestMetricsHook
- func (c *Configuration) SetBasePath(apiRoot string)
- func (c *Configuration) SetHTTPClient(client *http.Client)
- func (c *Configuration) SetHost(host string)
- func (c *Configuration) SetMetrics(h openapi.RequestMetricsHook)
- func (c *Configuration) SetUserAgent(userAgent string)
- func (c *Configuration) UserAgent() string
- type IndividualPDUSessionHSMFOrSMFApiService
- func (a *IndividualPDUSessionHSMFOrSMFApiService) ReleasePduSession(ctx context.Context, request *ReleasePduSessionRequest) (*ReleasePduSessionResponse, error)
- func (a *IndividualPDUSessionHSMFOrSMFApiService) RetrievePduSession(ctx context.Context, request *RetrievePduSessionRequest) (*RetrievePduSessionResponse, error)
- func (a *IndividualPDUSessionHSMFOrSMFApiService) TransferMoData(ctx context.Context, request *TransferMoDataRequest) (*TransferMoDataResponse, error)
- func (a *IndividualPDUSessionHSMFOrSMFApiService) UpdatePduSession(ctx context.Context, request *UpdatePduSessionRequest) (*UpdatePduSessionResponse, error)
- type IndividualSMContextApiService
- func (a *IndividualSMContextApiService) ReleaseSmContext(ctx context.Context, request *ReleaseSmContextRequest) (*ReleaseSmContextResponse, error)
- func (a *IndividualSMContextApiService) RetrieveSmContext(ctx context.Context, request *RetrieveSmContextRequest) (*RetrieveSmContextResponse, error)
- func (a *IndividualSMContextApiService) SendMoData(ctx context.Context, request *SendMoDataRequest) (*SendMoDataResponse, error)
- func (a *IndividualSMContextApiService) UpdateSmContext(ctx context.Context, request *UpdateSmContextRequest) (*UpdateSmContextResponse, error)
- type ModifyPduSessionError
- type ModifyPduSessionIsmfError
- type ModifyPduSessionIsmfRequest
- type ModifyPduSessionIsmfResponse
- type ModifyPduSessionRequest
- type ModifyPduSessionResponse
- type NotifyStatusError
- type NotifyStatusIsfmError
- type NotifyStatusIsfmRequest
- type NotifyStatusIsfmResponse
- type NotifyStatusRequest
- type NotifyStatusResponse
- type PDUSessionsCollectionApiService
- func (a *PDUSessionsCollectionApiService) ModifyPduSession(ctx context.Context, uri string, request *ModifyPduSessionRequest) (*ModifyPduSessionResponse, error)
- func (a *PDUSessionsCollectionApiService) ModifyPduSessionIsmf(ctx context.Context, uri string, request *ModifyPduSessionIsmfRequest) (*ModifyPduSessionIsmfResponse, error)
- func (a *PDUSessionsCollectionApiService) NotifyStatus(ctx context.Context, uri string, request *NotifyStatusRequest) (*NotifyStatusResponse, error)
- func (a *PDUSessionsCollectionApiService) NotifyStatusIsfm(ctx context.Context, uri string, request *NotifyStatusIsfmRequest) (*NotifyStatusIsfmResponse, error)
- func (a *PDUSessionsCollectionApiService) PostPduSessions(ctx context.Context, request *PostPduSessionsRequest) (*PostPduSessionsResponse, error)
- func (a *PDUSessionsCollectionApiService) TransferMtData(ctx context.Context, uri string, request *TransferMtDataRequest) (*TransferMtDataResponse, error)
- func (a *PDUSessionsCollectionApiService) TransferMtDataIsmf(ctx context.Context, uri string, request *TransferMtDataIsmfRequest) (*TransferMtDataIsmfResponse, error)
- type PostPduSessionsError
- type PostPduSessionsRequest
- type PostPduSessionsResponse
- type PostSmContextsError
- type PostSmContextsRequest
- type PostSmContextsResponse
- type PostSmContextsSmContextStatusNotificationPostError
- type PostSmContextsSmContextStatusNotificationPostRequest
- type PostSmContextsSmContextStatusNotificationPostResponse
- type ReleasePduSessionError
- type ReleasePduSessionRequest
- type ReleasePduSessionResponse
- type ReleaseSmContextError
- type ReleaseSmContextRequest
- type ReleaseSmContextResponse
- type RetrievePduSessionError
- type RetrievePduSessionRequest
- type RetrievePduSessionResponse
- type RetrieveSmContextError
- type RetrieveSmContextRequest
- type RetrieveSmContextResponse
- type SMContextsCollectionApiService
- func (a *SMContextsCollectionApiService) PostSmContexts(ctx context.Context, request *PostSmContextsRequest) (*PostSmContextsResponse, error)
- func (a *SMContextsCollectionApiService) PostSmContextsSmContextStatusNotificationPost(ctx context.Context, uri string, ...) (*PostSmContextsSmContextStatusNotificationPostResponse, error)
- type SendMoDataError
- type SendMoDataRequest
- type SendMoDataResponse
- type TransferMoDataError
- type TransferMoDataRequest
- type TransferMoDataResponse
- type TransferMtDataError
- type TransferMtDataIsmfError
- type TransferMtDataIsmfRequest
- type TransferMtDataIsmfResponse
- type TransferMtDataRequest
- type TransferMtDataResponse
- type UpdatePduSessionError
- type UpdatePduSessionRequest
- type UpdatePduSessionResponse
- type UpdateSmContextError
- type UpdateSmContextRequest
- type UpdateSmContextResponse
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type APIClient ¶
type APIClient struct {
// API Services
IndividualPDUSessionHSMFOrSMFApi *IndividualPDUSessionHSMFOrSMFApiService
IndividualSMContextApi *IndividualSMContextApiService
PDUSessionsCollectionApi *PDUSessionsCollectionApiService
SMContextsCollectionApi *SMContextsCollectionApiService
// contains filtered or unexported fields
}
APIClient manages communication with the Nsmf_PDUSession API v1.2.5 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.
type Configuration ¶
type Configuration struct {
MetricsHook openapi.RequestMetricsHook
// contains filtered or unexported fields
}
func NewConfiguration ¶
func NewConfiguration() *Configuration
func (*Configuration) AddDefaultHeader ¶
func (c *Configuration) AddDefaultHeader(key string, value string)
func (*Configuration) BasePath ¶
func (c *Configuration) BasePath() string
func (*Configuration) DefaultHeader ¶
func (c *Configuration) DefaultHeader() map[string]string
func (*Configuration) HTTPClient ¶
func (c *Configuration) HTTPClient() *http.Client
func (*Configuration) Host ¶
func (c *Configuration) Host() string
func (*Configuration) Metrics ¶ added in v1.2.1
func (c *Configuration) Metrics() openapi.RequestMetricsHook
func (*Configuration) SetBasePath ¶
func (c *Configuration) SetBasePath(apiRoot string)
func (*Configuration) SetHTTPClient ¶
func (c *Configuration) SetHTTPClient(client *http.Client)
func (*Configuration) SetHost ¶
func (c *Configuration) SetHost(host string)
func (*Configuration) SetMetrics ¶ added in v1.2.1
func (c *Configuration) SetMetrics(h openapi.RequestMetricsHook)
func (*Configuration) SetUserAgent ¶
func (c *Configuration) SetUserAgent(userAgent string)
func (*Configuration) UserAgent ¶
func (c *Configuration) UserAgent() string
type IndividualPDUSessionHSMFOrSMFApiService ¶
type IndividualPDUSessionHSMFOrSMFApiService service
func (*IndividualPDUSessionHSMFOrSMFApiService) ReleasePduSession ¶
func (a *IndividualPDUSessionHSMFOrSMFApiService) ReleasePduSession(ctx context.Context, request *ReleasePduSessionRequest) (*ReleasePduSessionResponse, error)
func (*IndividualPDUSessionHSMFOrSMFApiService) RetrievePduSession ¶
func (a *IndividualPDUSessionHSMFOrSMFApiService) RetrievePduSession(ctx context.Context, request *RetrievePduSessionRequest) (*RetrievePduSessionResponse, error)
func (*IndividualPDUSessionHSMFOrSMFApiService) TransferMoData ¶
func (a *IndividualPDUSessionHSMFOrSMFApiService) TransferMoData(ctx context.Context, request *TransferMoDataRequest) (*TransferMoDataResponse, error)
func (*IndividualPDUSessionHSMFOrSMFApiService) UpdatePduSession ¶
func (a *IndividualPDUSessionHSMFOrSMFApiService) UpdatePduSession(ctx context.Context, request *UpdatePduSessionRequest) (*UpdatePduSessionResponse, error)
type IndividualSMContextApiService ¶
type IndividualSMContextApiService service
func (*IndividualSMContextApiService) ReleaseSmContext ¶
func (a *IndividualSMContextApiService) ReleaseSmContext(ctx context.Context, request *ReleaseSmContextRequest) (*ReleaseSmContextResponse, error)
func (*IndividualSMContextApiService) RetrieveSmContext ¶
func (a *IndividualSMContextApiService) RetrieveSmContext(ctx context.Context, request *RetrieveSmContextRequest) (*RetrieveSmContextResponse, error)
func (*IndividualSMContextApiService) SendMoData ¶
func (a *IndividualSMContextApiService) SendMoData(ctx context.Context, request *SendMoDataRequest) (*SendMoDataResponse, error)
func (*IndividualSMContextApiService) UpdateSmContext ¶
func (a *IndividualSMContextApiService) UpdateSmContext(ctx context.Context, request *UpdateSmContextRequest) (*UpdateSmContextResponse, error)
type ModifyPduSessionError ¶
type ModifyPduSessionError struct {
Location string
Var3gppSbiTargetNfId string
ModifyPduSessionResponse400 models.ModifyPduSessionResponse400
ProblemDetails models.ProblemDetails
RedirectResponse models.RedirectResponse
}
type ModifyPduSessionIsmfError ¶
type ModifyPduSessionIsmfError struct {
Location string
Var3gppSbiTargetNfId string
ModifyPduSessionResponse400 models.ModifyPduSessionResponse400
ProblemDetails models.ProblemDetails
RedirectResponse models.RedirectResponse
}
type ModifyPduSessionIsmfRequest ¶
type ModifyPduSessionIsmfRequest struct {
ModifyPduSessionRequest *models.ModifyPduSessionRequest
}
ModifyPduSessionIsmfRequest
func (*ModifyPduSessionIsmfRequest) SetModifyPduSessionRequest ¶
func (r *ModifyPduSessionIsmfRequest) SetModifyPduSessionRequest(ModifyPduSessionRequest models.ModifyPduSessionRequest)
type ModifyPduSessionIsmfResponse ¶
type ModifyPduSessionIsmfResponse struct {
ModifyPduSessionResponse200 models.ModifyPduSessionResponse200
}
type ModifyPduSessionRequest ¶
type ModifyPduSessionRequest struct {
ModifyPduSessionRequest *models.ModifyPduSessionRequest
}
ModifyPduSessionRequest
func (*ModifyPduSessionRequest) SetModifyPduSessionRequest ¶
func (r *ModifyPduSessionRequest) SetModifyPduSessionRequest(ModifyPduSessionRequest models.ModifyPduSessionRequest)
type ModifyPduSessionResponse ¶
type ModifyPduSessionResponse struct {
ModifyPduSessionResponse200 models.ModifyPduSessionResponse200
}
type NotifyStatusError ¶
type NotifyStatusError struct {
Location string
Var3gppSbiTargetNfId string
ProblemDetails models.ProblemDetails
RedirectResponse models.RedirectResponse
}
type NotifyStatusIsfmError ¶
type NotifyStatusIsfmError struct {
Location string
Var3gppSbiTargetNfId string
ProblemDetails models.ProblemDetails
RedirectResponse models.RedirectResponse
}
type NotifyStatusIsfmRequest ¶
type NotifyStatusIsfmRequest struct {
StatusNotification *models.StatusNotification
}
NotifyStatusIsfmRequest
func (*NotifyStatusIsfmRequest) SetStatusNotification ¶
func (r *NotifyStatusIsfmRequest) SetStatusNotification(StatusNotification models.StatusNotification)
type NotifyStatusIsfmResponse ¶
type NotifyStatusIsfmResponse struct {
}
type NotifyStatusRequest ¶
type NotifyStatusRequest struct {
StatusNotification *models.StatusNotification
}
NotifyStatusRequest
func (*NotifyStatusRequest) SetStatusNotification ¶
func (r *NotifyStatusRequest) SetStatusNotification(StatusNotification models.StatusNotification)
type NotifyStatusResponse ¶
type NotifyStatusResponse struct {
}
type PDUSessionsCollectionApiService ¶
type PDUSessionsCollectionApiService service
func (*PDUSessionsCollectionApiService) ModifyPduSession ¶
func (a *PDUSessionsCollectionApiService) ModifyPduSession(ctx context.Context, uri string, request *ModifyPduSessionRequest) (*ModifyPduSessionResponse, error)
func (*PDUSessionsCollectionApiService) ModifyPduSessionIsmf ¶
func (a *PDUSessionsCollectionApiService) ModifyPduSessionIsmf(ctx context.Context, uri string, request *ModifyPduSessionIsmfRequest) (*ModifyPduSessionIsmfResponse, error)
func (*PDUSessionsCollectionApiService) NotifyStatus ¶
func (a *PDUSessionsCollectionApiService) NotifyStatus(ctx context.Context, uri string, request *NotifyStatusRequest) (*NotifyStatusResponse, error)
func (*PDUSessionsCollectionApiService) NotifyStatusIsfm ¶
func (a *PDUSessionsCollectionApiService) NotifyStatusIsfm(ctx context.Context, uri string, request *NotifyStatusIsfmRequest) (*NotifyStatusIsfmResponse, error)
func (*PDUSessionsCollectionApiService) PostPduSessions ¶
func (a *PDUSessionsCollectionApiService) PostPduSessions(ctx context.Context, request *PostPduSessionsRequest) (*PostPduSessionsResponse, error)
func (*PDUSessionsCollectionApiService) TransferMtData ¶
func (a *PDUSessionsCollectionApiService) TransferMtData(ctx context.Context, uri string, request *TransferMtDataRequest) (*TransferMtDataResponse, error)
func (*PDUSessionsCollectionApiService) TransferMtDataIsmf ¶
func (a *PDUSessionsCollectionApiService) TransferMtDataIsmf(ctx context.Context, uri string, request *TransferMtDataIsmfRequest) (*TransferMtDataIsmfResponse, error)
type PostPduSessionsError ¶
type PostPduSessionsError struct {
Location string
Var3gppSbiTargetNfId string
PostPduSessionsResponse400 models.PostPduSessionsResponse400
ProblemDetails models.ProblemDetails
RedirectResponse models.RedirectResponse
}
type PostPduSessionsRequest ¶
type PostPduSessionsRequest struct {
PostPduSessionsRequest *models.PostPduSessionsRequest
}
PostPduSessionsRequest
func (*PostPduSessionsRequest) SetPostPduSessionsRequest ¶
func (r *PostPduSessionsRequest) SetPostPduSessionsRequest(PostPduSessionsRequest models.PostPduSessionsRequest)
type PostPduSessionsResponse ¶
type PostPduSessionsResponse struct {
Location string
PostPduSessionsResponse201 models.PostPduSessionsResponse201
}
type PostSmContextsError ¶
type PostSmContextsError struct {
Location string
Var3gppSbiTargetNfId string
PostSmContextsError models.PostSmContextsError
ProblemDetails models.ProblemDetails
RedirectResponse models.RedirectResponse
SmfPduSessionExtProblemDetails models.SmfPduSessionExtProblemDetails
}
type PostSmContextsRequest ¶
type PostSmContextsRequest struct {
PostSmContextsRequest *models.PostSmContextsRequest
}
PostSmContextsRequest
func (*PostSmContextsRequest) SetPostSmContextsRequest ¶
func (r *PostSmContextsRequest) SetPostSmContextsRequest(PostSmContextsRequest models.PostSmContextsRequest)
type PostSmContextsResponse ¶
type PostSmContextsResponse struct {
Location string
PostSmContextsResponse201 models.PostSmContextsResponse201
}
type PostSmContextsSmContextStatusNotificationPostError ¶
type PostSmContextsSmContextStatusNotificationPostError struct {
Location string
Var3gppSbiTargetNfId string
ProblemDetails models.ProblemDetails
RedirectResponse models.RedirectResponse
}
type PostSmContextsSmContextStatusNotificationPostRequest ¶
type PostSmContextsSmContextStatusNotificationPostRequest struct {
SmfPduSessionSmContextStatusNotification *models.SmfPduSessionSmContextStatusNotification
}
PostSmContextsSmContextStatusNotificationPostRequest
func (*PostSmContextsSmContextStatusNotificationPostRequest) SetSmfPduSessionSmContextStatusNotification ¶
func (r *PostSmContextsSmContextStatusNotificationPostRequest) SetSmfPduSessionSmContextStatusNotification(SmfPduSessionSmContextStatusNotification models.SmfPduSessionSmContextStatusNotification)
type PostSmContextsSmContextStatusNotificationPostResponse ¶
type PostSmContextsSmContextStatusNotificationPostResponse struct {
}
type ReleasePduSessionError ¶
type ReleasePduSessionError struct {
Location string
Var3gppSbiTargetNfId string
ProblemDetails models.ProblemDetails
RedirectResponse models.RedirectResponse
}
type ReleasePduSessionRequest ¶
type ReleasePduSessionRequest struct {
PduSessionRef *string
ReleasePduSessionRequest *models.ReleasePduSessionRequest
}
ReleasePduSessionRequest
func (*ReleasePduSessionRequest) SetPduSessionRef ¶
func (r *ReleasePduSessionRequest) SetPduSessionRef(PduSessionRef string)
func (*ReleasePduSessionRequest) SetReleasePduSessionRequest ¶
func (r *ReleasePduSessionRequest) SetReleasePduSessionRequest(ReleasePduSessionRequest models.ReleasePduSessionRequest)
type ReleasePduSessionResponse ¶
type ReleasePduSessionResponse struct {
ReleasePduSessionResponse200 models.ReleasePduSessionResponse200
}
type ReleaseSmContextError ¶
type ReleaseSmContextError struct {
Location string
Var3gppSbiTargetNfId string
ProblemDetails models.ProblemDetails
RedirectResponse models.RedirectResponse
}
type ReleaseSmContextRequest ¶
type ReleaseSmContextRequest struct {
SmContextRef *string
ReleaseSmContextRequest *models.ReleaseSmContextRequest
}
ReleaseSmContextRequest
func (*ReleaseSmContextRequest) SetReleaseSmContextRequest ¶
func (r *ReleaseSmContextRequest) SetReleaseSmContextRequest(ReleaseSmContextRequest models.ReleaseSmContextRequest)
func (*ReleaseSmContextRequest) SetSmContextRef ¶
func (r *ReleaseSmContextRequest) SetSmContextRef(SmContextRef string)
type ReleaseSmContextResponse ¶
type ReleaseSmContextResponse struct {
SmContextReleasedData models.SmContextReleasedData
}
type RetrievePduSessionError ¶
type RetrievePduSessionError struct {
Location string
Var3gppSbiTargetNfId string
ProblemDetails models.ProblemDetails
RedirectResponse models.RedirectResponse
}
type RetrievePduSessionRequest ¶
type RetrievePduSessionRequest struct {
PduSessionRef *string
RetrieveData *models.RetrieveData
}
RetrievePduSessionRequest
func (*RetrievePduSessionRequest) SetPduSessionRef ¶
func (r *RetrievePduSessionRequest) SetPduSessionRef(PduSessionRef string)
func (*RetrievePduSessionRequest) SetRetrieveData ¶
func (r *RetrievePduSessionRequest) SetRetrieveData(RetrieveData models.RetrieveData)
type RetrievePduSessionResponse ¶
type RetrievePduSessionResponse struct {
RetrievedData models.RetrievedData
}
type RetrieveSmContextError ¶
type RetrieveSmContextError struct {
Location string
Var3gppSbiTargetNfId string
ProblemDetails models.ProblemDetails
RedirectResponse models.RedirectResponse
}
type RetrieveSmContextRequest ¶
type RetrieveSmContextRequest struct {
SmContextRef *string
SmContextRetrieveData *models.SmContextRetrieveData
}
RetrieveSmContextRequest
func (*RetrieveSmContextRequest) SetSmContextRef ¶
func (r *RetrieveSmContextRequest) SetSmContextRef(SmContextRef string)
func (*RetrieveSmContextRequest) SetSmContextRetrieveData ¶
func (r *RetrieveSmContextRequest) SetSmContextRetrieveData(SmContextRetrieveData models.SmContextRetrieveData)
type RetrieveSmContextResponse ¶
type RetrieveSmContextResponse struct {
SmContextRetrievedData models.SmContextRetrievedData
}
type SMContextsCollectionApiService ¶
type SMContextsCollectionApiService service
func (*SMContextsCollectionApiService) PostSmContexts ¶
func (a *SMContextsCollectionApiService) PostSmContexts(ctx context.Context, request *PostSmContextsRequest) (*PostSmContextsResponse, error)
func (*SMContextsCollectionApiService) PostSmContextsSmContextStatusNotificationPost ¶
func (a *SMContextsCollectionApiService) PostSmContextsSmContextStatusNotificationPost(ctx context.Context, uri string, request *PostSmContextsSmContextStatusNotificationPostRequest) (*PostSmContextsSmContextStatusNotificationPostResponse, error)
type SendMoDataError ¶
type SendMoDataError struct {
Location string
Var3gppSbiTargetNfId string
ProblemDetails models.ProblemDetails
RedirectResponse models.RedirectResponse
SmfPduSessionExtProblemDetails models.SmfPduSessionExtProblemDetails
}
type SendMoDataRequest ¶
type SendMoDataRequest struct {
SmContextRef *string
SendMoDataRequest *models.SendMoDataRequest
}
SendMoDataRequest
func (*SendMoDataRequest) SetSendMoDataRequest ¶
func (r *SendMoDataRequest) SetSendMoDataRequest(SendMoDataRequest models.SendMoDataRequest)
func (*SendMoDataRequest) SetSmContextRef ¶
func (r *SendMoDataRequest) SetSmContextRef(SmContextRef string)
type SendMoDataResponse ¶
type SendMoDataResponse struct {
}
type TransferMoDataError ¶
type TransferMoDataError struct {
Location string
Var3gppSbiTargetNfId string
ProblemDetails models.ProblemDetails
RedirectResponse models.RedirectResponse
}
type TransferMoDataRequest ¶
type TransferMoDataRequest struct {
PduSessionRef *string
TransferMoDataRequest *models.TransferMoDataRequest
}
TransferMoDataRequest
func (*TransferMoDataRequest) SetPduSessionRef ¶
func (r *TransferMoDataRequest) SetPduSessionRef(PduSessionRef string)
func (*TransferMoDataRequest) SetTransferMoDataRequest ¶
func (r *TransferMoDataRequest) SetTransferMoDataRequest(TransferMoDataRequest models.TransferMoDataRequest)
type TransferMoDataResponse ¶
type TransferMoDataResponse struct {
}
type TransferMtDataError ¶
type TransferMtDataError struct {
Location string
Var3gppSbiTargetNfId string
ProblemDetails models.ProblemDetails
RedirectResponse models.RedirectResponse
TransferMtDataError models.TransferMtDataError
}
type TransferMtDataIsmfError ¶
type TransferMtDataIsmfError struct {
Location string
Var3gppSbiTargetNfId string
ProblemDetails models.ProblemDetails
RedirectResponse models.RedirectResponse
TransferMtDataError models.TransferMtDataError
}
type TransferMtDataIsmfRequest ¶
type TransferMtDataIsmfRequest struct {
TransferMtDataismfRequest *models.TransferMtDataismfRequest
}
TransferMtDataIsmfRequest
func (*TransferMtDataIsmfRequest) SetTransferMtDataismfRequest ¶
func (r *TransferMtDataIsmfRequest) SetTransferMtDataismfRequest(TransferMtDataismfRequest models.TransferMtDataismfRequest)
type TransferMtDataIsmfResponse ¶
type TransferMtDataIsmfResponse struct {
}
type TransferMtDataRequest ¶
type TransferMtDataRequest struct {
TransferMtDataRequest *models.TransferMtDataRequest
}
TransferMtDataRequest
func (*TransferMtDataRequest) SetTransferMtDataRequest ¶
func (r *TransferMtDataRequest) SetTransferMtDataRequest(TransferMtDataRequest models.TransferMtDataRequest)
type TransferMtDataResponse ¶
type TransferMtDataResponse struct {
}
type UpdatePduSessionError ¶
type UpdatePduSessionError struct {
Location string
Var3gppSbiTargetNfId string
ProblemDetails models.ProblemDetails
RedirectResponse models.RedirectResponse
UpdatePduSessionResponse400 models.UpdatePduSessionResponse400
}
type UpdatePduSessionRequest ¶
type UpdatePduSessionRequest struct {
PduSessionRef *string
UpdatePduSessionRequest *models.UpdatePduSessionRequest
}
UpdatePduSessionRequest
func (*UpdatePduSessionRequest) SetPduSessionRef ¶
func (r *UpdatePduSessionRequest) SetPduSessionRef(PduSessionRef string)
func (*UpdatePduSessionRequest) SetUpdatePduSessionRequest ¶
func (r *UpdatePduSessionRequest) SetUpdatePduSessionRequest(UpdatePduSessionRequest models.UpdatePduSessionRequest)
type UpdatePduSessionResponse ¶
type UpdatePduSessionResponse struct {
UpdatePduSessionResponse200 models.UpdatePduSessionResponse200
}
type UpdateSmContextError ¶
type UpdateSmContextError struct {
Location string
Var3gppSbiTargetNfId string
ProblemDetails models.ProblemDetails
RedirectResponse models.RedirectResponse
UpdateSmContextResponse400 models.UpdateSmContextResponse400
}
type UpdateSmContextRequest ¶
type UpdateSmContextRequest struct {
SmContextRef *string
UpdateSmContextRequest *models.UpdateSmContextRequest
}
UpdateSmContextRequest
func (*UpdateSmContextRequest) SetSmContextRef ¶
func (r *UpdateSmContextRequest) SetSmContextRef(SmContextRef string)
func (*UpdateSmContextRequest) SetUpdateSmContextRequest ¶
func (r *UpdateSmContextRequest) SetUpdateSmContextRequest(UpdateSmContextRequest models.UpdateSmContextRequest)
type UpdateSmContextResponse ¶
type UpdateSmContextResponse struct {
UpdateSmContextResponse200 models.UpdateSmContextResponse200
}