Sha256: 7b39b093aed706045b27e3d88ee83c5eabbd7a1887b1010329b27834be8afd22
Contents?: true
Size: 411 Bytes
Versions: 28
Compression:
Stored size: 411 Bytes
Contents
module Braintree class AccountUpdaterDailyReport # :nodoc: include BaseModule attr_reader :report_url attr_reader :report_date class << self protected :new def _new(*args) # :nodoc: self.new *args end end def initialize(attributes) # :nodoc: set_instance_variables_from_hash(attributes) @report_date = Date.parse(report_date) end end end
Version data entries
28 entries across 28 versions & 1 rubygems