Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.37 KB

File metadata and controls

31 lines (22 loc) · 1.37 KB

Connectionsv3StreamingConfigs

List of account configs and streaming connection configs.

Properties

Name Type Description Notes
account_configs List[Connectionsv3AccountConfig] Accounts information. [optional]
instance_configs List[Connectionsv3StreamConnectionConfig] Streaming connections information. [optional]

Example

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)

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