PubSubKeyPushTargetDataType

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
application_uristr[optional]
push_target_folderList[str][optional]
endpoint_urlstr[optional]
security_policy_uristr[optional]
user_token_typeUserTokenPolicy[optional]
requested_key_countint[optional] [default to 0]
retry_intervalfloat[optional] [default to 0]
push_target_propertiesList[KeyValuePair][optional]
security_groupsList[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)

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