Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.28 KB

PublishedDataSetDataType.md

File metadata and controls

33 lines (24 loc) · 1.28 KB

PublishedDataSetDataType

Properties

Name Type Description Notes
name str [optional]
data_set_folder List[str] [optional]
data_set_meta_data DataSetMetaDataType [optional]
extension_fields List[KeyValuePair] [optional]
data_set_source object [optional]

Example

from opcua_webapi.models.published_data_set_data_type import PublishedDataSetDataType

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

# convert the object into a dict
published_data_set_data_type_dict = published_data_set_data_type_instance.to_dict()
# create an instance of PublishedDataSetDataType from a dict
published_data_set_data_type_from_dict = PublishedDataSetDataType.from_dict(published_data_set_data_type_dict)

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