Files
c/kubernetes/model/v1_flow_distinguisher_method.h
Kubernetes Prow Robot 6d68c83d69 Automated openapi generation from release-1.29
Signed-off-by: Kubernetes Prow Robot <k8s.ci.robot@gmail.com>
2024-01-23 12:51:46 +00:00

38 lines
1012 B
C

/*
* v1_flow_distinguisher_method.h
*
* FlowDistinguisherMethod specifies the method of a flow distinguisher.
*/
#ifndef _v1_flow_distinguisher_method_H_
#define _v1_flow_distinguisher_method_H_
#include <string.h>
#include "../external/cJSON.h"
#include "../include/list.h"
#include "../include/keyValuePair.h"
#include "../include/binary.h"
typedef struct v1_flow_distinguisher_method_t v1_flow_distinguisher_method_t;
typedef struct v1_flow_distinguisher_method_t {
char *type; // string
} v1_flow_distinguisher_method_t;
v1_flow_distinguisher_method_t *v1_flow_distinguisher_method_create(
char *type
);
void v1_flow_distinguisher_method_free(v1_flow_distinguisher_method_t *v1_flow_distinguisher_method);
v1_flow_distinguisher_method_t *v1_flow_distinguisher_method_parseFromJSON(cJSON *v1_flow_distinguisher_methodJSON);
cJSON *v1_flow_distinguisher_method_convertToJSON(v1_flow_distinguisher_method_t *v1_flow_distinguisher_method);
#endif /* _v1_flow_distinguisher_method_H_ */