open5gs/lib/sbi/openapi/model/updated_item.h

40 lines
884 B
C
Raw Normal View History

2020-06-04 18:12:05 +00:00
/*
* updated_item.h
*
* Identifies a fragment of a resource.
*/
#ifndef _OpenAPI_updated_item_H_
#define _OpenAPI_updated_item_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_updated_item_s OpenAPI_updated_item_t;
typedef struct OpenAPI_updated_item_s {
char *item;
char *value;
} OpenAPI_updated_item_t;
OpenAPI_updated_item_t *OpenAPI_updated_item_create(
char *item,
char *value
);
void OpenAPI_updated_item_free(OpenAPI_updated_item_t *updated_item);
OpenAPI_updated_item_t *OpenAPI_updated_item_parseFromJSON(cJSON *updated_itemJSON);
cJSON *OpenAPI_updated_item_convertToJSON(OpenAPI_updated_item_t *updated_item);
#ifdef __cplusplus
}
#endif
#endif /* _OpenAPI_updated_item_H_ */