Name |
Type |
Description |
Notes |
id |
str |
The unique identifier of the contract template |
|
name |
str |
The name of the contract template |
|
description |
str |
A short description of the contract template |
|
attributes |
ContractAttributes |
The attributes related to this contract template. It will be displayed in the tokenization page |
[optional] |
is_public |
bool |
Is this a contract that is viewable by all fireblocks's users or is it visible only for this workspace |
|
can_deploy |
bool |
True if the workspace allowed to deploy this contract, false otherwise |
[optional] |
owner |
str |
The workspace id of the owner of this contract template. If it's a private contract, only this workspace will be allowed to deploy it |
[optional] |
vendor |
VendorDto |
The details of the vendor of this contract template. Applicable only for public contract templates |
[optional] |
type |
str |
|
[optional] |
from fireblocks.models.lean_contract_dto import LeanContractDto
# TODO update the JSON string below
json = "{}"
# create an instance of LeanContractDto from a JSON string
lean_contract_dto_instance = LeanContractDto.from_json(json)
# print the JSON string representation of the object
print(LeanContractDto.to_json())
# convert the object into a dict
lean_contract_dto_dict = lean_contract_dto_instance.to_dict()
# create an instance of LeanContractDto from a dict
lean_contract_dto_from_dict = LeanContractDto.from_dict(lean_contract_dto_dict)
[Back to Model list] [Back to API list] [Back to README]