Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.19 KB

SmartTransferStatisticOutflow.md

File metadata and controls

31 lines (22 loc) · 1.19 KB

SmartTransferStatisticOutflow

Outflow tickets data

Properties

Name Type Description Notes
coins List[SmartTransferCoinStatistic] [optional]
ticket_count int [optional]

Example

from fireblocks.models.smart_transfer_statistic_outflow import SmartTransferStatisticOutflow

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

# convert the object into a dict
smart_transfer_statistic_outflow_dict = smart_transfer_statistic_outflow_instance.to_dict()
# create an instance of SmartTransferStatisticOutflow from a dict
smart_transfer_statistic_outflow_from_dict = SmartTransferStatisticOutflow.from_dict(smart_transfer_statistic_outflow_dict)

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