Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.41 KB

UndeployJobStatus.md

File metadata and controls

37 lines (28 loc) · 1.41 KB

UndeployJobStatus

Properties

Name Type Description Notes
type UndeployType
state JobStateResult
request UndeployArgs
result UndeployResult [optional]
created_at datetime The timestamp of creation of this job
created_by str The user that created this job
operation str Request operation
function FunctionRef [optional]
job JobStatus

Example

from waylay.services.registry.models.undeploy_job_status import UndeployJobStatus

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

# convert the object into a dict
undeploy_job_status_dict = undeploy_job_status_instance.to_dict()
# create an instance of UndeployJobStatus from a dict
undeploy_job_status_form_dict = undeploy_job_status.from_dict(undeploy_job_status_dict)

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