Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.26 KB

PubSubConfigurationDataType.md

File metadata and controls

31 lines (22 loc) · 1.26 KB

PubSubConfigurationDataType

Properties

Name Type Description Notes
published_data_sets List[PublishedDataSetDataType] [optional]
connections List[PubSubConnectionDataType] [optional]
enabled bool [optional]

Example

from opcua_webapi.models.pub_sub_configuration_data_type import PubSubConfigurationDataType

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

# convert the object into a dict
pub_sub_configuration_data_type_dict = pub_sub_configuration_data_type_instance.to_dict()
# create an instance of PubSubConfigurationDataType from a dict
pub_sub_configuration_data_type_from_dict = PubSubConfigurationDataType.from_dict(pub_sub_configuration_data_type_dict)

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