Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.46 KB

File metadata and controls

35 lines (26 loc) · 1.46 KB

WebhookKeyDeleteResponse

webhook keys model

Properties

Name Type Description Notes
active bool Indicates if the webhook key is active [optional]
created_at int Unix timestamp in seconds with the creation date of the webhook key [optional]
deleted bool Indicates if the webhook key is deleted [optional]
id str Unique identifier of the webhook key [optional]
livemode bool Indicates if the webhook key is in live mode [optional]
object str Object name, value is webhook_key [optional]

Example

from conekta.models.webhook_key_delete_response import WebhookKeyDeleteResponse

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

# convert the object into a dict
webhook_key_delete_response_dict = webhook_key_delete_response_instance.to_dict()
# create an instance of WebhookKeyDeleteResponse from a dict
webhook_key_delete_response_from_dict = WebhookKeyDeleteResponse.from_dict(webhook_key_delete_response_dict)

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