Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.44 KB

JobEventResponseFailedEventData.md

File metadata and controls

34 lines (25 loc) · 1.44 KB

JobEventResponseFailedEventData

Event object describing a state change of a background job.

Properties

Name Type Description Notes
links JobStatusAndEntityHALLinks
job JobReference
data FailedEventData
timestamp datetime Timestamp of the event
function FunctionRef

Example

from waylay.services.registry.models.job_event_response_failed_event_data import JobEventResponseFailedEventData

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

# convert the object into a dict
job_event_response_failed_event_data_dict = job_event_response_failed_event_data_instance.to_dict()
# create an instance of JobEventResponseFailedEventData from a dict
job_event_response_failed_event_data_form_dict = job_event_response_failed_event_data.from_dict(job_event_response_failed_event_data_dict)

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