Name | Type | Description | Notes |
---|---|---|---|
code | int | [optional] | |
symbol | str | [optional] |
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)