Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.02 KB

JobsResponse.md

File metadata and controls

31 lines (22 loc) · 1.02 KB

JobsResponse

Jobs Found

Properties

Name Type Description Notes
limit float The page size used for this query result. [optional]
jobs List[AnyJobStatusSummary] Listing of jobs that satisfy the query.

Example

from waylay.services.registry.models.jobs_response import JobsResponse

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

# convert the object into a dict
jobs_response_dict = jobs_response_instance.to_dict()
# create an instance of JobsResponse from a dict
jobs_response_form_dict = jobs_response.from_dict(jobs_response_dict)

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