Sha256: 72796b4fe745ce7afedf24b6b069a1f5760b287438645e6611fee7588f143a06

Contents?: true

Size: 516 Bytes

Versions: 4

Compression:

Stored size: 516 Bytes

Contents

module Harvesting
  module Models
    class Invoices < HarvestRecordCollection
      def initialize(attrs, query_opts = {}, opts = {})
        super(attrs.reject {|k,v| k == "invoices" }, query_opts, opts)
        @entries = attrs["invoices"].map do |entry|
          Invoice.new(entry, harvest_client: opts[:harvest_client])
        end
      end

      def fetch_next_page
        @entries += harvest_client.invoices(next_page_query_opts).entries
        @attributes['page'] = page + 1
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
harvesting-0.6.0 lib/harvesting/models/invoices.rb
harvesting-0.5.1 lib/harvesting/models/invoices.rb
harvesting-0.5.0 lib/harvesting/models/invoices.rb
harvesting-0.4.0 lib/harvesting/models/invoices.rb