Files
ritmex-bot/docs/lighter/lighter-python-main/docs/TransferHistory.md
T

1.0 KiB

TransferHistory

Properties

Name Type Description Notes
code int
message str [optional]
transfers List[TransferHistoryItem]
cursor str

Example

from lighter.models.transfer_history import TransferHistory

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

# convert the object into a dict
transfer_history_dict = transfer_history_instance.to_dict()
# create an instance of TransferHistory from a dict
transfer_history_from_dict = TransferHistory.from_dict(transfer_history_dict)

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