Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.48 KB

MoveResponse.md

File metadata and controls

31 lines (22 loc) · 1.48 KB

MoveResponse

MoveResponse response

Properties

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]

Example

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)

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