mirror of
https://github.com/discountry/ritmex-bot.git
synced 2026-09-09 16:28:06 +00:00
1.0 KiB
1.0 KiB
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)