Add only one 5GC scenario (call-flow)

This commit is contained in:
Sukchan Lee 2020-06-17 01:22:28 -04:00
parent 20008b6a13
commit dbee687a75
1415 changed files with 86635 additions and 5877 deletions

View file

@ -0,0 +1,48 @@
/*
* send_mo_data_req_data.h
*
*
*/
#ifndef _OpenAPI_send_mo_data_req_data_H_
#define _OpenAPI_send_mo_data_req_data_H_
#include <string.h>
#include "../external/cJSON.h"
#include "../include/list.h"
#include "../include/keyValuePair.h"
#include "../include/binary.h"
#include "mo_exception_data_flag.h"
#include "mo_exp_data_counter.h"
#include "ref_to_binary_data.h"
#include "user_location.h"
#ifdef __cplusplus
extern "C" {
#endif
typedef struct OpenAPI_send_mo_data_req_data_s OpenAPI_send_mo_data_req_data_t;
typedef struct OpenAPI_send_mo_data_req_data_s {
struct OpenAPI_ref_to_binary_data_s *mo_data;
struct OpenAPI_mo_exception_data_flag_s *mo_exp_data_ind;
struct OpenAPI_mo_exp_data_counter_s *mo_exp_data_counter;
struct OpenAPI_user_location_s *ue_location;
} OpenAPI_send_mo_data_req_data_t;
OpenAPI_send_mo_data_req_data_t *OpenAPI_send_mo_data_req_data_create(
OpenAPI_ref_to_binary_data_t *mo_data,
OpenAPI_mo_exception_data_flag_t *mo_exp_data_ind,
OpenAPI_mo_exp_data_counter_t *mo_exp_data_counter,
OpenAPI_user_location_t *ue_location
);
void OpenAPI_send_mo_data_req_data_free(OpenAPI_send_mo_data_req_data_t *send_mo_data_req_data);
OpenAPI_send_mo_data_req_data_t *OpenAPI_send_mo_data_req_data_parseFromJSON(cJSON *send_mo_data_req_dataJSON);
cJSON *OpenAPI_send_mo_data_req_data_convertToJSON(OpenAPI_send_mo_data_req_data_t *send_mo_data_req_data);
OpenAPI_send_mo_data_req_data_t *OpenAPI_send_mo_data_req_data_copy(OpenAPI_send_mo_data_req_data_t *dst, OpenAPI_send_mo_data_req_data_t *src);
#ifdef __cplusplus
}
#endif
#endif /* _OpenAPI_send_mo_data_req_data_H_ */