Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.12 KB

SubscriptionAcknowledgement.md

File metadata and controls

30 lines (21 loc) · 1.12 KB

SubscriptionAcknowledgement

Properties

Name Type Description Notes
subscription_id int [optional] [default to 0]
sequence_number int [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]