Skip to content
This repository has been archived by the owner on Jun 13, 2023. It is now read-only.

Latest commit

 

History

History
29 lines (21 loc) · 1.01 KB

JobsList200Response.md

File metadata and controls

29 lines (21 loc) · 1.01 KB

JobsList200Response

Properties

Name Type Description Notes
jobs List[Job] The list of jobs. [optional]
has_more bool [optional]

Example

from databricks_jobs.models.jobs_list200_response import JobsList200Response

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

# convert the object into a dict
jobs_list200_response_dict = jobs_list200_response_instance.to_dict()
# create an instance of JobsList200Response from a dict
jobs_list200_response_form_dict = jobs_list200_response.from_dict(jobs_list200_response_dict)

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