open5gs/lib/sbi/openapi/model/pgw_info_1.h
Sukchan Lee 039b9d0aaa SBI updated
- openapi-generator version 5.2.0
- add priority/capacity/load in NFProfile/NFService
- add AllowedNfTypes in NFProfile/NFService
2021-07-16 17:02:33 +09:00

47 lines
1.1 KiB
C

/*
* pgw_info_1.h
*
*
*/
#ifndef _OpenAPI_pgw_info_1_H_
#define _OpenAPI_pgw_info_1_H_
#include <string.h>
#include "../external/cJSON.h"
#include "../include/list.h"
#include "../include/keyValuePair.h"
#include "../include/binary.h"
#include "plmn_id_1.h"
#ifdef __cplusplus
extern "C" {
#endif
typedef struct OpenAPI_pgw_info_1_s OpenAPI_pgw_info_1_t;
typedef struct OpenAPI_pgw_info_1_s {
char *dnn;
char *pgw_fqdn;
struct OpenAPI_plmn_id_1_s *plmn_id;
bool is_epdg_ind;
int epdg_ind;
} OpenAPI_pgw_info_1_t;
OpenAPI_pgw_info_1_t *OpenAPI_pgw_info_1_create(
char *dnn,
char *pgw_fqdn,
OpenAPI_plmn_id_1_t *plmn_id,
bool is_epdg_ind,
int epdg_ind
);
void OpenAPI_pgw_info_1_free(OpenAPI_pgw_info_1_t *pgw_info_1);
OpenAPI_pgw_info_1_t *OpenAPI_pgw_info_1_parseFromJSON(cJSON *pgw_info_1JSON);
cJSON *OpenAPI_pgw_info_1_convertToJSON(OpenAPI_pgw_info_1_t *pgw_info_1);
OpenAPI_pgw_info_1_t *OpenAPI_pgw_info_1_copy(OpenAPI_pgw_info_1_t *dst, OpenAPI_pgw_info_1_t *src);
#ifdef __cplusplus
}
#endif
#endif /* _OpenAPI_pgw_info_1_H_ */