mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-02 13:20:08 +00:00
Upgrade SBI(Service-based Interface)
* OpenAPI Generator version: 4.3.1 ==> 5.5.1 * Specification : r16.8.0 (20210629)
This commit is contained in:
parent
2aaa8200c2
commit
f278d58a69
1914 changed files with 91329 additions and 57361 deletions
|
|
@ -12,7 +12,8 @@
|
|||
#include "../include/list.h"
|
||||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
#include "network_area_info_2.h"
|
||||
#include "bdt_policy_status.h"
|
||||
#include "network_area_info_1.h"
|
||||
#include "snssai.h"
|
||||
#include "transfer_policy.h"
|
||||
#include "usage_threshold.h"
|
||||
|
|
@ -26,23 +27,29 @@ typedef struct OpenAPI_bdt_data_s {
|
|||
char *asp_id;
|
||||
struct OpenAPI_transfer_policy_s *trans_policy;
|
||||
char *bdt_ref_id;
|
||||
struct OpenAPI_network_area_info_2_s *nw_area_info;
|
||||
struct OpenAPI_network_area_info_1_s *nw_area_info;
|
||||
int num_of_ues;
|
||||
struct OpenAPI_usage_threshold_s *vol_per_ue;
|
||||
char *dnn;
|
||||
struct OpenAPI_snssai_s *snssai;
|
||||
char *traffic_des;
|
||||
struct OpenAPI_bdt_policy_status_s *bdtp_status;
|
||||
char *supp_feat;
|
||||
} OpenAPI_bdt_data_t;
|
||||
|
||||
OpenAPI_bdt_data_t *OpenAPI_bdt_data_create(
|
||||
char *asp_id,
|
||||
OpenAPI_transfer_policy_t *trans_policy,
|
||||
char *bdt_ref_id,
|
||||
OpenAPI_network_area_info_2_t *nw_area_info,
|
||||
OpenAPI_network_area_info_1_t *nw_area_info,
|
||||
int num_of_ues,
|
||||
OpenAPI_usage_threshold_t *vol_per_ue,
|
||||
char *dnn,
|
||||
OpenAPI_snssai_t *snssai
|
||||
);
|
||||
OpenAPI_snssai_t *snssai,
|
||||
char *traffic_des,
|
||||
OpenAPI_bdt_policy_status_t *bdtp_status,
|
||||
char *supp_feat
|
||||
);
|
||||
void OpenAPI_bdt_data_free(OpenAPI_bdt_data_t *bdt_data);
|
||||
OpenAPI_bdt_data_t *OpenAPI_bdt_data_parseFromJSON(cJSON *bdt_dataJSON);
|
||||
cJSON *OpenAPI_bdt_data_convertToJSON(OpenAPI_bdt_data_t *bdt_data);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue