mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-02 05:10:10 +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
36
lib/sbi/openapi/model/dnn_selection_mode.h
Normal file
36
lib/sbi/openapi/model/dnn_selection_mode.h
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
/*
|
||||
* dnn_selection_mode.h
|
||||
*
|
||||
* Possible values are - VERIFIED - UE_DNN_NOT_VERIFIED - NW_DNN_NOT_VERIFIED
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_dnn_selection_mode_H_
|
||||
#define _OpenAPI_dnn_selection_mode_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_dnn_selection_mode_s OpenAPI_dnn_selection_mode_t;
|
||||
typedef struct OpenAPI_dnn_selection_mode_s {
|
||||
} OpenAPI_dnn_selection_mode_t;
|
||||
|
||||
OpenAPI_dnn_selection_mode_t *OpenAPI_dnn_selection_mode_create(
|
||||
);
|
||||
void OpenAPI_dnn_selection_mode_free(OpenAPI_dnn_selection_mode_t *dnn_selection_mode);
|
||||
OpenAPI_dnn_selection_mode_t *OpenAPI_dnn_selection_mode_parseFromJSON(cJSON *dnn_selection_modeJSON);
|
||||
cJSON *OpenAPI_dnn_selection_mode_convertToJSON(OpenAPI_dnn_selection_mode_t *dnn_selection_mode);
|
||||
OpenAPI_dnn_selection_mode_t *OpenAPI_dnn_selection_mode_copy(OpenAPI_dnn_selection_mode_t *dst, OpenAPI_dnn_selection_mode_t *src);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _OpenAPI_dnn_selection_mode_H_ */
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue