FlowDistinguisherMethod specifies the method of a flow distinguisher.
| Name | Type | Description | Notes |
|---|---|---|---|
| type | str | `type` is the type of flow distinguisher method The supported types are "ByUser" and "ByNamespace". Required. |
from kubernetes.client.models.v1_flow_distinguisher_method import V1FlowDistinguisherMethod
# TODO update the JSON string below
json = "{}"
# create an instance of V1FlowDistinguisherMethod from a JSON string
v1_flow_distinguisher_method_instance = V1FlowDistinguisherMethod.from_json(json)
# print the JSON string representation of the object
print(V1FlowDistinguisherMethod.to_json())
# convert the object into a dict
v1_flow_distinguisher_method_dict = v1_flow_distinguisher_method_instance.to_dict()
# create an instance of V1FlowDistinguisherMethod from a dict
v1_flow_distinguisher_method_from_dict = V1FlowDistinguisherMethod.from_dict(v1_flow_distinguisher_method_dict)