PublishResponse

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
response_headerResponseHeader[optional]
subscription_idint[optional] [default to 0]
available_sequence_numbersList[int][optional]
more_notificationsbool[optional] [default to False]
notification_messageNotificationMessage[optional]
resultsList[StatusCode][optional]
diagnostic_infosList[DiagnosticInfo][optional]

Example

from opcua_webapi.models.publish_response import PublishResponse

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

# convert the object into a dict
publish_response_dict = publish_response_instance.to_dict()
# create an instance of PublishResponse from a dict
publish_response_from_dict = PublishResponse.from_dict(publish_response_dict)

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