class Buckaruby::RefundInfoResponse

Response when retrieving the refund information.

Public Instance Methods

currency() click to toggle source
# File lib/buckaruby/response.rb, line 250
def currency
  params[:brq_refundinfo_1_refundcurrency]
end
invoicenumber() click to toggle source
# File lib/buckaruby/response.rb, line 246
def invoicenumber
  params[:brq_refundinfo_1_invoice]
end
maximum_amount() click to toggle source
# File lib/buckaruby/response.rb, line 242
def maximum_amount
  params[:brq_refundinfo_1_maximumrefundamount]
end
payment_method() click to toggle source
# File lib/buckaruby/response.rb, line 234
def payment_method
  params[:brq_refundinfo_1_servicecode]
end
refundable?() click to toggle source
# File lib/buckaruby/response.rb, line 238
def refundable?
  !params[:brq_refundinfo_1_isrefundable].nil? && params[:brq_refundinfo_1_isrefundable].casecmp("true").zero?
end