DiagnosticInfo

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
symbolic_idint[optional]
namespace_uriint[optional]
localeint[optional]
localized_textint[optional]
additional_infostr[optional]
inner_status_codeStatusCode[optional]
inner_diagnostic_infoDiagnosticInfo[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)

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