Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 873 Bytes

StatusCode.md

File metadata and controls

30 lines (21 loc) · 873 Bytes

StatusCode

Properties

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