You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
type N1N2MsgTxfrFailureNotification struct {
Cause N1N2MessageTransferCause json:"cause"
N1n2MsgDataUri string json:"n1n2MsgDataUri"
}
==>api_n1_n2_message_transfer_status_notification_callback_document.go
func (a *N1N2MessageTransferStatusNotificationCallbackDocumentApiService) N1N2TransferFailureNotification(ctx context.Context, n1N2MessageTransferNotificationUrl string, request models.N1N2MsgTxfrFailureNotification) (*http.Response, error)
Above function has been used to send FailureNotification by AMF. In this function, RequestBody is not set (or) request param is not used to set it as body in the function definition. Hence AMF is not sending N1N2TransferFailureNotification with Body to SMF.
Please help me how to fix this issue?
The text was updated successfully, but these errors were encountered:
type N1N2MsgTxfrFailureNotification struct {
Cause N1N2MessageTransferCause
json:"cause"
N1n2MsgDataUri string
json:"n1n2MsgDataUri"
}
==>api_n1_n2_message_transfer_status_notification_callback_document.go
func (a *N1N2MessageTransferStatusNotificationCallbackDocumentApiService) N1N2TransferFailureNotification(ctx context.Context, n1N2MessageTransferNotificationUrl string, request models.N1N2MsgTxfrFailureNotification) (*http.Response, error)
Above function has been used to send FailureNotification by AMF. In this function, RequestBody is not set (or) request param is not used to set it as body in the function definition. Hence AMF is not sending N1N2TransferFailureNotification with Body to SMF.
Please help me how to fix this issue?
The text was updated successfully, but these errors were encountered: