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
|
|
@ -23,10 +23,15 @@ typedef struct OpenAPI_trigger_s OpenAPI_trigger_t;
|
|||
typedef struct OpenAPI_trigger_s {
|
||||
struct OpenAPI_trigger_type_s *trigger_type;
|
||||
struct OpenAPI_trigger_category_s *trigger_category;
|
||||
bool is_time_limit;
|
||||
int time_limit;
|
||||
bool is_volume_limit;
|
||||
int volume_limit;
|
||||
bool is_volume_limit64;
|
||||
int volume_limit64;
|
||||
bool is_event_limit;
|
||||
int event_limit;
|
||||
bool is_max_number_ofccc;
|
||||
int max_number_ofccc;
|
||||
char *tariff_time_change;
|
||||
} OpenAPI_trigger_t;
|
||||
|
|
@ -34,10 +39,15 @@ typedef struct OpenAPI_trigger_s {
|
|||
OpenAPI_trigger_t *OpenAPI_trigger_create(
|
||||
OpenAPI_trigger_type_t *trigger_type,
|
||||
OpenAPI_trigger_category_t *trigger_category,
|
||||
bool is_time_limit,
|
||||
int time_limit,
|
||||
bool is_volume_limit,
|
||||
int volume_limit,
|
||||
bool is_volume_limit64,
|
||||
int volume_limit64,
|
||||
bool is_event_limit,
|
||||
int event_limit,
|
||||
bool is_max_number_ofccc,
|
||||
int max_number_ofccc,
|
||||
char *tariff_time_change
|
||||
);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue