| Name | Type | Description | Notes |
|---|---|---|---|
| uid | str | [optional] | |
| inner_id | str | InnerId is a sequential number of a job in a project. Jobs created from the same file share the same innerId across workflow steps. | [optional] |
| status | str | [optional] | |
| providers | List[ProviderReference] | [optional] | |
| source_lang | str | [optional] | |
| target_lang | str | [optional] | |
| workflow_level | int | [optional] | |
| workflow_step | ProjectWorkflowStepReference | [optional] | |
| filename | str | [optional] | |
| date_due | datetime | [optional] | |
| words_count | int | [optional] | |
| begin_index | int | [optional] | |
| end_index | int | [optional] | |
| is_parent_job_split | bool | [optional] | |
| update_source_date | datetime | [optional] | |
| update_target_date | datetime | [optional] | |
| date_created | datetime | [optional] | |
| job_reference | JobReference | [optional] | |
| project | ProjectReference | [optional] | |
| last_workflow_level | int | [optional] | |
| work_unit | object | [optional] | |
| import_status | ImportStatusDto | [optional] | |
| imported | bool | [optional] | |
| continuous | bool | [optional] | |
| continuous_job_info | ContinuousJobInfoDto | [optional] | |
| original_file_directory | str | [optional] |
from phrasetms_client.models.job_part_extended_dto import JobPartExtendedDto
# TODO update the JSON string below
json = "{}"
# create an instance of JobPartExtendedDto from a JSON string
job_part_extended_dto_instance = JobPartExtendedDto.from_json(json)
# print the JSON string representation of the object
print JobPartExtendedDto.to_json()
# convert the object into a dict
job_part_extended_dto_dict = job_part_extended_dto_instance.to_dict()
# create an instance of JobPartExtendedDto from a dict
job_part_extended_dto_from_dict = JobPartExtendedDto.from_dict(job_part_extended_dto_dict)