Skip to content

Latest commit

 

History

History
48 lines (41 loc) · 3.25 KB

ProjectReference.md

File metadata and controls

48 lines (41 loc) · 3.25 KB

ProjectReference

Properties

Name Type Description Notes
uid str [optional]
inner_id int [optional]
name str [optional]
business_unit BusinessUnitReference [optional]
domain DomainReference [optional]
sub_domain SubDomainReference [optional]
client ClientReference [optional]
cost_center CostCenterReference [optional]
due_date datetime [optional]
created_date datetime [optional]
created_by UserReference [optional]
owner UserReference [optional]
vendor VendorUserReference [optional]
purchase_order str [optional]
source_lang str [optional]
target_langs List[str] [optional]
status str [optional]
progress ProgressReference [optional]
metadata List[MetadataReference] [optional]
note str [optional]
deleted bool [optional]
archived bool [optional]

Example

from phrasetms_client.models.project_reference import ProjectReference

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

# convert the object into a dict
project_reference_dict = project_reference_instance.to_dict()
# create an instance of ProjectReference from a dict
project_reference_from_dict = ProjectReference.from_dict(project_reference_dict)

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