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,38 @@
/*
* ref_to_binary_data.h
*
*
*/
#ifndef _OpenAPI_ref_to_binary_data_H_
#define _OpenAPI_ref_to_binary_data_H_
#include <string.h>
#include "../external/cJSON.h"
#include "../include/list.h"
#include "../include/keyValuePair.h"
#include "../include/binary.h"
#ifdef __cplusplus
extern "C" {
#endif
typedef struct OpenAPI_ref_to_binary_data_s OpenAPI_ref_to_binary_data_t;
typedef struct OpenAPI_ref_to_binary_data_s {
char *content_id;
} OpenAPI_ref_to_binary_data_t;
OpenAPI_ref_to_binary_data_t *OpenAPI_ref_to_binary_data_create(
char *content_id
);
void OpenAPI_ref_to_binary_data_free(OpenAPI_ref_to_binary_data_t *ref_to_binary_data);
OpenAPI_ref_to_binary_data_t *OpenAPI_ref_to_binary_data_parseFromJSON(cJSON *ref_to_binary_dataJSON);
cJSON *OpenAPI_ref_to_binary_data_convertToJSON(OpenAPI_ref_to_binary_data_t *ref_to_binary_data);
OpenAPI_ref_to_binary_data_t *OpenAPI_ref_to_binary_data_copy(OpenAPI_ref_to_binary_data_t *dst, OpenAPI_ref_to_binary_data_t *src);
#ifdef __cplusplus
}
#endif
#endif /* _OpenAPI_ref_to_binary_data_H_ */