Conekta::GetWebhookKeysResponse

August 1, 2023 ยท View on GitHub

Properties

NameTypeDescriptionNotes
has_moreBooleanIndicates if there are more pages to be requested
objectStringObject type, in this case is list
next_page_urlStringURL of the next page.[optional]
previous_page_urlStringUrl of the previous page.[optional]
dataArray<WebhookKeyResponse>[optional]

Example

require 'conekta'

instance = Conekta::GetWebhookKeysResponse.new(
  has_more: false,
  object: list,
  next_page_url: https://api.conekta.io/resources?limit&#x3D;10&amp;next&#x3D;chrg_1,
  previous_page_url: https://api.conekta.io/resources?limit&#x3D;10&amp;previous&#x3D;chrg_1,
  data: null
)