JsonActionResponseMessage

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
data_set_writer_idint[optional] [default to 0]
action_target_idint[optional] [default to 0]
data_set_writer_namestr[optional]
writer_group_namestr[optional]
meta_data_versionConfigurationVersionDataType[optional]
minor_versionint[optional] [default to 0]
timestampdatetime[optional]
statusStatusCode[optional]
message_typestr[optional]
request_idint[optional] [default to 0]
action_stateintLink to specification.[optional]
payloadobject[optional]

Example

from opcua_webapi.models.json_action_response_message import JsonActionResponseMessage

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

# convert the object into a dict
json_action_response_message_dict = json_action_response_message_instance.to_dict()
# create an instance of JsonActionResponseMessage from a dict
json_action_response_message_from_dict = JsonActionResponseMessage.from_dict(json_action_response_message_dict)

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