class AuthorizeNet::Reporting::Batch

Models a batch of credit cards.

Attributes

id[RW]
payment_method[RW]
settled_at[RW]
state[RW]
statistics[RW]

Public Instance Methods

settled_at=(time) click to toggle source
# File lib/authorize_net/reporting/batch.rb, line 10
def settled_at=(time)
  if time.kind_of?(DateTime)
    @settled_at = time
  else
    @settled_at = DateTime.parse(time.to_s)
  end
end