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<GetCustomerPaymentMethodDataResponse> | [optional] |
require 'conekta'
instance = Conekta::GetPaymentMethodResponse.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
)