[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,46 @@
/*
* dispersion_info.h
*
* Represents the Dispersion information. When subscribed event is \"DISPERSION\", the \"disperInfos\" attribute shall be included.
*/
#ifndef _OpenAPI_dispersion_info_H_
#define _OpenAPI_dispersion_info_H_
#include <string.h>
#include "../external/cJSON.h"
#include "../include/list.h"
#include "../include/keyValuePair.h"
#include "../include/binary.h"
#include "dispersion_collection.h"
#include "dispersion_type.h"
#ifdef __cplusplus
extern "C" {
#endif
typedef struct OpenAPI_dispersion_info_s OpenAPI_dispersion_info_t;
typedef struct OpenAPI_dispersion_info_s {
char *ts_start;
int ts_duration;
OpenAPI_list_t *disper_collects;
struct OpenAPI_dispersion_type_s *disper_type;
} OpenAPI_dispersion_info_t;
OpenAPI_dispersion_info_t *OpenAPI_dispersion_info_create(
char *ts_start,
int ts_duration,
OpenAPI_list_t *disper_collects,
OpenAPI_dispersion_type_t *disper_type
);
void OpenAPI_dispersion_info_free(OpenAPI_dispersion_info_t *dispersion_info);
OpenAPI_dispersion_info_t *OpenAPI_dispersion_info_parseFromJSON(cJSON *dispersion_infoJSON);
cJSON *OpenAPI_dispersion_info_convertToJSON(OpenAPI_dispersion_info_t *dispersion_info);
OpenAPI_dispersion_info_t *OpenAPI_dispersion_info_copy(OpenAPI_dispersion_info_t *dst, OpenAPI_dispersion_info_t *src);
#ifdef __cplusplus
}
#endif
#endif /* _OpenAPI_dispersion_info_H_ */