SBI updated

- openapi-generator version 5.2.0
- add priority/capacity/load in NFProfile/NFService
- add AllowedNfTypes in NFProfile/NFService
This commit is contained in:
Sukchan Lee 2021-07-16 17:02:33 +09:00
parent 1326fc85dc
commit 039b9d0aaa
930 changed files with 7387 additions and 5434 deletions

View file

@ -21,19 +21,27 @@ extern "C" {
typedef struct OpenAPI_reporting_options_s OpenAPI_reporting_options_t;
typedef struct OpenAPI_reporting_options_s {
struct OpenAPI_event_report_mode_s *report_mode;
bool is_max_num_of_reports;
int max_num_of_reports;
char *expiry;
bool is_sampling_ratio;
int sampling_ratio;
bool is_guard_time;
int guard_time;
bool is_report_period;
int report_period;
} OpenAPI_reporting_options_t;
OpenAPI_reporting_options_t *OpenAPI_reporting_options_create(
OpenAPI_event_report_mode_t *report_mode,
bool is_max_num_of_reports,
int max_num_of_reports,
char *expiry,
bool is_sampling_ratio,
int sampling_ratio,
bool is_guard_time,
int guard_time,
bool is_report_period,
int report_period
);
void OpenAPI_reporting_options_free(OpenAPI_reporting_options_t *reporting_options);