mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-03 05:40:09 +00:00
Add only one 5GC scenario (call-flow)
This commit is contained in:
parent
20008b6a13
commit
dbee687a75
1415 changed files with 86635 additions and 5877 deletions
40
lib/sbi/openapi/model/mo_exp_data_counter.h
Normal file
40
lib/sbi/openapi/model/mo_exp_data_counter.h
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
/*
|
||||
* mo_exp_data_counter.h
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_mo_exp_data_counter_H_
|
||||
#define _OpenAPI_mo_exp_data_counter_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_mo_exp_data_counter_s OpenAPI_mo_exp_data_counter_t;
|
||||
typedef struct OpenAPI_mo_exp_data_counter_s {
|
||||
int counter;
|
||||
char *time_stamp;
|
||||
} OpenAPI_mo_exp_data_counter_t;
|
||||
|
||||
OpenAPI_mo_exp_data_counter_t *OpenAPI_mo_exp_data_counter_create(
|
||||
int counter,
|
||||
char *time_stamp
|
||||
);
|
||||
void OpenAPI_mo_exp_data_counter_free(OpenAPI_mo_exp_data_counter_t *mo_exp_data_counter);
|
||||
OpenAPI_mo_exp_data_counter_t *OpenAPI_mo_exp_data_counter_parseFromJSON(cJSON *mo_exp_data_counterJSON);
|
||||
cJSON *OpenAPI_mo_exp_data_counter_convertToJSON(OpenAPI_mo_exp_data_counter_t *mo_exp_data_counter);
|
||||
OpenAPI_mo_exp_data_counter_t *OpenAPI_mo_exp_data_counter_copy(OpenAPI_mo_exp_data_counter_t *dst, OpenAPI_mo_exp_data_counter_t *src);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _OpenAPI_mo_exp_data_counter_H_ */
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue