StructureField

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
namestr[optional]
descriptionLocalizedText[optional]
data_typestr[optional]
value_rankint[optional] [default to 0]
array_dimensionsList[int][optional]
max_string_lengthint[optional] [default to 0]
is_optionalbool[optional] [default to False]

Example

from opcua_webapi.models.structure_field import StructureField

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

# convert the object into a dict
structure_field_dict = structure_field_instance.to_dict()
# create an instance of StructureField from a dict
structure_field_from_dict = StructureField.from_dict(structure_field_dict)

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