open5gs/lib/sbi/openapi/model/qos_monitoring_req.h
Sukchan Lee 9af4268bab arch: DB schema Changes (#796)
- New function : NSSF
- New feature : SMF selection
2021-03-08 21:25:09 +09:00

32 lines
780 B
C

/*
* qos_monitoring_req.h
*
*
*/
#ifndef _OpenAPI_qos_monitoring_req_H_
#define _OpenAPI_qos_monitoring_req_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_qos_monitoring_req_NULL = 0, OpenAPI_qos_monitoring_req_UL, OpenAPI_qos_monitoring_req_DL, OpenAPI_qos_monitoring_req_BOTH, OpenAPI_qos_monitoring_req_NONE } OpenAPI_qos_monitoring_req_e;
char* OpenAPI_qos_monitoring_req_ToString(OpenAPI_qos_monitoring_req_e qos_monitoring_req);
OpenAPI_qos_monitoring_req_e OpenAPI_qos_monitoring_req_FromString(char* qos_monitoring_req);
#ifdef __cplusplus
}
#endif
#endif /* _OpenAPI_qos_monitoring_req_H_ */