StructureDescription

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
structure_definitionStructureDefinition[optional]
data_type_idstr[optional]
namestr[optional]

Example

from opcua_webapi.models.structure_description import StructureDescription

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

# convert the object into a dict
structure_description_dict = structure_description_instance.to_dict()
# create an instance of StructureDescription from a dict
structure_description_from_dict = StructureDescription.from_dict(structure_description_dict)

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