Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.53 KB

JobEventResponseWaitingChildrenEventData.md

File metadata and controls

34 lines (25 loc) · 1.53 KB

JobEventResponseWaitingChildrenEventData

Event object describing a state change of a background job.

Properties

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

Example

from waylay.services.registry.models.job_event_response_waiting_children_event_data import JobEventResponseWaitingChildrenEventData

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

# convert the object into a dict
job_event_response_waiting_children_event_data_dict = job_event_response_waiting_children_event_data_instance.to_dict()
# create an instance of JobEventResponseWaitingChildrenEventData from a dict
job_event_response_waiting_children_event_data_form_dict = job_event_response_waiting_children_event_data.from_dict(job_event_response_waiting_children_event_data_dict)

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