Class: SixSaferpay::ProcessingData

Inherits:
Object
  • Object
show all
Defined in:
lib/six_saferpay/models/processing_data.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(bancontact: nil) ⇒ ProcessingData

Returns a new instance of ProcessingData.



6
7
8
# File 'lib/six_saferpay/models/processing_data.rb', line 6

def initialize(bancontact: nil)
  @bancontact = SixSaferpay::Bancontact.new(**bancontact.to_h) if bancontact
end

Instance Attribute Details

#bancontactObject

Returns the value of attribute bancontact.



4
5
6
# File 'lib/six_saferpay/models/processing_data.rb', line 4

def bancontact
  @bancontact
end

Instance Method Details

#to_hashObject Also known as: to_h



10
11
12
13
14
# File 'lib/six_saferpay/models/processing_data.rb', line 10

def to_hash
  hash = Hash.new
  hash.merge!(bancontact: @bancontact.to_h) if @bancontact
  hash
end