Sha256: 0126cc2f99d27ade4fb2707396aebfe4d25bab68cd41ee1cae85a9e5dc0d7137
Contents?: true
Size: 411 Bytes
Versions: 29
Compression:
Stored size: 411 Bytes
Contents
module Braintree class AccountUpdaterDailyReport # :nodoc: include BaseModule attr_reader :report_date attr_reader :report_url 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
29 entries across 29 versions & 1 rubygems