open5gs/lib/sbi/openapi/model/twap_id.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

42 lines
890 B
C

/*
* twap_id.h
*
*
*/
#ifndef _OpenAPI_twap_id_H_
#define _OpenAPI_twap_id_H_
#include <string.h>
#include "../external/cJSON.h"
#include "../include/list.h"
#include "../include/keyValuePair.h"
#include "../include/binary.h"
#ifdef __cplusplus
extern "C" {
#endif
typedef struct OpenAPI_twap_id_s OpenAPI_twap_id_t;
typedef struct OpenAPI_twap_id_s {
char *ss_id;
char *bss_id;
char civic_address;
} OpenAPI_twap_id_t;
OpenAPI_twap_id_t *OpenAPI_twap_id_create(
char *ss_id,
char *bss_id,
char civic_address
);
void OpenAPI_twap_id_free(OpenAPI_twap_id_t *twap_id);
OpenAPI_twap_id_t *OpenAPI_twap_id_parseFromJSON(cJSON *twap_idJSON);
cJSON *OpenAPI_twap_id_convertToJSON(OpenAPI_twap_id_t *twap_id);
OpenAPI_twap_id_t *OpenAPI_twap_id_copy(OpenAPI_twap_id_t *dst, OpenAPI_twap_id_t *src);
#ifdef __cplusplus
}
#endif
#endif /* _OpenAPI_twap_id_H_ */