Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.17 KB

File metadata and controls

30 lines (21 loc) · 1.17 KB

V1WebhooksResourceWithSecret

Single webhook payload including the one-time secret.

Properties

Name Type Description Notes
data V1WebhooksWebhookWithSecret

Example

from hostinger_mail_api.models.v1_webhooks_resource_with_secret import V1WebhooksResourceWithSecret

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

# convert the object into a dict
v1_webhooks_resource_with_secret_dict = v1_webhooks_resource_with_secret_instance.to_dict()
# create an instance of V1WebhooksResourceWithSecret from a dict
v1_webhooks_resource_with_secret_from_dict = V1WebhooksResourceWithSecret.from_dict(v1_webhooks_resource_with_secret_dict)

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