open5gs/lib/sbi/openapi/model/rat_type.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
922 B
C

/*
* rat_type.h
*
*
*/
#ifndef _OpenAPI_rat_type_H_
#define _OpenAPI_rat_type_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_rat_type_NULL = 0, OpenAPI_rat_type_NR, OpenAPI_rat_type_EUTRA, OpenAPI_rat_type_WLAN, OpenAPI_rat_type_VIRTUAL, OpenAPI_rat_type_NBIOT, OpenAPI_rat_type_WIRELINE, OpenAPI_rat_type_WIRELINE_CABLE, OpenAPI_rat_type_WIRELINE_BBF, OpenAPI_rat_type_LTE_M, OpenAPI_rat_type_NR_U, OpenAPI_rat_type_EUTRA_U, OpenAPI_rat_type_TRUSTED_N3GA, OpenAPI_rat_type_TRUSTED_WLAN, OpenAPI_rat_type_UTRA, OpenAPI_rat_type_GERA } OpenAPI_rat_type_e;
char* OpenAPI_rat_type_ToString(OpenAPI_rat_type_e rat_type);
OpenAPI_rat_type_e OpenAPI_rat_type_FromString(char* rat_type);
#ifdef __cplusplus
}
#endif
#endif /* _OpenAPI_rat_type_H_ */