Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.11 KB

AddCollateralRequestBody.md

File metadata and controls

30 lines (21 loc) · 1.11 KB

AddCollateralRequestBody

Properties

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

Example

from fireblocks.models.add_collateral_request_body import AddCollateralRequestBody

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

# convert the object into a dict
add_collateral_request_body_dict = add_collateral_request_body_instance.to_dict()
# create an instance of AddCollateralRequestBody from a dict
add_collateral_request_body_from_dict = AddCollateralRequestBody.from_dict(add_collateral_request_body_dict)

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