Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 1.67 KB

AutomatedProjectSettingsDto.md

File metadata and controls

34 lines (27 loc) · 1.67 KB

AutomatedProjectSettingsDto

Properties

Name Type Description Notes
id str [optional]
name str [optional]
organization NameDto [optional]
active bool [optional]
source_lang str [optional]
target_langs List[str] [optional]
connector NameDto [optional]
remote_folder str [optional]

Example

from phrasetms_client.models.automated_project_settings_dto import AutomatedProjectSettingsDto

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

# convert the object into a dict
automated_project_settings_dto_dict = automated_project_settings_dto_instance.to_dict()
# create an instance of AutomatedProjectSettingsDto from a dict
automated_project_settings_dto_from_dict = AutomatedProjectSettingsDto.from_dict(automated_project_settings_dto_dict)

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