Repository URL to install this package:
Version:
0.8.93 ▾
|
module Lobbyist
module V2
class CustomerTransaction < Lobbyist::V2::Base
attr_accessor :id, :communication_piece_id, :uuid, :contact_id, :external_id, :receipt_number, :category,
:event, :due_date, :amount, :is_paid, :transacted_at, :created_at, :updated_at
def self.list(id, params = {})
create_collection_from_response(get("/v2/campaign-iterations/#{id}/transactions.json", params))
end
end
end
end