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 @@
/*
* steering_mode.h
*
*
*
*/
#ifndef _OpenAPI_steering_mode_H_
@ -13,6 +13,7 @@
#include "../include/keyValuePair.h"
#include "../include/binary.h"
#include "access_type.h"
#include "access_type_rm.h"
#include "steer_mode_value.h"
#ifdef __cplusplus
@ -23,7 +24,7 @@ typedef struct OpenAPI_steering_mode_s OpenAPI_steering_mode_t;
typedef struct OpenAPI_steering_mode_s {
OpenAPI_steer_mode_value_e steer_mode_value;
OpenAPI_access_type_e active;
OpenAPI_access_type_e standby;
struct OpenAPI_access_type_rm_s *standby;
int _3g_load;
OpenAPI_access_type_e prio_acc;
} OpenAPI_steering_mode_t;
@ -31,10 +32,10 @@ typedef struct OpenAPI_steering_mode_s {
OpenAPI_steering_mode_t *OpenAPI_steering_mode_create(
OpenAPI_steer_mode_value_e steer_mode_value,
OpenAPI_access_type_e active,
OpenAPI_access_type_e standby,
OpenAPI_access_type_rm_t *standby,
int _3g_load,
OpenAPI_access_type_e prio_acc
);
);
void OpenAPI_steering_mode_free(OpenAPI_steering_mode_t *steering_mode);
OpenAPI_steering_mode_t *OpenAPI_steering_mode_parseFromJSON(cJSON *steering_modeJSON);
cJSON *OpenAPI_steering_mode_convertToJSON(OpenAPI_steering_mode_t *steering_mode);