SimpleTypeDescription

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
base_data_typestr[optional]
built_in_typeint[optional] [default to 0]
data_type_idstr[optional]
namestr[optional]

Example

from opcua_webapi.models.simple_type_description import SimpleTypeDescription

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

# convert the object into a dict
simple_type_description_dict = simple_type_description_instance.to_dict()
# create an instance of SimpleTypeDescription from a dict
simple_type_description_from_dict = SimpleTypeDescription.from_dict(simple_type_description_dict)

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