blob: 48a77f6d0024b2b9ec603f9725feaf799b2be5b7 [file] [log] [blame] [view]
# SchedulerInfoResponse
Scheduler info serializer for responses.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**latest_scheduler_heartbeat** | **str** | | [optional]
**status** | **str** | | [optional]
## Example
```python
from airflow_client.client.models.scheduler_info_response import SchedulerInfoResponse
# TODO update the JSON string below
json = "{}"
# create an instance of SchedulerInfoResponse from a JSON string
scheduler_info_response_instance = SchedulerInfoResponse.from_json(json)
# print the JSON string representation of the object
print(SchedulerInfoResponse.to_json())
# convert the object into a dict
scheduler_info_response_dict = scheduler_info_response_instance.to_dict()
# create an instance of SchedulerInfoResponse from a dict
scheduler_info_response_from_dict = SchedulerInfoResponse.from_dict(scheduler_info_response_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)