mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-02 05:10:10 +00:00
[Release-17] Upgrade SBI to v17.x.0
This commit is contained in:
parent
969c116e77
commit
4d44b1843e
1687 changed files with 121604 additions and 9310 deletions
45
lib/sbi/openapi/model/user_data_congestion_info.h
Normal file
45
lib/sbi/openapi/model/user_data_congestion_info.h
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
/*
|
||||
* user_data_congestion_info.h
|
||||
*
|
||||
* Represents the user data congestion information.
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_user_data_congestion_info_H_
|
||||
#define _OpenAPI_user_data_congestion_info_H_
|
||||
|
||||
#include <string.h>
|
||||
#include "../external/cJSON.h"
|
||||
#include "../include/list.h"
|
||||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
#include "congestion_info.h"
|
||||
#include "network_area_info.h"
|
||||
#include "snssai.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct OpenAPI_user_data_congestion_info_s OpenAPI_user_data_congestion_info_t;
|
||||
typedef struct OpenAPI_user_data_congestion_info_s {
|
||||
struct OpenAPI_network_area_info_s *network_area;
|
||||
struct OpenAPI_congestion_info_s *congestion_info;
|
||||
struct OpenAPI_snssai_s *snssai;
|
||||
} OpenAPI_user_data_congestion_info_t;
|
||||
|
||||
OpenAPI_user_data_congestion_info_t *OpenAPI_user_data_congestion_info_create(
|
||||
OpenAPI_network_area_info_t *network_area,
|
||||
OpenAPI_congestion_info_t *congestion_info,
|
||||
OpenAPI_snssai_t *snssai
|
||||
);
|
||||
void OpenAPI_user_data_congestion_info_free(OpenAPI_user_data_congestion_info_t *user_data_congestion_info);
|
||||
OpenAPI_user_data_congestion_info_t *OpenAPI_user_data_congestion_info_parseFromJSON(cJSON *user_data_congestion_infoJSON);
|
||||
cJSON *OpenAPI_user_data_congestion_info_convertToJSON(OpenAPI_user_data_congestion_info_t *user_data_congestion_info);
|
||||
OpenAPI_user_data_congestion_info_t *OpenAPI_user_data_congestion_info_copy(OpenAPI_user_data_congestion_info_t *dst, OpenAPI_user_data_congestion_info_t *src);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _OpenAPI_user_data_congestion_info_H_ */
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue