Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 1.62 KB

VendorUserReference.md

File metadata and controls

32 lines (25 loc) · 1.62 KB

VendorUserReference

Properties

Name Type Description Notes
uid str [optional]
vendor_uid str [optional]
username str [optional]
first_name str [optional]
last_name str [optional]
organization OrganizationReference [optional]

Example

from phrasetms_client.models.vendor_user_reference import VendorUserReference

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

# convert the object into a dict
vendor_user_reference_dict = vendor_user_reference_instance.to_dict()
# create an instance of VendorUserReference from a dict
vendor_user_reference_from_dict = VendorUserReference.from_dict(vendor_user_reference_dict)

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