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
58
lib/sbi/openapi/model/ue_context_relocate_data.h
Normal file
58
lib/sbi/openapi/model/ue_context_relocate_data.h
Normal file
|
|
@ -0,0 +1,58 @@
|
|||
/*
|
||||
* ue_context_relocate_data.h
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_ue_context_relocate_data_H_
|
||||
#define _OpenAPI_ue_context_relocate_data_H_
|
||||
|
||||
#include <string.h>
|
||||
#include "../external/cJSON.h"
|
||||
#include "../include/list.h"
|
||||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
#include "n2_info_content.h"
|
||||
#include "n2_sm_information.h"
|
||||
#include "ng_ap_cause.h"
|
||||
#include "ng_ran_target_id.h"
|
||||
#include "ref_to_binary_data.h"
|
||||
#include "ue_context.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct OpenAPI_ue_context_relocate_data_s OpenAPI_ue_context_relocate_data_t;
|
||||
typedef struct OpenAPI_ue_context_relocate_data_s {
|
||||
struct OpenAPI_ue_context_s *ue_context;
|
||||
struct OpenAPI_ng_ran_target_id_s *target_id;
|
||||
struct OpenAPI_n2_info_content_s *source_to_target_data;
|
||||
struct OpenAPI_ref_to_binary_data_s *forward_relocation_request;
|
||||
OpenAPI_list_t *pdu_session_list;
|
||||
struct OpenAPI_n2_info_content_s *ue_radio_capability;
|
||||
struct OpenAPI_ng_ap_cause_s *ngap_cause;
|
||||
char *supported_features;
|
||||
} OpenAPI_ue_context_relocate_data_t;
|
||||
|
||||
OpenAPI_ue_context_relocate_data_t *OpenAPI_ue_context_relocate_data_create(
|
||||
OpenAPI_ue_context_t *ue_context,
|
||||
OpenAPI_ng_ran_target_id_t *target_id,
|
||||
OpenAPI_n2_info_content_t *source_to_target_data,
|
||||
OpenAPI_ref_to_binary_data_t *forward_relocation_request,
|
||||
OpenAPI_list_t *pdu_session_list,
|
||||
OpenAPI_n2_info_content_t *ue_radio_capability,
|
||||
OpenAPI_ng_ap_cause_t *ngap_cause,
|
||||
char *supported_features
|
||||
);
|
||||
void OpenAPI_ue_context_relocate_data_free(OpenAPI_ue_context_relocate_data_t *ue_context_relocate_data);
|
||||
OpenAPI_ue_context_relocate_data_t *OpenAPI_ue_context_relocate_data_parseFromJSON(cJSON *ue_context_relocate_dataJSON);
|
||||
cJSON *OpenAPI_ue_context_relocate_data_convertToJSON(OpenAPI_ue_context_relocate_data_t *ue_context_relocate_data);
|
||||
OpenAPI_ue_context_relocate_data_t *OpenAPI_ue_context_relocate_data_copy(OpenAPI_ue_context_relocate_data_t *dst, OpenAPI_ue_context_relocate_data_t *src);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _OpenAPI_ue_context_relocate_data_H_ */
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue