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.v1alpha1_param_kind import V1alpha1ParamKind
# TODO update the JSON string below
json = "{}"
# create an instance of V1alpha1ParamKind from a JSON string
v1alpha1_param_kind_instance = V1alpha1ParamKind.from_json(json)
# print the JSON string representation of the object
print(V1alpha1ParamKind.to_json())
# convert the object into a dict
v1alpha1_param_kind_dict = v1alpha1_param_kind_instance.to_dict()
# create an instance of V1alpha1ParamKind from a dict
v1alpha1_param_kind_from_dict = V1alpha1ParamKind.from_dict(v1alpha1_param_kind_dict)