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

31 lines
694 B
C

/*
* data_set_id.h
*
*
*/
#ifndef _OpenAPI_data_set_id_H_
#define _OpenAPI_data_set_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 enum { OpenAPI_data_set_id_NULL = 0, OpenAPI_data_set_id_SUBSCRIPTION, OpenAPI_data_set_id_POLICY, OpenAPI_data_set_id_EXPOSURE, OpenAPI_data_set_id_APPLICATION } OpenAPI_data_set_id_e;
char* OpenAPI_data_set_id_ToString(OpenAPI_data_set_id_e data_set_id);
OpenAPI_data_set_id_e OpenAPI_data_set_id_FromString(char* data_set_id);
#ifdef __cplusplus
}
#endif
#endif /* _OpenAPI_data_set_id_H_ */