Name |
Type |
Description |
Notes |
id |
str |
The unique identifier of the vendor of this contract template |
|
name |
str |
The name of the vendor of this contract template |
|
from fireblocks.models.vendor_dto import VendorDto
# TODO update the JSON string below
json = "{}"
# create an instance of VendorDto from a JSON string
vendor_dto_instance = VendorDto.from_json(json)
# print the JSON string representation of the object
print(VendorDto.to_json())
# convert the object into a dict
vendor_dto_dict = vendor_dto_instance.to_dict()
# create an instance of VendorDto from a dict
vendor_dto_from_dict = VendorDto.from_dict(vendor_dto_dict)
[Back to Model list] [Back to API list] [Back to README]