DiagnosticInfo
August 30, 2025 ยท View on GitHub
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| symbolic_id | int | [optional] | |
| namespace_uri | int | [optional] | |
| locale | int | [optional] | |
| localized_text | int | [optional] | |
| additional_info | str | [optional] | |
| inner_status_code | StatusCode | [optional] | |
| inner_diagnostic_info | DiagnosticInfo | [optional] |
Example
from opcua_webapi.models.diagnostic_info import DiagnosticInfo
# TODO update the JSON string below
json = "{}"
# create an instance of DiagnosticInfo from a JSON string
diagnostic_info_instance = DiagnosticInfo.from_json(json)
# print the JSON string representation of the object
print(DiagnosticInfo.to_json())
# convert the object into a dict
diagnostic_info_dict = diagnostic_info_instance.to_dict()
# create an instance of DiagnosticInfo from a dict
diagnostic_info_from_dict = DiagnosticInfo.from_dict(diagnostic_info_dict)