DataTypeSchemaHeader
August 30, 2025 ยท View on GitHub
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| namespaces | List[str] | [optional] | |
| structure_data_types | List[StructureDescription] | [optional] | |
| enum_data_types | List[EnumDescription] | [optional] | |
| simple_data_types | List[SimpleTypeDescription] | [optional] |
Example
from opcua_webapi.models.data_type_schema_header import DataTypeSchemaHeader
# TODO update the JSON string below
json = "{}"
# create an instance of DataTypeSchemaHeader from a JSON string
data_type_schema_header_instance = DataTypeSchemaHeader.from_json(json)
# print the JSON string representation of the object
print(DataTypeSchemaHeader.to_json())
# convert the object into a dict
data_type_schema_header_dict = data_type_schema_header_instance.to_dict()
# create an instance of DataTypeSchemaHeader from a dict
data_type_schema_header_from_dict = DataTypeSchemaHeader.from_dict(data_type_schema_header_dict)