Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1 KB

ContractDeployResponse.md

File metadata and controls

29 lines (20 loc) · 1 KB

ContractDeployResponse

Properties

Name Type Description Notes
tx_id str The transaction id of the deployment request

Example

from fireblocks.models.contract_deploy_response import ContractDeployResponse

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

# convert the object into a dict
contract_deploy_response_dict = contract_deploy_response_instance.to_dict()
# create an instance of ContractDeployResponse from a dict
contract_deploy_response_from_dict = ContractDeployResponse.from_dict(contract_deploy_response_dict)

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