Scheduler info serializer for responses.
| Name | Type | Description | Notes |
|---|---|---|---|
| latest_scheduler_heartbeat | str | [optional] | |
| status | str | [optional] |
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)