Counter describes a quantity associated with a device.
| Name | Type | Description | Notes |
|---|---|---|---|
| value | str | Value defines how much of a certain device counter is available. |
from kubernetes.client.models.v1_counter import V1Counter
# TODO update the JSON string below
json = "{}"
# create an instance of V1Counter from a JSON string
v1_counter_instance = V1Counter.from_json(json)
# print the JSON string representation of the object
print(V1Counter.to_json())
# convert the object into a dict
v1_counter_dict = v1_counter_instance.to_dict()
# create an instance of V1Counter from a dict
v1_counter_from_dict = V1Counter.from_dict(v1_counter_dict)