Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1012 Bytes

File metadata and controls

32 lines (23 loc) · 1012 Bytes

DepositHistory

Properties

Name Type Description Notes
code int
message str [optional]
deposits List[DepositHistoryItem]
cursor str

Example

from lighter.models.deposit_history import DepositHistory

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

# convert the object into a dict
deposit_history_dict = deposit_history_instance.to_dict()
# create an instance of DepositHistory from a dict
deposit_history_from_dict = DepositHistory.from_dict(deposit_history_dict)

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