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

38 lines
816 B
C

/*
* v1_namespace_spec.h
*
* NamespaceSpec describes the attributes on a Namespace.
*/
#ifndef _v1_namespace_spec_H_
#define _v1_namespace_spec_H_
#include <string.h>
#include "../external/cJSON.h"
#include "../include/list.h"
#include "../include/keyValuePair.h"
#include "../include/binary.h"
typedef struct v1_namespace_spec_t v1_namespace_spec_t;
typedef struct v1_namespace_spec_t {
list_t *finalizers; //primitive container
} v1_namespace_spec_t;
v1_namespace_spec_t *v1_namespace_spec_create(
list_t *finalizers
);
void v1_namespace_spec_free(v1_namespace_spec_t *v1_namespace_spec);
v1_namespace_spec_t *v1_namespace_spec_parseFromJSON(cJSON *v1_namespace_specJSON);
cJSON *v1_namespace_spec_convertToJSON(v1_namespace_spec_t *v1_namespace_spec);
#endif /* _v1_namespace_spec_H_ */