Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.08 KB

StructureDescription.md

File metadata and controls

31 lines (22 loc) · 1.08 KB

StructureDescription

Properties

Name Type Description Notes
structure_definition StructureDefinition [optional]
data_type_id str [optional]
name str [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]