[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

@ -1,7 +1,7 @@
/*
* amf_event_mode.h
*
*
* Describes how the reports shall be generated by a subscribed event
*/
#ifndef _OpenAPI_amf_event_mode_H_
@ -13,6 +13,8 @@
#include "../include/keyValuePair.h"
#include "../include/binary.h"
#include "amf_event_trigger.h"
#include "notification_flag.h"
#include "partitioning_criteria.h"
#ifdef __cplusplus
extern "C" {
@ -28,6 +30,8 @@ typedef struct OpenAPI_amf_event_mode_s {
int rep_period;
bool is_samp_ratio;
int samp_ratio;
OpenAPI_list_t *partitioning_criteria;
OpenAPI_notification_flag_e notif_flag;
} OpenAPI_amf_event_mode_t;
OpenAPI_amf_event_mode_t *OpenAPI_amf_event_mode_create(
@ -38,7 +42,9 @@ OpenAPI_amf_event_mode_t *OpenAPI_amf_event_mode_create(
bool is_rep_period,
int rep_period,
bool is_samp_ratio,
int samp_ratio
int samp_ratio,
OpenAPI_list_t *partitioning_criteria,
OpenAPI_notification_flag_e notif_flag
);
void OpenAPI_amf_event_mode_free(OpenAPI_amf_event_mode_t *amf_event_mode);
OpenAPI_amf_event_mode_t *OpenAPI_amf_event_mode_parseFromJSON(cJSON *amf_event_modeJSON);