mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-04 14:20:09 +00:00
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:
parent
1326fc85dc
commit
039b9d0aaa
930 changed files with 7387 additions and 5434 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue