[Release-17] Upgrade SBI to v17.x.0

This commit is contained in:
Sukchan Lee 2023-03-01 19:56:49 +09:00
parent 969c116e77
commit 4d44b1843e
1687 changed files with 121604 additions and 9310 deletions

View file

@ -0,0 +1,67 @@
/*
* reporting_information.h
*
* Represents the type of reporting that the subscription requires.
*/
#ifndef _OpenAPI_reporting_information_H_
#define _OpenAPI_reporting_information_H_
#include <string.h>
#include "../external/cJSON.h"
#include "../include/list.h"
#include "../include/keyValuePair.h"
#include "../include/binary.h"
#include "notification_flag.h"
#include "notification_method_1.h"
#include "partitioning_criteria.h"
#ifdef __cplusplus
extern "C" {
#endif
typedef struct OpenAPI_reporting_information_s OpenAPI_reporting_information_t;
typedef struct OpenAPI_reporting_information_s {
bool is_imm_rep;
int imm_rep;
struct OpenAPI_notification_method_1_s *notif_method;
bool is_max_report_nbr;
int max_report_nbr;
char *mon_dur;
bool is_rep_period;
int rep_period;
bool is_samp_ratio;
int samp_ratio;
OpenAPI_list_t *partition_criteria;
bool is_grp_rep_time;
int grp_rep_time;
OpenAPI_notification_flag_e notif_flag;
} OpenAPI_reporting_information_t;
OpenAPI_reporting_information_t *OpenAPI_reporting_information_create(
bool is_imm_rep,
int imm_rep,
OpenAPI_notification_method_1_t *notif_method,
bool is_max_report_nbr,
int max_report_nbr,
char *mon_dur,
bool is_rep_period,
int rep_period,
bool is_samp_ratio,
int samp_ratio,
OpenAPI_list_t *partition_criteria,
bool is_grp_rep_time,
int grp_rep_time,
OpenAPI_notification_flag_e notif_flag
);
void OpenAPI_reporting_information_free(OpenAPI_reporting_information_t *reporting_information);
OpenAPI_reporting_information_t *OpenAPI_reporting_information_parseFromJSON(cJSON *reporting_informationJSON);
cJSON *OpenAPI_reporting_information_convertToJSON(OpenAPI_reporting_information_t *reporting_information);
OpenAPI_reporting_information_t *OpenAPI_reporting_information_copy(OpenAPI_reporting_information_t *dst, OpenAPI_reporting_information_t *src);
#ifdef __cplusplus
}
#endif
#endif /* _OpenAPI_reporting_information_H_ */