mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-04 22:30: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
42
lib/sbi/openapi/model/exemption_ind.h
Normal file
42
lib/sbi/openapi/model/exemption_ind.h
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
/*
|
||||
* exemption_ind.h
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_exemption_ind_H_
|
||||
#define _OpenAPI_exemption_ind_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_exemption_ind_s OpenAPI_exemption_ind_t;
|
||||
typedef struct OpenAPI_exemption_ind_s {
|
||||
int dnn_congestion;
|
||||
int snssai_only_congestion;
|
||||
int snssai_dnn_congestion;
|
||||
} OpenAPI_exemption_ind_t;
|
||||
|
||||
OpenAPI_exemption_ind_t *OpenAPI_exemption_ind_create(
|
||||
int dnn_congestion,
|
||||
int snssai_only_congestion,
|
||||
int snssai_dnn_congestion
|
||||
);
|
||||
void OpenAPI_exemption_ind_free(OpenAPI_exemption_ind_t *exemption_ind);
|
||||
OpenAPI_exemption_ind_t *OpenAPI_exemption_ind_parseFromJSON(cJSON *exemption_indJSON);
|
||||
cJSON *OpenAPI_exemption_ind_convertToJSON(OpenAPI_exemption_ind_t *exemption_ind);
|
||||
OpenAPI_exemption_ind_t *OpenAPI_exemption_ind_copy(OpenAPI_exemption_ind_t *dst, OpenAPI_exemption_ind_t *src);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _OpenAPI_exemption_ind_H_ */
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue