Skip to content

Latest commit

 

History

History
38 lines (31 loc) · 2.31 KB

ProjectTemplateReference.md

File metadata and controls

38 lines (31 loc) · 2.31 KB

ProjectTemplateReference

Properties

Name Type Description Notes
template_name str [optional]
source_lang str [optional]
target_langs List[str] [optional]
id str [optional]
uid str [optional]
owner UserReference [optional]
domain DomainReference [optional]
sub_domain SubDomainReference [optional]
cost_center CostCenterReference [optional]
business_unit BusinessUnitReference [optional]
note str [optional]
client ClientReference [optional]

Example

from phrasetms_client.models.project_template_reference import ProjectTemplateReference

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

# convert the object into a dict
project_template_reference_dict = project_template_reference_instance.to_dict()
# create an instance of ProjectTemplateReference from a dict
project_template_reference_from_dict = ProjectTemplateReference.from_dict(project_template_reference_dict)

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