mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-04 22:30:09 +00:00
37 lines
1.6 KiB
C
37 lines
1.6 KiB
C
/*
|
|
* 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_ */
|
|
|