Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 852 Bytes

CounterInput.md

File metadata and controls

28 lines (20 loc) · 852 Bytes

CounterInput

Properties

Name Type Description Notes
name int

Example

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)

[Back to Model list] [Back to API list] [Back to README]