PubSubKeyPushTargetDataType
August 30, 2025 ยท View on GitHub
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| application_uri | str | [optional] | |
| push_target_folder | List[str] | [optional] | |
| endpoint_url | str | [optional] | |
| security_policy_uri | str | [optional] | |
| user_token_type | UserTokenPolicy | [optional] | |
| requested_key_count | int | [optional] [default to 0] | |
| retry_interval | float | [optional] [default to 0] | |
| push_target_properties | List[KeyValuePair] | [optional] | |
| security_groups | List[str] | [optional] |
Example
from opcua_webapi.models.pub_sub_key_push_target_data_type import PubSubKeyPushTargetDataType
# TODO update the JSON string below
json = "{}"
# create an instance of PubSubKeyPushTargetDataType from a JSON string
pub_sub_key_push_target_data_type_instance = PubSubKeyPushTargetDataType.from_json(json)
# print the JSON string representation of the object
print(PubSubKeyPushTargetDataType.to_json())
# convert the object into a dict
pub_sub_key_push_target_data_type_dict = pub_sub_key_push_target_data_type_instance.to_dict()
# create an instance of PubSubKeyPushTargetDataType from a dict
pub_sub_key_push_target_data_type_from_dict = PubSubKeyPushTargetDataType.from_dict(pub_sub_key_push_target_data_type_dict)