Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.29 KB

LeanDeployedContractResponseDto.md

File metadata and controls

32 lines (23 loc) · 1.29 KB

LeanDeployedContractResponseDto

Properties

Name Type Description Notes
id str The deployed contract data identifier
contract_address str The contract's onchain address
contract_template_id str The contract template identifier
blockchain_id str

Example

from fireblocks.models.lean_deployed_contract_response_dto import LeanDeployedContractResponseDto

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

# convert the object into a dict
lean_deployed_contract_response_dto_dict = lean_deployed_contract_response_dto_instance.to_dict()
# create an instance of LeanDeployedContractResponseDto from a dict
lean_deployed_contract_response_dto_from_dict = LeanDeployedContractResponseDto.from_dict(lean_deployed_contract_response_dto_dict)

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