[Release-17] Upgrade SBI to v17.x.0

This commit is contained in:
Sukchan Lee 2023-03-01 19:56:49 +09:00
parent 969c116e77
commit 4d44b1843e
1687 changed files with 121604 additions and 9310 deletions

View 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_ */