FlowSchemaStatus represents the current state of a FlowSchema.
| Name | Type | Description | Notes |
|---|---|---|---|
| conditions | List[V1FlowSchemaCondition] | `conditions` is a list of the current states of FlowSchema. | [optional] |
from kubernetes.client.models.v1_flow_schema_status import V1FlowSchemaStatus
# TODO update the JSON string below
json = "{}"
# create an instance of V1FlowSchemaStatus from a JSON string
v1_flow_schema_status_instance = V1FlowSchemaStatus.from_json(json)
# print the JSON string representation of the object
print(V1FlowSchemaStatus.to_json())
# convert the object into a dict
v1_flow_schema_status_dict = v1_flow_schema_status_instance.to_dict()
# create an instance of V1FlowSchemaStatus from a dict
v1_flow_schema_status_from_dict = V1FlowSchemaStatus.from_dict(v1_flow_schema_status_dict)