Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 404 Bytes

File metadata and controls

22 lines (16 loc) · 404 Bytes

RankVectors::PageLimitStatus

Properties

Name Type Description Notes
limit Integer Page limit
used Integer Pages used
remaining Integer Pages remaining

Example

require 'rankvectors'

instance = RankVectors::PageLimitStatus.new(
  limit: 1000,
  used: 150,
  remaining: 850
)