mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-02 21:30:10 +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
|
|
@ -20,25 +20,41 @@ extern "C" {
|
|||
typedef struct OpenAPI_accu_usage_report_s OpenAPI_accu_usage_report_t;
|
||||
typedef struct OpenAPI_accu_usage_report_s {
|
||||
char *ref_um_ids;
|
||||
bool is_vol_usage;
|
||||
long vol_usage;
|
||||
bool is_vol_usage_uplink;
|
||||
long vol_usage_uplink;
|
||||
bool is_vol_usage_downlink;
|
||||
long vol_usage_downlink;
|
||||
bool is_time_usage;
|
||||
int time_usage;
|
||||
bool is_next_vol_usage;
|
||||
long next_vol_usage;
|
||||
bool is_next_vol_usage_uplink;
|
||||
long next_vol_usage_uplink;
|
||||
bool is_next_vol_usage_downlink;
|
||||
long next_vol_usage_downlink;
|
||||
bool is_next_time_usage;
|
||||
int next_time_usage;
|
||||
} OpenAPI_accu_usage_report_t;
|
||||
|
||||
OpenAPI_accu_usage_report_t *OpenAPI_accu_usage_report_create(
|
||||
char *ref_um_ids,
|
||||
bool is_vol_usage,
|
||||
long vol_usage,
|
||||
bool is_vol_usage_uplink,
|
||||
long vol_usage_uplink,
|
||||
bool is_vol_usage_downlink,
|
||||
long vol_usage_downlink,
|
||||
bool is_time_usage,
|
||||
int time_usage,
|
||||
bool is_next_vol_usage,
|
||||
long next_vol_usage,
|
||||
bool is_next_vol_usage_uplink,
|
||||
long next_vol_usage_uplink,
|
||||
bool is_next_vol_usage_downlink,
|
||||
long next_vol_usage_downlink,
|
||||
bool is_next_time_usage,
|
||||
int next_time_usage
|
||||
);
|
||||
void OpenAPI_accu_usage_report_free(OpenAPI_accu_usage_report_t *accu_usage_report);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue