Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 844 Bytes

SubscriptionEventsResponse.md

File metadata and controls

26 lines (20 loc) · 844 Bytes

Conekta::SubscriptionEventsResponse

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<EventResponse> [optional]

Example

require 'conekta'

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