Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 825 Bytes

Counter.md

File metadata and controls

29 lines (21 loc) · 825 Bytes

Counter

Properties

Name Type Description Notes
id int [optional]
name int [optional]

Example

from sparkfly_client.models.counter import Counter

# TODO update the JSON string below
json = "{}"
# create an instance of Counter from a JSON string
counter_instance = Counter.from_json(json)
# print the JSON string representation of the object
print Counter.to_json()

# convert the object into a dict
counter_dict = counter_instance.to_dict()
# create an instance of Counter from a dict
counter_form_dict = counter.from_dict(counter_dict)

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