Class: Ingenico::Direct::SDK::Domain::MobilePaymentData
- Inherits:
-
Ingenico::Direct::SDK::DataObject
- Object
- Ingenico::Direct::SDK::DataObject
- Ingenico::Direct::SDK::Domain::MobilePaymentData
- Defined in:
- lib/ingenico/direct/sdk/domain/mobile_payment_data.rb
Instance Attribute Summary collapse
-
#dpan ⇒ String
The current value of dpan.
-
#expiry_date ⇒ String
The current value of expiry_date.
Instance Method Summary collapse
Methods inherited from Ingenico::Direct::SDK::DataObject
Instance Attribute Details
#dpan ⇒ String
Returns the current value of dpan.
12 13 14 |
# File 'lib/ingenico/direct/sdk/domain/mobile_payment_data.rb', line 12 def dpan @dpan end |
#expiry_date ⇒ String
Returns the current value of expiry_date.
12 13 14 |
# File 'lib/ingenico/direct/sdk/domain/mobile_payment_data.rb', line 12 def expiry_date @expiry_date end |
Instance Method Details
#from_hash(hash) ⇒ Object
24 25 26 27 28 |
# File 'lib/ingenico/direct/sdk/domain/mobile_payment_data.rb', line 24 def from_hash(hash) super @dpan = hash['dpan'] if hash.key? 'dpan' @expiry_date = hash['expiryDate'] if hash.key? 'expiryDate' end |
#to_h ⇒ Hash
17 18 19 20 21 22 |
# File 'lib/ingenico/direct/sdk/domain/mobile_payment_data.rb', line 17 def to_h hash = super hash['dpan'] = @dpan unless @dpan.nil? hash['expiryDate'] = @expiry_date unless @expiry_date.nil? hash end |