module Cardflex class SuccessResponse include BaseModule attr_reader :transaction, :three_step, :plan, :subscription, :customer_vault def initialize(hash={}) set_instance_variables_from_hash(hash) end def success? true end end end