Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.3 KB

PublishResponse.md

File metadata and controls

35 lines (26 loc) · 1.3 KB

PublishResponse

Properties

Name Type Description Notes
response_header ResponseHeader [optional]
subscription_id int [optional]
available_sequence_numbers List[int] [optional]
more_notifications bool [optional]
notification_message NotificationMessage [optional]
results List[int] [optional]
diagnostic_infos List[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]