Withdrawal struct
Name | Type | Description | Notes |
---|---|---|---|
amount | str | Amount to withdraw | [optional] |
created_at | int | Unix time the withdrawal was initiated, in milliseconds | [optional] |
currency | str | Withdrawal currency. | [optional] |
external_id | str | External ID has the value that was passed in when the Withdrawal request was posted. | [optional] |
fee | str | Withdrawal fee | [optional] |
id | str | [optional] | |
status | str | Status | [optional] |
transfer_id | str | Transfer ID is the identifier of the Withdrawal's transfer once it completes. | [optional] |
type | str | Type distinguishes between different withdrawal methods where more than one is supported for the given currency. | [optional] |
from luno_openapi.models.withdrawal import Withdrawal
# TODO update the JSON string below
json = "{}"
# create an instance of Withdrawal from a JSON string
withdrawal_instance = Withdrawal.from_json(json)
# print the JSON string representation of the object
print(Withdrawal.to_json())
# convert the object into a dict
withdrawal_dict = withdrawal_instance.to_dict()
# create an instance of Withdrawal from a dict
withdrawal_from_dict = Withdrawal.from_dict(withdrawal_dict)