Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.18 KB

SmartTransferStatisticInflow.md

File metadata and controls

31 lines (22 loc) · 1.18 KB

SmartTransferStatisticInflow

Inflow tickets data

Properties

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

Example

from fireblocks.models.smart_transfer_statistic_inflow import SmartTransferStatisticInflow

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

# convert the object into a dict
smart_transfer_statistic_inflow_dict = smart_transfer_statistic_inflow_instance.to_dict()
# create an instance of SmartTransferStatisticInflow from a dict
smart_transfer_statistic_inflow_from_dict = SmartTransferStatisticInflow.from_dict(smart_transfer_statistic_inflow_dict)

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