Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 714 Bytes

LogsResponse.md

File metadata and controls

26 lines (20 loc) · 714 Bytes

Conekta::LogsResponse

Properties

Name Type Description Notes
has_more Boolean True, if there are more pages. [optional][readonly]
object String The object type [optional][readonly]
next_page_url String URL of the next page. [optional]
previous_page_url String Url of the previous page. [optional]
data Array<LogsResponseData> set to page results. [optional]

Example

require 'conekta'

instance = Conekta::LogsResponse.new(
  has_more: null,
  object: null,
  next_page_url: null,
  previous_page_url: null,
  data: null
)