Skip to content
This repository has been archived by the owner on Jul 20, 2023. It is now read-only.

Latest commit

 

History

History
26 lines (20 loc) · 543 Bytes

Pagination.md

File metadata and controls

26 lines (20 loc) · 543 Bytes

Marqeta::Pagination

Properties

Name Type Description Notes
count Integer [optional]
start_index Integer [optional]
end_index Integer [optional]
is_more Boolean [optional][default to false]
data Array<Object> [optional]

Example

require 'marqeta'

instance = Marqeta::Pagination.new(
  count: null,
  start_index: null,
  end_index: null,
  is_more: null,
  data: null
)