open5gs/lib/sbi/openapi/model/patch_result.h
Sukchan Lee f278d58a69 Upgrade SBI(Service-based Interface)
* OpenAPI Generator version: 4.3.1 ==> 5.5.1
* Specification : r16.8.0 (20210629)
2021-07-07 17:32:55 +09:00

39 lines
968 B
C

/*
* patch_result.h
*
*
*/
#ifndef _OpenAPI_patch_result_H_
#define _OpenAPI_patch_result_H_
#include <string.h>
#include "../external/cJSON.h"
#include "../include/list.h"
#include "../include/keyValuePair.h"
#include "../include/binary.h"
#include "report_item.h"
#ifdef __cplusplus
extern "C" {
#endif
typedef struct OpenAPI_patch_result_s OpenAPI_patch_result_t;
typedef struct OpenAPI_patch_result_s {
OpenAPI_list_t *report;
} OpenAPI_patch_result_t;
OpenAPI_patch_result_t *OpenAPI_patch_result_create(
OpenAPI_list_t *report
);
void OpenAPI_patch_result_free(OpenAPI_patch_result_t *patch_result);
OpenAPI_patch_result_t *OpenAPI_patch_result_parseFromJSON(cJSON *patch_resultJSON);
cJSON *OpenAPI_patch_result_convertToJSON(OpenAPI_patch_result_t *patch_result);
OpenAPI_patch_result_t *OpenAPI_patch_result_copy(OpenAPI_patch_result_t *dst, OpenAPI_patch_result_t *src);
#ifdef __cplusplus
}
#endif
#endif /* _OpenAPI_patch_result_H_ */