Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 616 Bytes

PaginatedInvoices.md

File metadata and controls

24 lines (18 loc) · 616 Bytes

InvoicingApi::PaginatedInvoices

Properties

Name Type Description Notes
limit Integer Maximum number of items in the page (actual returned length can be less).
offset Integer The number of returned items skipped.
total Integer The total number of records available for retrieval.
results Array<Invoice>

Example

require 'pnap_invoicing_api'

instance = InvoicingApi::PaginatedInvoices.new(
  limit: 5,
  offset: 25,
  total: 400,
  results: null
)