Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 1.08 KB

BusinessUnitReference.md

File metadata and controls

29 lines (22 loc) · 1.08 KB

BusinessUnitReference

Properties

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

Example

from phrasetms_client.models.business_unit_reference import BusinessUnitReference

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

# convert the object into a dict
business_unit_reference_dict = business_unit_reference_instance.to_dict()
# create an instance of BusinessUnitReference from a dict
business_unit_reference_from_dict = BusinessUnitReference.from_dict(business_unit_reference_dict)

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