Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.46 KB

WebhookKeyCreateResponse.md

File metadata and controls

35 lines (26 loc) · 1.46 KB

WebhookKeyCreateResponse

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]
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]
public_key str Public key to be used in the webhook [optional]

Example

from conekta.models.webhook_key_create_response import WebhookKeyCreateResponse

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

# convert the object into a dict
webhook_key_create_response_dict = webhook_key_create_response_instance.to_dict()
# create an instance of WebhookKeyCreateResponse from a dict
webhook_key_create_response_from_dict = WebhookKeyCreateResponse.from_dict(webhook_key_create_response_dict)

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