Sha256: 43fad15c3ab5067ffb6ed412723723f79835b5d2708664f51da7f056f2626f92
Contents?: true
Size: 412 Bytes
Versions: 17
Compression:
Stored size: 412 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
17 entries across 17 versions & 1 rubygems