open5gs/lib/sbi/openapi/model/qos_monitoring_report.h
2020-12-11 14:03:20 -05:00

44 lines
1.3 KiB
C

/*
* qos_monitoring_report.h
*
*
*/
#ifndef _OpenAPI_qos_monitoring_report_H_
#define _OpenAPI_qos_monitoring_report_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 struct OpenAPI_qos_monitoring_report_s OpenAPI_qos_monitoring_report_t;
typedef struct OpenAPI_qos_monitoring_report_s {
OpenAPI_list_t *ref_pcc_rule_ids;
OpenAPI_list_t *ul_delays;
OpenAPI_list_t *dl_delays;
OpenAPI_list_t *rt_delays;
} OpenAPI_qos_monitoring_report_t;
OpenAPI_qos_monitoring_report_t *OpenAPI_qos_monitoring_report_create(
OpenAPI_list_t *ref_pcc_rule_ids,
OpenAPI_list_t *ul_delays,
OpenAPI_list_t *dl_delays,
OpenAPI_list_t *rt_delays
);
void OpenAPI_qos_monitoring_report_free(OpenAPI_qos_monitoring_report_t *qos_monitoring_report);
OpenAPI_qos_monitoring_report_t *OpenAPI_qos_monitoring_report_parseFromJSON(cJSON *qos_monitoring_reportJSON);
cJSON *OpenAPI_qos_monitoring_report_convertToJSON(OpenAPI_qos_monitoring_report_t *qos_monitoring_report);
OpenAPI_qos_monitoring_report_t *OpenAPI_qos_monitoring_report_copy(OpenAPI_qos_monitoring_report_t *dst, OpenAPI_qos_monitoring_report_t *src);
#ifdef __cplusplus
}
#endif
#endif /* _OpenAPI_qos_monitoring_report_H_ */