Name |
Type |
Description |
Notes |
id |
int |
|
[optional] |
dag_id |
str |
|
[optional] |
state |
str |
|
[optional] |
job_type |
str |
|
[optional] |
start_date |
str |
|
[optional] |
end_date |
str |
|
[optional] |
latest_heartbeat |
str |
|
[optional] |
executor_class |
str |
|
[optional] |
hostname |
str |
|
[optional] |
unixname |
str |
|
[optional] |
from titanium_airflow_client.models.job import Job
# TODO update the JSON string below
json = "{}"
# create an instance of Job from a JSON string
job_instance = Job.from_json(json)
# print the JSON string representation of the object
print(Job.to_json())
# convert the object into a dict
job_dict = job_instance.to_dict()
# create an instance of Job from a dict
job_from_dict = Job.from_dict(job_dict)
[Back to Model list] [Back to API list] [Back to README]