mirror of
https://github.com/open5gs/open5gs.git
synced 2025-11-23 16:01:21 +00:00
Add only one 5GC scenario (call-flow)
This commit is contained in:
65
lib/sbi/openapi/model/vsmf_update_error.h
Normal file
65
lib/sbi/openapi/model/vsmf_update_error.h
Normal file
@@ -0,0 +1,65 @@
|
||||
/*
|
||||
* vsmf_update_error.h
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_vsmf_update_error_H_
|
||||
#define _OpenAPI_vsmf_update_error_H_
|
||||
|
||||
#include <string.h>
|
||||
#include "../external/cJSON.h"
|
||||
#include "../include/list.h"
|
||||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
#include "arp.h"
|
||||
#include "n4_information.h"
|
||||
#include "ng_ap_cause.h"
|
||||
#include "problem_details.h"
|
||||
#include "ref_to_binary_data.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct OpenAPI_vsmf_update_error_s OpenAPI_vsmf_update_error_t;
|
||||
typedef struct OpenAPI_vsmf_update_error_s {
|
||||
struct OpenAPI_problem_details_s *error;
|
||||
int pti;
|
||||
char *n1sm_cause;
|
||||
struct OpenAPI_ref_to_binary_data_s *n1_sm_info_from_ue;
|
||||
struct OpenAPI_ref_to_binary_data_s *unknown_n1_sm_info;
|
||||
OpenAPI_list_t *failed_to_assign_ebi_list;
|
||||
struct OpenAPI_ng_ap_cause_s *ng_ap_cause;
|
||||
int _5g_mm_cause_value;
|
||||
char *recovery_time;
|
||||
struct OpenAPI_n4_information_s *n4_info;
|
||||
struct OpenAPI_n4_information_s *n4_info_ext1;
|
||||
struct OpenAPI_n4_information_s *n4_info_ext2;
|
||||
} OpenAPI_vsmf_update_error_t;
|
||||
|
||||
OpenAPI_vsmf_update_error_t *OpenAPI_vsmf_update_error_create(
|
||||
OpenAPI_problem_details_t *error,
|
||||
int pti,
|
||||
char *n1sm_cause,
|
||||
OpenAPI_ref_to_binary_data_t *n1_sm_info_from_ue,
|
||||
OpenAPI_ref_to_binary_data_t *unknown_n1_sm_info,
|
||||
OpenAPI_list_t *failed_to_assign_ebi_list,
|
||||
OpenAPI_ng_ap_cause_t *ng_ap_cause,
|
||||
int _5g_mm_cause_value,
|
||||
char *recovery_time,
|
||||
OpenAPI_n4_information_t *n4_info,
|
||||
OpenAPI_n4_information_t *n4_info_ext1,
|
||||
OpenAPI_n4_information_t *n4_info_ext2
|
||||
);
|
||||
void OpenAPI_vsmf_update_error_free(OpenAPI_vsmf_update_error_t *vsmf_update_error);
|
||||
OpenAPI_vsmf_update_error_t *OpenAPI_vsmf_update_error_parseFromJSON(cJSON *vsmf_update_errorJSON);
|
||||
cJSON *OpenAPI_vsmf_update_error_convertToJSON(OpenAPI_vsmf_update_error_t *vsmf_update_error);
|
||||
OpenAPI_vsmf_update_error_t *OpenAPI_vsmf_update_error_copy(OpenAPI_vsmf_update_error_t *dst, OpenAPI_vsmf_update_error_t *src);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _OpenAPI_vsmf_update_error_H_ */
|
||||
|
||||
Reference in New Issue
Block a user