class InvisibleCollector::Model::Debit

Attributes

date[RW]
gross_total[RW]
number[RW]

Public Class Methods

new(options = {}) click to toggle source
# File lib/invisible_collector/models/debit.rb, line 10
def initialize(options = {})
  options = options.with_indifferent_access
  @number = options[:number]
  @date = options[:date]
  @gross_total = options[:gross_total]
end