Upgrade SBI(Service-based Interface)

* OpenAPI Generator version: 4.3.1 ==> 5.5.1
* Specification : r16.8.0 (20210629)
This commit is contained in:
Sukchan Lee 2021-07-07 17:32:55 +09:00
parent 2aaa8200c2
commit f278d58a69
1914 changed files with 91329 additions and 57361 deletions

View file

@ -1,7 +1,7 @@
/*
* data_change_notify.h
*
*
*
*/
#ifndef _OpenAPI_data_change_notify_H_
@ -13,7 +13,7 @@
#include "../include/keyValuePair.h"
#include "../include/binary.h"
#include "notify_item.h"
#include "sdm_subscription.h"
#include "sdm_subscription_1.h"
#include "subscription_data_subscriptions.h"
#ifdef __cplusplus
@ -25,7 +25,7 @@ typedef struct OpenAPI_data_change_notify_s {
OpenAPI_list_t *original_callback_reference;
char *ue_id;
OpenAPI_list_t *notify_items;
struct OpenAPI_sdm_subscription_s *sdm_subscription;
struct OpenAPI_sdm_subscription_1_s *sdm_subscription;
OpenAPI_list_t *additional_sdm_subscriptions;
OpenAPI_list_t *subscription_data_subscriptions;
} OpenAPI_data_change_notify_t;
@ -34,10 +34,10 @@ OpenAPI_data_change_notify_t *OpenAPI_data_change_notify_create(
OpenAPI_list_t *original_callback_reference,
char *ue_id,
OpenAPI_list_t *notify_items,
OpenAPI_sdm_subscription_t *sdm_subscription,
OpenAPI_sdm_subscription_1_t *sdm_subscription,
OpenAPI_list_t *additional_sdm_subscriptions,
OpenAPI_list_t *subscription_data_subscriptions
);
);
void OpenAPI_data_change_notify_free(OpenAPI_data_change_notify_t *data_change_notify);
OpenAPI_data_change_notify_t *OpenAPI_data_change_notify_parseFromJSON(cJSON *data_change_notifyJSON);
cJSON *OpenAPI_data_change_notify_convertToJSON(OpenAPI_data_change_notify_t *data_change_notify);