class SixSaferpay::SixTransaction::RefundResponse

Attributes

dcc[RW]
payment_means[RW]
response_header[RW]
transaction[RW]

Public Class Methods

new(response_header: , transaction:, payment_means: , dcc: nil) click to toggle source
# File lib/six_saferpay/api/six_transaction/responses/refund_response.rb, line 11
def initialize(response_header: ,
               transaction:,
               payment_means: ,
               dcc: nil)

  @response_header = SixSaferpay::ResponseHeader.new(response_header.to_h) if response_header
  @transaction = SixSaferpay::Transaction.new(transaction.to_h) if transaction
  @payment_means = SixSaferpay::ResponsePaymentMeans.new(payment_means.to_h) if payment_means
  @dcc = SixSaferpay::Dcc.new(dcc.to_h) if dcc
end

Public Instance Methods

to_h()
Alias for: to_hash
to_hash() click to toggle source
# File lib/six_saferpay/api/six_transaction/responses/refund_response.rb, line 22
def to_hash
  hash = Hash.new
  hash.merge!(response_header: @response_header.to_h) if @response_header
  hash.merge!(transaction: @transaction.to_h) if @transaction
  hash.merge!(payment_means: @payment_means.to_h) if @payment_means
  hash.merge!(dcc: @dcc.to_h) if @dcc
  hash
end
Also aliased as: to_h