SubscriptionAcknowledgement

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
subscription_idint[optional] [default to 0]
sequence_numberint[optional] [default to 0]

Example

from opcua_webapi.models.subscription_acknowledgement import SubscriptionAcknowledgement

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

# convert the object into a dict
subscription_acknowledgement_dict = subscription_acknowledgement_instance.to_dict()
# create an instance of SubscriptionAcknowledgement from a dict
subscription_acknowledgement_from_dict = SubscriptionAcknowledgement.from_dict(subscription_acknowledgement_dict)

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