Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 867 Bytes

WTCountResult.md

File metadata and controls

29 lines (20 loc) · 867 Bytes

WTCountResult

Properties

Name Type Description Notes
count float

Example

from wallet.models.wt_count_result import WTCountResult

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

# convert the object into a dict
wt_count_result_dict = wt_count_result_instance.to_dict()
# create an instance of WTCountResult from a dict
wt_count_result_form_dict = wt_count_result.from_dict(wt_count_result_dict)

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