CreateSubscriptionRequest

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
request_headerRequestHeader[optional]
requested_publishing_intervalfloat[optional] [default to 0]
requested_lifetime_countint[optional] [default to 0]
requested_max_keep_alive_countint[optional] [default to 0]
max_notifications_per_publishint[optional] [default to 0]
publishing_enabledbool[optional] [default to False]
priorityint[optional] [default to 0]

Example

from opcua_webapi.models.create_subscription_request import CreateSubscriptionRequest

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

# convert the object into a dict
create_subscription_request_dict = create_subscription_request_instance.to_dict()
# create an instance of CreateSubscriptionRequest from a dict
create_subscription_request_from_dict = CreateSubscriptionRequest.from_dict(create_subscription_request_dict)

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