Files
Jungfraujoch/python-client/docs/BrokerStatus.md
2024-10-05 13:14:49 +02:00

942 B

BrokerStatus

Properties

Name Type Description Notes
state str
progress float [optional]
indexing_rate float [optional]

Example

from openapi_client.models.broker_status import BrokerStatus

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

# convert the object into a dict
broker_status_dict = broker_status_instance.to_dict()
# create an instance of BrokerStatus from a dict
broker_status_from_dict = BrokerStatus.from_dict(broker_status_dict)

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