A Webhook Object
Name | Type | Description | Notes |
---|---|---|---|
pki_webhook_id | int | The unique ID of the Webhook | |
fki_authenticationexternal_id | int | The unique ID of the Authenticationexternal | [optional] |
s_webhook_description | str | The description of the Webhook | |
fki_ezsignfoldertype_id | int | The unique ID of the Ezsignfoldertype. | [optional] |
s_ezsignfoldertype_name_x | str | The name of the Ezsignfoldertype in the language of the requester | [optional] |
e_webhook_module | FieldEWebhookModule | ||
e_webhook_ezsignevent | FieldEWebhookEzsignevent | [optional] | |
e_webhook_managementevent | FieldEWebhookManagementevent | [optional] | |
s_webhook_url | str | The URL of the Webhook callback | |
s_webhook_emailfailed | str | The email that will receive the Webhook in case all attempts fail | |
s_webhook_apikey | str | The Apikey for the Webhook. This will be hidden if we are not creating or regenerating the Apikey. | [optional] |
s_webhook_secret | str | The Secret for the Webhook. This will be hidden if we are not creating or regenerating the Apikey. | [optional] |
b_webhook_isactive | bool | Whether the Webhook is active or not | |
b_webhook_issigned | bool | Whether the requests will be signed or not | |
b_webhook_skipsslvalidation | bool | Wheter the server's SSL certificate should be validated or not. Not recommended to skip for production use | |
s_authenticationexternal_description | str | The description of the Authenticationexternal | [optional] |
obj_audit | CommonAudit | ||
s_webhook_event | str | The concatenated string to describe the Webhook event | [optional] |
a_obj_webhookheader | List[WebhookheaderResponseCompound] | [optional] |
from eZmaxApi.models.webhook_response_compound import WebhookResponseCompound
# TODO update the JSON string below
json = "{}"
# create an instance of WebhookResponseCompound from a JSON string
webhook_response_compound_instance = WebhookResponseCompound.from_json(json)
# print the JSON string representation of the object
print(WebhookResponseCompound.to_json())
# convert the object into a dict
webhook_response_compound_dict = webhook_response_compound_instance.to_dict()
# create an instance of WebhookResponseCompound from a dict
webhook_response_compound_from_dict = WebhookResponseCompound.from_dict(webhook_response_compound_dict)