mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-04 22:30:09 +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
44
lib/sbi/openapi/model/as_time_distribution_param.h
Normal file
44
lib/sbi/openapi/model/as_time_distribution_param.h
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
/*
|
||||
* as_time_distribution_param.h
|
||||
*
|
||||
* Contains the 5G acess stratum time distribution parameters.
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_as_time_distribution_param_H_
|
||||
#define _OpenAPI_as_time_distribution_param_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_as_time_distribution_param_s OpenAPI_as_time_distribution_param_t;
|
||||
typedef struct OpenAPI_as_time_distribution_param_s {
|
||||
bool is_as_time_dist_ind;
|
||||
int as_time_dist_ind;
|
||||
bool is_uu_error_budget;
|
||||
int uu_error_budget;
|
||||
} OpenAPI_as_time_distribution_param_t;
|
||||
|
||||
OpenAPI_as_time_distribution_param_t *OpenAPI_as_time_distribution_param_create(
|
||||
bool is_as_time_dist_ind,
|
||||
int as_time_dist_ind,
|
||||
bool is_uu_error_budget,
|
||||
int uu_error_budget
|
||||
);
|
||||
void OpenAPI_as_time_distribution_param_free(OpenAPI_as_time_distribution_param_t *as_time_distribution_param);
|
||||
OpenAPI_as_time_distribution_param_t *OpenAPI_as_time_distribution_param_parseFromJSON(cJSON *as_time_distribution_paramJSON);
|
||||
cJSON *OpenAPI_as_time_distribution_param_convertToJSON(OpenAPI_as_time_distribution_param_t *as_time_distribution_param);
|
||||
OpenAPI_as_time_distribution_param_t *OpenAPI_as_time_distribution_param_copy(OpenAPI_as_time_distribution_param_t *dst, OpenAPI_as_time_distribution_param_t *src);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _OpenAPI_as_time_distribution_param_H_ */
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue