Name | Type | Description | Notes |
---|---|---|---|
name | int |
from sparkfly_client.models.counter_input import CounterInput
# TODO update the JSON string below
json = "{}"
# create an instance of CounterInput from a JSON string
counter_input_instance = CounterInput.from_json(json)
# print the JSON string representation of the object
print CounterInput.to_json()
# convert the object into a dict
counter_input_dict = counter_input_instance.to_dict()
# create an instance of CounterInput from a dict
counter_input_form_dict = counter_input.from_dict(counter_input_dict)