Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.56 KB

PubSubKeyPushTargetDataType.md

File metadata and controls

37 lines (28 loc) · 1.56 KB

PubSubKeyPushTargetDataType

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)

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