ListTransfersResponse response for /api/1/transfers
Name | Type | Description | Notes |
---|---|---|---|
transfers | List[Transfer] | [optional] |
from luno_openapi.models.list_transfers_response import ListTransfersResponse
# TODO update the JSON string below
json = "{}"
# create an instance of ListTransfersResponse from a JSON string
list_transfers_response_instance = ListTransfersResponse.from_json(json)
# print the JSON string representation of the object
print(ListTransfersResponse.to_json())
# convert the object into a dict
list_transfers_response_dict = list_transfers_response_instance.to_dict()
# create an instance of ListTransfersResponse from a dict
list_transfers_response_from_dict = ListTransfersResponse.from_dict(list_transfers_response_dict)