class Uphold::Entities::BaseEntity::PaginatedCollection

Attributes

total_size[R]

Public Class Methods

new(items, total_size) click to toggle source
Calls superclass method
# File lib/uphold/entities/base_entity.rb, line 24
def initialize(items, total_size)
  super(items)
  @total_size = total_size.to_i
end