Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 832 Bytes

CustomersResponse.md

File metadata and controls

26 lines (20 loc) · 832 Bytes

Conekta::CustomersResponse

Properties

Name Type Description Notes
has_more Boolean Indicates if there are more pages to be requested
object String Object type, in this case is list
next_page_url String URL of the next page. [optional]
previous_page_url String Url of the previous page. [optional]
data Array<CustomerResponse> [optional]

Example

require 'conekta'

instance = Conekta::CustomersResponse.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
)