Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.02 KB

File metadata and controls

29 lines (20 loc) · 1.02 KB

ContractAddressResponse

Properties

Name Type Description Notes
contract_address str The contract's onchain address

Example

from fireblocks.models.contract_address_response import ContractAddressResponse

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

# convert the object into a dict
contract_address_response_dict = contract_address_response_instance.to_dict()
# create an instance of ContractAddressResponse from a dict
contract_address_response_from_dict = ContractAddressResponse.from_dict(contract_address_response_dict)

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