Files
c/kubernetes/model/v1_watch_event.h
Hui Yu ab432efa49 [API] Re-run code generator to merge the changes of OpenAPITools/openapi-generator to fix the bug:
* If the data type of query parameter is "int" or "bool" in OpenAPI Spec, the request url will not be generated correctly. ( PR #6692 )
2020-06-20 09:41:15 +08:00

41 lines
804 B
C

/*
* v1_watch_event.h
*
* Event represents a single event to a watched resource.
*/
#ifndef _v1_watch_event_H_
#define _v1_watch_event_H_
#include <string.h>
#include "../external/cJSON.h"
#include "../include/list.h"
#include "../include/keyValuePair.h"
#include "../include/binary.h"
typedef struct v1_watch_event_t v1_watch_event_t;
#include "object.h"
typedef struct v1_watch_event_t {
object_t *object; //object
char *type; // string
} v1_watch_event_t;
v1_watch_event_t *v1_watch_event_create(
object_t *object,
char *type
);
void v1_watch_event_free(v1_watch_event_t *v1_watch_event);
v1_watch_event_t *v1_watch_event_parseFromJSON(cJSON *v1_watch_eventJSON);
cJSON *v1_watch_event_convertToJSON(v1_watch_event_t *v1_watch_event);
#endif /* _v1_watch_event_H_ */