| Name | Type | Description | Notes |
|---|---|---|---|
| input_charset | str | [optional] | |
| output_charset | str | [optional] | |
| zip_charset | str | [optional] | |
| file_format | str | [optional] | |
| autodetect_multilingual_files | bool | [optional] | |
| target_length | bool | [optional] | |
| target_length_max | int | [optional] | |
| target_length_percent | bool | [optional] | |
| target_length_percent_value | float | [optional] | |
| android | AndroidSettingsDto | [optional] | |
| idml | IdmlSettingsDto | [optional] | |
| xls | XlsSettingsDto | [optional] | |
| multilingual_xml | MultilingualXmlSettingsDto | [optional] | |
| php | PhpSettingsDto | [optional] | |
| resx | ResxSettingsDto | [optional] | |
| var_json | JsonSettingsDto | [optional] | |
| html | HtmlSettingsDto | [optional] | |
| multilingual_xls | MultilingualXlsSettingsDto | [optional] | |
| multilingual_csv | MultilingualCsvSettingsDto | [optional] | |
| csv | CsvSettingsDto | [optional] | |
| txt | TxtSettingsDto | [optional] | |
| xlf2 | Xlf2SettingsDto | [optional] | |
| quark_tag | QuarkTagSettingsDto | [optional] | |
| PdfSettingsDto | [optional] | ||
| tm_match | TMMatchSettingsDto | [optional] | |
| xml | XmlSettingsDto | [optional] | |
| mif | MifSettingsDto | [optional] | |
| properties | PropertiesSettingsDto | [optional] | |
| doc | DocSettingsDto | [optional] | |
| xlf | XlfSettingsDto | [optional] | |
| sdl_xlf | SdlXlfSettingsDto | [optional] | |
| ttx | TtxSettingsDto | [optional] | |
| ppt | PptSettingsDto | [optional] | |
| yaml | YamlSettingsDto | [optional] | |
| dita | DitaSettingsDto | [optional] | |
| doc_book | DocBookSettingsDto | [optional] | |
| po | PoSettingsDto | [optional] | |
| mac | MacSettingsDto | [optional] | |
| md | MdSettingsDto | [optional] | |
| psd | PsdSettingsDto | [optional] | |
| asciidoc | AsciidocSettingsDto | [optional] | |
| seg_rule | SegRuleReference | [optional] | |
| target_seg_rule | SegRuleReference | [optional] |
from phrasetms_client.models.file_import_settings_dto import FileImportSettingsDto
# TODO update the JSON string below
json = "{}"
# create an instance of FileImportSettingsDto from a JSON string
file_import_settings_dto_instance = FileImportSettingsDto.from_json(json)
# print the JSON string representation of the object
print FileImportSettingsDto.to_json()
# convert the object into a dict
file_import_settings_dto_dict = file_import_settings_dto_instance.to_dict()
# create an instance of FileImportSettingsDto from a dict
file_import_settings_dto_from_dict = FileImportSettingsDto.from_dict(file_import_settings_dto_dict)