| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | [optional] | |
| status | str | [optional] | |
| client | IdReference | [optional] | |
| business_unit | IdReference | [optional] | |
| domain | IdReference | [optional] | |
| sub_domain | IdReference | [optional] | |
| owner | IdReference | [optional] | |
| purchase_order | str | [optional] | |
| date_due | datetime | [optional] | |
| note | str | [optional] | |
| machine_translate_settings | UidReference | [optional] | |
| machine_translate_settings_per_langs | List[ProjectMTSettingsPerLangDto] | [optional] | |
| archived | bool | [optional] |
from phrasetms_client.models.patch_project_dto import PatchProjectDto
# TODO update the JSON string below
json = "{}"
# create an instance of PatchProjectDto from a JSON string
patch_project_dto_instance = PatchProjectDto.from_json(json)
# print the JSON string representation of the object
print PatchProjectDto.to_json()
# convert the object into a dict
patch_project_dto_dict = patch_project_dto_instance.to_dict()
# create an instance of PatchProjectDto from a dict
patch_project_dto_from_dict = PatchProjectDto.from_dict(patch_project_dto_dict)