Methods

Class Index [+]

Quicksearch

ActiveMerchant::Billing::WorldpayGateway::MultiResponse

Attributes

responses[R]

Public Class Methods

new() click to toggle source
     # File lib/active_merchant/billing/gateways/worldpay.rb, line 254
254:         def initialize
255:           @responses = []
256:         end

Public Instance Methods

<<(response) click to toggle source
     # File lib/active_merchant/billing/gateways/worldpay.rb, line 258
258:         def <<(response)
259:           if response.is_a?(MultiResponse)
260:             response.responses.each{|r| @responses << r}
261:           else
262:             @responses << response
263:           end
264:         end
success?() click to toggle source
     # File lib/active_merchant/billing/gateways/worldpay.rb, line 266
266:         def success?
267:           @responses.all?{|r| r.success?}
268:         end

Disabled; run with --debug to generate this.

[Validate]

Generated with the Darkfish Rdoc Generator 1.1.6.