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

@ -26,7 +26,9 @@ typedef struct OpenAPI_gbr_qos_flow_information_s {
char *gua_fbr_dl;
char *gua_fbr_ul;
OpenAPI_notification_control_e notif_control;
bool is_max_packet_loss_rate_dl;
int max_packet_loss_rate_dl;
bool is_max_packet_loss_rate_ul;
int max_packet_loss_rate_ul;
OpenAPI_list_t *alternative_qos_profile_list;
} OpenAPI_gbr_qos_flow_information_t;
@ -37,7 +39,9 @@ OpenAPI_gbr_qos_flow_information_t *OpenAPI_gbr_qos_flow_information_create(
char *gua_fbr_dl,
char *gua_fbr_ul,
OpenAPI_notification_control_e notif_control,
bool is_max_packet_loss_rate_dl,
int max_packet_loss_rate_dl,
bool is_max_packet_loss_rate_ul,
int max_packet_loss_rate_ul,
OpenAPI_list_t *alternative_qos_profile_list
);