Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.15 KB

RemoveCollateralRequestBody.md

File metadata and controls

30 lines (21 loc) · 1.15 KB

RemoveCollateralRequestBody

Properties

Name Type Description Notes
transaction_request TransactionRequest [optional]
is_dst_collateral bool optional [optional]

Example

from fireblocks.models.remove_collateral_request_body import RemoveCollateralRequestBody

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

# convert the object into a dict
remove_collateral_request_body_dict = remove_collateral_request_body_instance.to_dict()
# create an instance of RemoveCollateralRequestBody from a dict
remove_collateral_request_body_from_dict = RemoveCollateralRequestBody.from_dict(remove_collateral_request_body_dict)

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