Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 1020 Bytes

VendorReference.md

File metadata and controls

29 lines (22 loc) · 1020 Bytes

VendorReference

Properties

Name Type Description Notes
id str [optional]
uid str [optional]
name str [optional]

Example

from phrasetms_client.models.vendor_reference import VendorReference

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

# convert the object into a dict
vendor_reference_dict = vendor_reference_instance.to_dict()
# create an instance of VendorReference from a dict
vendor_reference_from_dict = VendorReference.from_dict(vendor_reference_dict)

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