46 lines
1.2 KiB
C
46 lines
1.2 KiB
C
/*
|
|
* v1beta3_flow_schema_condition.h
|
|
*
|
|
* FlowSchemaCondition describes conditions for a FlowSchema.
|
|
*/
|
|
|
|
#ifndef _v1beta3_flow_schema_condition_H_
|
|
#define _v1beta3_flow_schema_condition_H_
|
|
|
|
#include <string.h>
|
|
#include "../external/cJSON.h"
|
|
#include "../include/list.h"
|
|
#include "../include/keyValuePair.h"
|
|
#include "../include/binary.h"
|
|
|
|
typedef struct v1beta3_flow_schema_condition_t v1beta3_flow_schema_condition_t;
|
|
|
|
|
|
|
|
|
|
typedef struct v1beta3_flow_schema_condition_t {
|
|
char *last_transition_time; //date time
|
|
char *message; // string
|
|
char *reason; // string
|
|
char *status; // string
|
|
char *type; // string
|
|
|
|
} v1beta3_flow_schema_condition_t;
|
|
|
|
v1beta3_flow_schema_condition_t *v1beta3_flow_schema_condition_create(
|
|
char *last_transition_time,
|
|
char *message,
|
|
char *reason,
|
|
char *status,
|
|
char *type
|
|
);
|
|
|
|
void v1beta3_flow_schema_condition_free(v1beta3_flow_schema_condition_t *v1beta3_flow_schema_condition);
|
|
|
|
v1beta3_flow_schema_condition_t *v1beta3_flow_schema_condition_parseFromJSON(cJSON *v1beta3_flow_schema_conditionJSON);
|
|
|
|
cJSON *v1beta3_flow_schema_condition_convertToJSON(v1beta3_flow_schema_condition_t *v1beta3_flow_schema_condition);
|
|
|
|
#endif /* _v1beta3_flow_schema_condition_H_ */
|
|
|