mirror of
https://github.com/open5gs/open5gs.git
synced 2025-11-22 15:31:16 +00:00
Add only one 5GC scenario (call-flow)
This commit is contained in:
38
lib/sbi/openapi/model/ref_to_binary_data.h
Normal file
38
lib/sbi/openapi/model/ref_to_binary_data.h
Normal 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_ */
|
||||
|
||||
Reference in New Issue
Block a user