mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-04 14:20:09 +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
71
lib/sbi/openapi/model/ext_amf_event_subscription.h
Normal file
71
lib/sbi/openapi/model/ext_amf_event_subscription.h
Normal file
|
|
@ -0,0 +1,71 @@
|
|||
/*
|
||||
* ext_amf_event_subscription.h
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_ext_amf_event_subscription_H_
|
||||
#define _OpenAPI_ext_amf_event_subscription_H_
|
||||
|
||||
#include <string.h>
|
||||
#include "../external/cJSON.h"
|
||||
#include "../include/list.h"
|
||||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
#include "amf_event.h"
|
||||
#include "amf_event_mode.h"
|
||||
#include "amf_event_subscription.h"
|
||||
#include "amf_event_subscription_add_info.h"
|
||||
#include "nf_type.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct OpenAPI_ext_amf_event_subscription_s OpenAPI_ext_amf_event_subscription_t;
|
||||
typedef struct OpenAPI_ext_amf_event_subscription_s {
|
||||
OpenAPI_list_t *event_list;
|
||||
char *event_notify_uri;
|
||||
char *notify_correlation_id;
|
||||
char *nf_id;
|
||||
char *subs_change_notify_uri;
|
||||
char *subs_change_notify_correlation_id;
|
||||
char *supi;
|
||||
char *group_id;
|
||||
char *gpsi;
|
||||
char *pei;
|
||||
int any_ue;
|
||||
struct OpenAPI_amf_event_mode_s *options;
|
||||
OpenAPI_nf_type_e source_nf_type;
|
||||
OpenAPI_list_t *binding_info;
|
||||
OpenAPI_nf_type_e subscribing_nf_type;
|
||||
} OpenAPI_ext_amf_event_subscription_t;
|
||||
|
||||
OpenAPI_ext_amf_event_subscription_t *OpenAPI_ext_amf_event_subscription_create(
|
||||
OpenAPI_list_t *event_list,
|
||||
char *event_notify_uri,
|
||||
char *notify_correlation_id,
|
||||
char *nf_id,
|
||||
char *subs_change_notify_uri,
|
||||
char *subs_change_notify_correlation_id,
|
||||
char *supi,
|
||||
char *group_id,
|
||||
char *gpsi,
|
||||
char *pei,
|
||||
int any_ue,
|
||||
OpenAPI_amf_event_mode_t *options,
|
||||
OpenAPI_nf_type_e source_nf_type,
|
||||
OpenAPI_list_t *binding_info,
|
||||
OpenAPI_nf_type_e subscribing_nf_type
|
||||
);
|
||||
void OpenAPI_ext_amf_event_subscription_free(OpenAPI_ext_amf_event_subscription_t *ext_amf_event_subscription);
|
||||
OpenAPI_ext_amf_event_subscription_t *OpenAPI_ext_amf_event_subscription_parseFromJSON(cJSON *ext_amf_event_subscriptionJSON);
|
||||
cJSON *OpenAPI_ext_amf_event_subscription_convertToJSON(OpenAPI_ext_amf_event_subscription_t *ext_amf_event_subscription);
|
||||
OpenAPI_ext_amf_event_subscription_t *OpenAPI_ext_amf_event_subscription_copy(OpenAPI_ext_amf_event_subscription_t *dst, OpenAPI_ext_amf_event_subscription_t *src);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _OpenAPI_ext_amf_event_subscription_H_ */
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue