Upgrade SBI(Service-based Interface)

* OpenAPI Generator version: 4.3.1 ==> 5.5.1
* Specification : r16.8.0 (20210629)
This commit is contained in:
Sukchan Lee 2021-07-07 17:32:55 +09:00
parent 2aaa8200c2
commit f278d58a69
1914 changed files with 91329 additions and 57361 deletions

View file

@ -1,7 +1,7 @@
/*
* ext_problem_details.h
*
*
*
*/
#ifndef _OpenAPI_ext_problem_details_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 "problem_details_add_info.h"
@ -30,7 +32,9 @@ typedef struct OpenAPI_ext_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;
int remote_error;
} OpenAPI_ext_problem_details_t;
@ -43,9 +47,11 @@ OpenAPI_ext_problem_details_t *OpenAPI_ext_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,
int remote_error
);
);
void OpenAPI_ext_problem_details_free(OpenAPI_ext_problem_details_t *ext_problem_details);
OpenAPI_ext_problem_details_t *OpenAPI_ext_problem_details_parseFromJSON(cJSON *ext_problem_detailsJSON);
cJSON *OpenAPI_ext_problem_details_convertToJSON(OpenAPI_ext_problem_details_t *ext_problem_details);