Base projectDto
Name | Type | Description | Notes |
---|---|---|---|
uid | str | [optional] | |
internal_id | int | [optional] | |
id | str | [optional] | |
name | str | [optional] | |
date_created | datetime | [optional] | |
domain | DomainReference | [optional] | |
sub_domain | SubDomainReference | [optional] | |
owner | UserReference | [optional] | |
source_lang | str | [optional] | |
target_langs | List[str] | [optional] | |
references | List[ReferenceFileReference] | [optional] | |
mt_settings_per_language_list | List[MTSettingsPerLanguageReference] | [optional] | |
user_role | str | Response differs based on user's role | [optional] [readonly] |
from phrasetms_client.models.abstract_project_dto_v2 import AbstractProjectDtoV2
# TODO update the JSON string below
json = "{}"
# create an instance of AbstractProjectDtoV2 from a JSON string
abstract_project_dto_v2_instance = AbstractProjectDtoV2.from_json(json)
# print the JSON string representation of the object
print AbstractProjectDtoV2.to_json()
# convert the object into a dict
abstract_project_dto_v2_dict = abstract_project_dto_v2_instance.to_dict()
# create an instance of AbstractProjectDtoV2 from a dict
abstract_project_dto_v2_from_dict = AbstractProjectDtoV2.from_dict(abstract_project_dto_v2_dict)