Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.36 KB

File metadata and controls

31 lines (22 loc) · 1.36 KB

TriggerWebhookEffectProps

This effect is triggered when a rule containing a webhook effect is validated. The details are shared with you for your information only. It usually doesn't require an action on your side.

Properties

Name Type Description Notes
webhook_id float The internal ID of the webhook.
webhook_name str The name of the webhook.

Example

from talon_one.models.trigger_webhook_effect_props import TriggerWebhookEffectProps

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

# convert the object into a dict
trigger_webhook_effect_props_dict = trigger_webhook_effect_props_instance.to_dict()
# create an instance of TriggerWebhookEffectProps from a dict
trigger_webhook_effect_props_from_dict = TriggerWebhookEffectProps.from_dict(trigger_webhook_effect_props_dict)

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