List of account configs and streaming connection configs.
| Name | Type | Description | Notes |
|---|---|---|---|
| account_configs | List[Connectionsv3AccountConfig] | Accounts information. | [optional] |
| instance_configs | List[Connectionsv3StreamConnectionConfig] | Streaming connections information. | [optional] |
from ibm_gdsc_sdk_saas.models.connectionsv3_streaming_configs import Connectionsv3StreamingConfigs
# TODO update the JSON string below
json = "{}"
# create an instance of Connectionsv3StreamingConfigs from a JSON string
connectionsv3_streaming_configs_instance = Connectionsv3StreamingConfigs.from_json(json)
# print the JSON string representation of the object
print(Connectionsv3StreamingConfigs.to_json())
# convert the object into a dict
connectionsv3_streaming_configs_dict = connectionsv3_streaming_configs_instance.to_dict()
# create an instance of Connectionsv3StreamingConfigs from a dict
connectionsv3_streaming_configs_from_dict = Connectionsv3StreamingConfigs.from_dict(connectionsv3_streaming_configs_dict)