mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-05 07:08:11 +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
|
|
@ -13,6 +13,8 @@
|
|||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
#include "acceptable_service_info.h"
|
||||
#include "access_token_err.h"
|
||||
#include "access_token_req.h"
|
||||
#include "extended_problem_details_all_of.h"
|
||||
#include "invalid_param.h"
|
||||
#include "problem_details.h"
|
||||
|
|
@ -31,7 +33,9 @@ typedef struct OpenAPI_extended_problem_details_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;
|
||||
struct OpenAPI_acceptable_service_info_s *acceptable_serv_info;
|
||||
} OpenAPI_extended_problem_details_t;
|
||||
|
||||
|
|
@ -44,9 +48,11 @@ OpenAPI_extended_problem_details_t *OpenAPI_extended_problem_details_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,
|
||||
OpenAPI_acceptable_service_info_t *acceptable_serv_info
|
||||
);
|
||||
);
|
||||
void OpenAPI_extended_problem_details_free(OpenAPI_extended_problem_details_t *extended_problem_details);
|
||||
OpenAPI_extended_problem_details_t *OpenAPI_extended_problem_details_parseFromJSON(cJSON *extended_problem_detailsJSON);
|
||||
cJSON *OpenAPI_extended_problem_details_convertToJSON(OpenAPI_extended_problem_details_t *extended_problem_details);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue