class MerchantESolutions::SummaryRecord

Attributes

credit_company[R]
credits_amount[R]
credits_count[R]
net_amount[R]
organization_id[R]
organization_name[R]
sales_amount[R]
sales_count[R]

Public Class Methods

new(row) click to toggle source
# File lib/merchant_e_solutions/summary_record.rb, line 9
def initialize(row)
  @organization_id = row[0]
  @organization_name = row[1]
  @credit_company = row[2]
  @sales_count = row[3]
  @sales_amount = row[4]
  @credits_count = row[5]
  @credits_amount = row[6]
  @net_amount = row[7]
end