Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.41 KB

JobsForWebscriptResponseV2.md

File metadata and controls

32 lines (23 loc) · 1.41 KB

JobsForWebscriptResponseV2

Webscript Jobs Found

Properties

Name Type Description Notes
jobs List[AnyJobForFunction] Listing of jobs related to the function deployment. This includes active jobs, and the most recently failed job (per type) that was archived on the entity.
function FunctionRef
links JobsForWebscriptResponseV2Links [optional]

Example

from waylay.services.registry.models.jobs_for_webscript_response_v2 import JobsForWebscriptResponseV2

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

# convert the object into a dict
jobs_for_webscript_response_v2_dict = jobs_for_webscript_response_v2_instance.to_dict()
# create an instance of JobsForWebscriptResponseV2 from a dict
jobs_for_webscript_response_v2_form_dict = jobs_for_webscript_response_v2.from_dict(jobs_for_webscript_response_v2_dict)

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