Skip to content

Latest commit

 

History

History
35 lines (28 loc) · 1.74 KB

JobSegmentDto.md

File metadata and controls

35 lines (28 loc) · 1.74 KB

JobSegmentDto

Properties

Name Type Description Notes
id str [optional]
source str [optional]
translation str [optional]
created_at int [optional]
modified_at int [optional]
created_by UserReference [optional]
modified_by UserReference [optional]
workflow_level int [optional]
workflow_step WorkflowStepDto [optional]

Example

from phrasetms_client.models.job_segment_dto import JobSegmentDto

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

# convert the object into a dict
job_segment_dto_dict = job_segment_dto_instance.to_dict()
# create an instance of JobSegmentDto from a dict
job_segment_dto_from_dict = JobSegmentDto.from_dict(job_segment_dto_dict)

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