Sha256: 71a2e70c4825180ce3d8bcc782eaef0f10fde434eea60cde9093f8b90447a4d1
Contents?: true
Size: 832 Bytes
Versions: 3
Compression:
Stored size: 832 Bytes
Contents
# 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>**](CustomerResponse.md) | | [optional] | ## Example ```ruby require 'conekta' instance = Conekta::CustomersResponse.new( has_more: false, object: list, next_page_url: https://api.conekta.io/resources?limit=10&next=chrg_1, previous_page_url: https://api.conekta.io/resources?limit=10&previous=chrg_1, data: null ) ```
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
conekta-6.0.4 | docs/CustomersResponse.md |
conekta-6.0.3 | docs/CustomersResponse.md |
conekta-6.0.2 | docs/CustomersResponse.md |