/* * metering_method.h * * */ #ifndef _OpenAPI_metering_method_H_ #define _OpenAPI_metering_method_H_ #include #include "../external/cJSON.h" #include "../include/list.h" #include "../include/keyValuePair.h" #include "../include/binary.h" #ifdef __cplusplus extern "C" { #endif typedef enum { OpenAPI_metering_method_NULL = 0, OpenAPI_metering_method_DURATION, OpenAPI_metering_method_VOLUME, OpenAPI_metering_method_DURATION_VOLUME, OpenAPI_metering_method_EVENT } OpenAPI_metering_method_e; char* OpenAPI_metering_method_ToString(OpenAPI_metering_method_e metering_method); OpenAPI_metering_method_e OpenAPI_metering_method_FromString(char* metering_method); #ifdef __cplusplus } #endif #endif /* _OpenAPI_metering_method_H_ */