version 1.0.0-rc.24
This commit is contained in:
30
docs/python_client/docs/BrokerStatus.md
Normal file
30
docs/python_client/docs/BrokerStatus.md
Normal file
@@ -0,0 +1,30 @@
|
||||
# BrokerStatus
|
||||
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**state** | **str** | |
|
||||
**progress** | **float** | Progress of data collection (only available if receiving is running) | [optional]
|
||||
|
||||
## Example
|
||||
|
||||
```python
|
||||
from jfjoch_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]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user