class Invoiced::List

Attributes

total_count[R]

Public Class Methods

new(link_header, total_count) click to toggle source
# File lib/invoiced/list.rb, line 6
def initialize(link_header, total_count)
    @links = parse_link_header(link_header)
    @total_count = total_count
end

Private Instance Methods