Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.31 KB

SmartTransferStatistic.md

File metadata and controls

33 lines (24 loc) · 1.31 KB

SmartTransferStatistic

Smart transfers statistic

Properties

Name Type Description Notes
inflow SmartTransferStatisticInflow
outflow SmartTransferStatisticOutflow
total_active_tickets int Number of total active tickets
total_inactive_tickets int Number of total inactive tickets (expired, canceled, completed)

Example

from fireblocks.models.smart_transfer_statistic import SmartTransferStatistic

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

# convert the object into a dict
smart_transfer_statistic_dict = smart_transfer_statistic_instance.to_dict()
# create an instance of SmartTransferStatistic from a dict
smart_transfer_statistic_from_dict = SmartTransferStatistic.from_dict(smart_transfer_statistic_dict)

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