Skip to content

Latest commit

 

History

History
41 lines (34 loc) · 2.83 KB

JobPartReference.md

File metadata and controls

41 lines (34 loc) · 2.83 KB

JobPartReference

Properties

Name Type Description Notes
uid str [optional]
status str [optional]
providers List[ProviderReference] [optional]
target_lang str [optional]
workflow_level int [optional]
workflow_step WorkflowStepReference [optional]
filename str [optional]
date_due datetime [optional]
date_created datetime [optional]
update_source_date datetime [optional]
imported bool [optional]
job_assigned_email_template object [optional]
notification_interval_in_minutes int [optional]
continuous bool [optional]
source_file_uid str [optional]

Example

from phrasetms_client.models.job_part_reference import JobPartReference

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

# convert the object into a dict
job_part_reference_dict = job_part_reference_instance.to_dict()
# create an instance of JobPartReference from a dict
job_part_reference_from_dict = JobPartReference.from_dict(job_part_reference_dict)

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