Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1 KB

File metadata and controls

32 lines (23 loc) · 1 KB

WithdrawHistory

Properties

Name Type Description Notes
code int
message str [optional]
withdraws List[WithdrawHistoryItem]
cursor str

Example

from lighter.models.withdraw_history import WithdrawHistory

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

# convert the object into a dict
withdraw_history_dict = withdraw_history_instance.to_dict()
# create an instance of WithdrawHistory from a dict
withdraw_history_from_dict = WithdrawHistory.from_dict(withdraw_history_dict)

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