Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.22 KB

CreateInternalTransferRequest.md

File metadata and controls

32 lines (23 loc) · 1.22 KB

CreateInternalTransferRequest

Properties

Name Type Description Notes
asset str
amount str
source_type TradingAccountType
dest_type TradingAccountType

Example

from fireblocks.models.create_internal_transfer_request import CreateInternalTransferRequest

# TODO update the JSON string below
json = "{}"
# create an instance of CreateInternalTransferRequest from a JSON string
create_internal_transfer_request_instance = CreateInternalTransferRequest.from_json(json)
# print the JSON string representation of the object
print(CreateInternalTransferRequest.to_json())

# convert the object into a dict
create_internal_transfer_request_dict = create_internal_transfer_request_instance.to_dict()
# create an instance of CreateInternalTransferRequest from a dict
create_internal_transfer_request_from_dict = CreateInternalTransferRequest.from_dict(create_internal_transfer_request_dict)

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