ParamKind is a tuple of Group Kind and Version.
| Name | Type | Description | Notes |
|---|---|---|---|
| api_version | str | apiVersion is the API group version the resources belong to. In format of "group/version". Required. | [optional] |
| kind | str | kind is the API kind the resources belong to. Required. | [optional] |
from kubernetes.client.models.v1_param_kind import V1ParamKind
# TODO update the JSON string below
json = "{}"
# create an instance of V1ParamKind from a JSON string
v1_param_kind_instance = V1ParamKind.from_json(json)
# print the JSON string representation of the object
print(V1ParamKind.to_json())
# convert the object into a dict
v1_param_kind_dict = v1_param_kind_instance.to_dict()
# create an instance of V1ParamKind from a dict
v1_param_kind_from_dict = V1ParamKind.from_dict(v1_param_kind_dict)