lilt-python

API bindings for the Lilt REST API.

View the Project on GitHub lilt/lilt-python

JobUpdateParameters

Properties

Name Type Description Notes
name str A name for the Job. [optional]
due_date int An ISO string date. [optional]
is_processing str The processing status of the job. Provide one of the following integers to indicate the status. Ok = 0 Started = 1 ExportError = -2 [optional]
processing_error_msg str The processing error message. [optional]

Example

from lilt.models.job_update_parameters import JobUpdateParameters

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

# convert the object into a dict
job_update_parameters_dict = job_update_parameters_instance.to_dict()
# create an instance of JobUpdateParameters from a dict
job_update_parameters_from_dict = JobUpdateParameters.from_dict(job_update_parameters_dict)

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