Name |
Type |
Description |
Notes |
name |
str |
|
[optional] |
description |
LocalizedText |
|
[optional] |
data_type |
str |
|
[optional] |
value_rank |
int |
|
[optional] [default to 0] |
array_dimensions |
List[int] |
|
[optional] |
max_string_length |
int |
|
[optional] [default to 0] |
is_optional |
bool |
|
[optional] [default to False] |
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]