Files
c/kubernetes/model/v1_custom_resource_definition_condition.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

46 lines
1.4 KiB
C

/*
* v1_custom_resource_definition_condition.h
*
* CustomResourceDefinitionCondition contains details for the current condition of this pod.
*/
#ifndef _v1_custom_resource_definition_condition_H_
#define _v1_custom_resource_definition_condition_H_
#include <string.h>
#include "../external/cJSON.h"
#include "../include/list.h"
#include "../include/keyValuePair.h"
#include "../include/binary.h"
typedef struct v1_custom_resource_definition_condition_t v1_custom_resource_definition_condition_t;
typedef struct v1_custom_resource_definition_condition_t {
char *last_transition_time; //date time
char *message; // string
char *reason; // string
char *status; // string
char *type; // string
} v1_custom_resource_definition_condition_t;
v1_custom_resource_definition_condition_t *v1_custom_resource_definition_condition_create(
char *last_transition_time,
char *message,
char *reason,
char *status,
char *type
);
void v1_custom_resource_definition_condition_free(v1_custom_resource_definition_condition_t *v1_custom_resource_definition_condition);
v1_custom_resource_definition_condition_t *v1_custom_resource_definition_condition_parseFromJSON(cJSON *v1_custom_resource_definition_conditionJSON);
cJSON *v1_custom_resource_definition_condition_convertToJSON(v1_custom_resource_definition_condition_t *v1_custom_resource_definition_condition);
#endif /* _v1_custom_resource_definition_condition_H_ */