Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 941 Bytes

VendorDto.md

File metadata and controls

30 lines (21 loc) · 941 Bytes

VendorDto

Properties

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

Example

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]