Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1.02 KB

OrganizationReference.md

File metadata and controls

28 lines (21 loc) · 1.02 KB

OrganizationReference

Properties

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

Example

from phrasetms_client.models.organization_reference import OrganizationReference

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

# convert the object into a dict
organization_reference_dict = organization_reference_instance.to_dict()
# create an instance of OrganizationReference from a dict
organization_reference_from_dict = OrganizationReference.from_dict(organization_reference_dict)

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