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

45 lines
1.2 KiB
C

/*
* plmn_ec_info.h
*
*
*/
#ifndef _OpenAPI_plmn_ec_info_H_
#define _OpenAPI_plmn_ec_info_H_
#include <string.h>
#include "../external/cJSON.h"
#include "../include/list.h"
#include "../include/keyValuePair.h"
#include "../include/binary.h"
#include "ec_restriction_data_wb.h"
#include "plmn_id.h"
#ifdef __cplusplus
extern "C" {
#endif
typedef struct OpenAPI_plmn_ec_info_s OpenAPI_plmn_ec_info_t;
typedef struct OpenAPI_plmn_ec_info_s {
struct OpenAPI_plmn_id_s *plmn_id;
struct OpenAPI_ec_restriction_data_wb_s *ec_restriction_data_wb;
int ec_restriction_data_nb;
} OpenAPI_plmn_ec_info_t;
OpenAPI_plmn_ec_info_t *OpenAPI_plmn_ec_info_create(
OpenAPI_plmn_id_t *plmn_id,
OpenAPI_ec_restriction_data_wb_t *ec_restriction_data_wb,
int ec_restriction_data_nb
);
void OpenAPI_plmn_ec_info_free(OpenAPI_plmn_ec_info_t *plmn_ec_info);
OpenAPI_plmn_ec_info_t *OpenAPI_plmn_ec_info_parseFromJSON(cJSON *plmn_ec_infoJSON);
cJSON *OpenAPI_plmn_ec_info_convertToJSON(OpenAPI_plmn_ec_info_t *plmn_ec_info);
OpenAPI_plmn_ec_info_t *OpenAPI_plmn_ec_info_copy(OpenAPI_plmn_ec_info_t *dst, OpenAPI_plmn_ec_info_t *src);
#ifdef __cplusplus
}
#endif
#endif /* _OpenAPI_plmn_ec_info_H_ */