Conekta::WebhookKeyDeleteResponse

August 1, 2023 ยท View on GitHub

Properties

NameTypeDescriptionNotes
activeBooleanIndicates if the webhook key is active[optional]
created_atIntegerUnix timestamp in seconds with the creation date of the webhook key[optional]
deletedBooleanIndicates if the webhook key is deleted[optional]
idStringUnique identifier of the webhook key[optional]
livemodeBooleanIndicates if the webhook key is in live mode[optional]
objectStringObject name, value is webhook_key[optional]

Example

require 'conekta'

instance = Conekta::WebhookKeyDeleteResponse.new(
  active: true,
  created_at: 1577836800,
  deleted: true,
  id: 62730ba6fb7dfd6a712f118e,
  livemode: false,
  object: webhook_key
)