[Release-17] Upgrade SBI to v17.x.0

This commit is contained in:
Sukchan Lee 2023-03-01 19:56:49 +09:00
parent 969c116e77
commit 4d44b1843e
1687 changed files with 121604 additions and 9310 deletions

View file

@ -1,7 +1,7 @@
/*
* ee_profile_data.h
*
*
* Event Exposure Profile Data.
*/
#ifndef _OpenAPI_ee_profile_data_H_
@ -24,12 +24,20 @@ typedef struct OpenAPI_ee_profile_data_s {
OpenAPI_list_t *restricted_event_types;
char *supported_features;
OpenAPI_list_t* allowed_mtc_provider;
bool is_iwk_epc_restricted;
int iwk_epc_restricted;
char *imsi;
char *hss_group_id;
} OpenAPI_ee_profile_data_t;
OpenAPI_ee_profile_data_t *OpenAPI_ee_profile_data_create(
OpenAPI_list_t *restricted_event_types,
char *supported_features,
OpenAPI_list_t* allowed_mtc_provider
OpenAPI_list_t* allowed_mtc_provider,
bool is_iwk_epc_restricted,
int iwk_epc_restricted,
char *imsi,
char *hss_group_id
);
void OpenAPI_ee_profile_data_free(OpenAPI_ee_profile_data_t *ee_profile_data);
OpenAPI_ee_profile_data_t *OpenAPI_ee_profile_data_parseFromJSON(cJSON *ee_profile_dataJSON);