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

Latest commit

 

History

History
28 lines (20 loc) · 1.11 KB

JobsRunsExport200Response.md

File metadata and controls

28 lines (20 loc) · 1.11 KB

JobsRunsExport200Response

Properties

Name Type Description Notes
views List[ViewItem] The exported content in HTML format (one for every view item). [optional]

Example

from databricks_jobs.models.jobs_runs_export200_response import JobsRunsExport200Response

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

# convert the object into a dict
jobs_runs_export200_response_dict = jobs_runs_export200_response_instance.to_dict()
# create an instance of JobsRunsExport200Response from a dict
jobs_runs_export200_response_form_dict = jobs_runs_export200_response.from_dict(jobs_runs_export200_response_dict)

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