MoveResponse response
Name | Type | Description | Notes |
---|---|---|---|
id | str | Move unique identifier | [optional] |
status | str | The current state of the move. Status meaning:<br> <code>CREATED</code> The move is awaiting execution.<br> <code>MOVING</code> The funds have been reserved and the move is being executed.<br> <code>SUCCESSFUL</code> The move has completed successfully and should be reflected in both accounts available balance.<br> <code>FAILED</code> The move has failed. There could be many reasons for this but the most likely is that the debit account doesn't have enough available funds to move.<br> | [optional] |
from luno_openapi.models.move_response import MoveResponse
# TODO update the JSON string below
json = "{}"
# create an instance of MoveResponse from a JSON string
move_response_instance = MoveResponse.from_json(json)
# print the JSON string representation of the object
print(MoveResponse.to_json())
# convert the object into a dict
move_response_dict = move_response_instance.to_dict()
# create an instance of MoveResponse from a dict
move_response_from_dict = MoveResponse.from_dict(move_response_dict)