mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-02 05:10:10 +00:00
Upgrade SBI(Service-based Interface)
* OpenAPI Generator version: 4.3.1 ==> 5.5.1 * Specification : r16.8.0 (20210629)
This commit is contained in:
parent
2aaa8200c2
commit
f278d58a69
1914 changed files with 91329 additions and 57361 deletions
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* transfer_mt_data_error.h
|
||||
*
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_transfer_mt_data_error_H_
|
||||
|
|
@ -12,6 +12,8 @@
|
|||
#include "../include/list.h"
|
||||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
#include "access_token_err.h"
|
||||
#include "access_token_req.h"
|
||||
#include "invalid_param.h"
|
||||
#include "problem_details.h"
|
||||
#include "transfer_mt_data_add_info.h"
|
||||
|
|
@ -30,7 +32,9 @@ typedef struct OpenAPI_transfer_mt_data_error_s {
|
|||
char *cause;
|
||||
OpenAPI_list_t *invalid_params;
|
||||
char *supported_features;
|
||||
char *target_scp;
|
||||
struct OpenAPI_access_token_err_s *access_token_error;
|
||||
struct OpenAPI_access_token_req_s *access_token_request;
|
||||
char *nrf_id;
|
||||
int max_waiting_time;
|
||||
} OpenAPI_transfer_mt_data_error_t;
|
||||
|
||||
|
|
@ -43,9 +47,11 @@ OpenAPI_transfer_mt_data_error_t *OpenAPI_transfer_mt_data_error_create(
|
|||
char *cause,
|
||||
OpenAPI_list_t *invalid_params,
|
||||
char *supported_features,
|
||||
char *target_scp,
|
||||
OpenAPI_access_token_err_t *access_token_error,
|
||||
OpenAPI_access_token_req_t *access_token_request,
|
||||
char *nrf_id,
|
||||
int max_waiting_time
|
||||
);
|
||||
);
|
||||
void OpenAPI_transfer_mt_data_error_free(OpenAPI_transfer_mt_data_error_t *transfer_mt_data_error);
|
||||
OpenAPI_transfer_mt_data_error_t *OpenAPI_transfer_mt_data_error_parseFromJSON(cJSON *transfer_mt_data_errorJSON);
|
||||
cJSON *OpenAPI_transfer_mt_data_error_convertToJSON(OpenAPI_transfer_mt_data_error_t *transfer_mt_data_error);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue