Name |
Type |
Description |
Notes |
name |
str |
the contract's display name |
[optional] |
from fireblocks.models.create_contract_request import CreateContractRequest
# TODO update the JSON string below
json = "{}"
# create an instance of CreateContractRequest from a JSON string
create_contract_request_instance = CreateContractRequest.from_json(json)
# print the JSON string representation of the object
print(CreateContractRequest.to_json())
# convert the object into a dict
create_contract_request_dict = create_contract_request_instance.to_dict()
# create an instance of CreateContractRequest from a dict
create_contract_request_from_dict = CreateContractRequest.from_dict(create_contract_request_dict)
[Back to Model list] [Back to API list] [Back to README]