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.02 KB

JobsCreate200Response.md

File metadata and controls

28 lines (20 loc) · 1.02 KB

JobsCreate200Response

Properties

Name Type Description Notes
job_id int The canonical identifier for the newly created job. [optional]

Example

from databricks_jobs.models.jobs_create200_response import JobsCreate200Response

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

# convert the object into a dict
jobs_create200_response_dict = jobs_create200_response_instance.to_dict()
# create an instance of JobsCreate200Response from a dict
jobs_create200_response_form_dict = jobs_create200_response.from_dict(jobs_create200_response_dict)

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