Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1002 Bytes

DataTypeDescription.md

File metadata and controls

30 lines (21 loc) · 1002 Bytes

DataTypeDescription

Properties

Name Type Description Notes
data_type_id str [optional]
name str [optional]

Example

from opcua_webapi.models.data_type_description import DataTypeDescription

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

# convert the object into a dict
data_type_description_dict = data_type_description_instance.to_dict()
# create an instance of DataTypeDescription from a dict
data_type_description_from_dict = DataTypeDescription.from_dict(data_type_description_dict)

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