mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-04 14:20: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
37
lib/sbi/openapi/model/dataset_statistical_property.h
Normal file
37
lib/sbi/openapi/model/dataset_statistical_property.h
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
/*
|
||||
* dataset_statistical_property.h
|
||||
*
|
||||
* Possible values are: - UNIFORM_DIST_DATA: Indicates the use of data samples that are uniformly distributed according to the different aspects of the requested analytics. - NO_OUTLIERS: Indicates that the data samples shall disregard data samples that are at the extreme boundaries of the value range.
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_dataset_statistical_property_H_
|
||||
#define _OpenAPI_dataset_statistical_property_H_
|
||||
|
||||
#include <string.h>
|
||||
#include "../external/cJSON.h"
|
||||
#include "../include/list.h"
|
||||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
#include "dataset_statistical_property_any_of.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct OpenAPI_dataset_statistical_property_s OpenAPI_dataset_statistical_property_t;
|
||||
typedef struct OpenAPI_dataset_statistical_property_s {
|
||||
} OpenAPI_dataset_statistical_property_t;
|
||||
|
||||
OpenAPI_dataset_statistical_property_t *OpenAPI_dataset_statistical_property_create(
|
||||
);
|
||||
void OpenAPI_dataset_statistical_property_free(OpenAPI_dataset_statistical_property_t *dataset_statistical_property);
|
||||
OpenAPI_dataset_statistical_property_t *OpenAPI_dataset_statistical_property_parseFromJSON(cJSON *dataset_statistical_propertyJSON);
|
||||
cJSON *OpenAPI_dataset_statistical_property_convertToJSON(OpenAPI_dataset_statistical_property_t *dataset_statistical_property);
|
||||
OpenAPI_dataset_statistical_property_t *OpenAPI_dataset_statistical_property_copy(OpenAPI_dataset_statistical_property_t *dst, OpenAPI_dataset_statistical_property_t *src);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _OpenAPI_dataset_statistical_property_H_ */
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue