Sha256: 162772a7f23bace8229e549b03f3da87cc6d6e30d97827536081d5e4b68187b6

Contents?: true

Size: 878 Bytes

Versions: 5

Compression:

Stored size: 878 Bytes

Contents

# Conekta::CustomerPaymentMethodsResponse

## 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<CustomerPaymentMethodsData>**](CustomerPaymentMethodsData.md) |  | [optional] |

## Example

```ruby
require 'conekta'

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

5 entries across 5 versions & 1 rubygems

Version Path
conekta-6.0.4 docs/CustomerPaymentMethodsResponse.md
conekta-6.0.3 docs/CustomerPaymentMethodsResponse.md
conekta-6.0.2 docs/CustomerPaymentMethodsResponse.md
conekta-6.0.1 docs/CustomerPaymentMethodsResponse.md
conekta-6.0.0 docs/CustomerPaymentMethodsResponse.md