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 @@
/*
* amf_event_subscription.h
*
*
*
*/
#ifndef _OpenAPI_amf_event_subscription_H_
@ -14,6 +14,7 @@
#include "../include/binary.h"
#include "amf_event.h"
#include "amf_event_mode.h"
#include "nf_type.h"
#ifdef __cplusplus
extern "C" {
@ -33,6 +34,7 @@ typedef struct OpenAPI_amf_event_subscription_s {
char *pei;
int any_ue;
struct OpenAPI_amf_event_mode_s *options;
OpenAPI_nf_type_e source_nf_type;
} OpenAPI_amf_event_subscription_t;
OpenAPI_amf_event_subscription_t *OpenAPI_amf_event_subscription_create(
@ -47,8 +49,9 @@ OpenAPI_amf_event_subscription_t *OpenAPI_amf_event_subscription_create(
char *gpsi,
char *pei,
int any_ue,
OpenAPI_amf_event_mode_t *options
);
OpenAPI_amf_event_mode_t *options,
OpenAPI_nf_type_e source_nf_type
);
void OpenAPI_amf_event_subscription_free(OpenAPI_amf_event_subscription_t *amf_event_subscription);
OpenAPI_amf_event_subscription_t *OpenAPI_amf_event_subscription_parseFromJSON(cJSON *amf_event_subscriptionJSON);
cJSON *OpenAPI_amf_event_subscription_convertToJSON(OpenAPI_amf_event_subscription_t *amf_event_subscription);