StatusCode

August 30, 2025 ยท View on GitHub

Link to specification. Set of defined codes.

Properties

NameTypeDescriptionNotes
codeint[optional]
symbolstr[optional]

Example

from opcua_webapi.models.status_code import StatusCode

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

# convert the object into a dict
status_code_dict = status_code_instance.to_dict()
# create an instance of StatusCode from a dict
status_code_from_dict = StatusCode.from_dict(status_code_dict)

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