Class: OnlinePayments::SDK::Domain::MobilePaymentMethodHostedCheckoutSpecificInput
- Inherits:
-
DataObject
- Object
- DataObject
- OnlinePayments::SDK::Domain::MobilePaymentMethodHostedCheckoutSpecificInput
- Defined in:
- lib/onlinepayments/sdk/domain/mobile_payment_method_hosted_checkout_specific_input.rb
Instance Attribute Summary collapse
-
#authorization_mode ⇒ String
The current value of authorization_mode.
-
#payment_product302_specific_input ⇒ OnlinePayments::SDK::Domain::MobilePaymentProduct302SpecificInput
The current value of payment_product302_specific_input.
-
#payment_product320_specific_input ⇒ OnlinePayments::SDK::Domain::MobilePaymentProduct320SpecificInput
The current value of payment_product320_specific_input.
-
#payment_product_id ⇒ Integer
The current value of payment_product_id.
Instance Method Summary collapse
Methods inherited from DataObject
Instance Attribute Details
#authorization_mode ⇒ String
Returns the current value of authorization_mode.
15 16 17 |
# File 'lib/onlinepayments/sdk/domain/mobile_payment_method_hosted_checkout_specific_input.rb', line 15 def @authorization_mode end |
#payment_product302_specific_input ⇒ OnlinePayments::SDK::Domain::MobilePaymentProduct302SpecificInput
Returns the current value of payment_product302_specific_input.
15 16 17 |
# File 'lib/onlinepayments/sdk/domain/mobile_payment_method_hosted_checkout_specific_input.rb', line 15 def payment_product302_specific_input @payment_product302_specific_input end |
#payment_product320_specific_input ⇒ OnlinePayments::SDK::Domain::MobilePaymentProduct320SpecificInput
Returns the current value of payment_product320_specific_input.
15 16 17 |
# File 'lib/onlinepayments/sdk/domain/mobile_payment_method_hosted_checkout_specific_input.rb', line 15 def payment_product320_specific_input @payment_product320_specific_input end |
#payment_product_id ⇒ Integer
Returns the current value of payment_product_id.
15 16 17 |
# File 'lib/onlinepayments/sdk/domain/mobile_payment_method_hosted_checkout_specific_input.rb', line 15 def payment_product_id @payment_product_id end |
Instance Method Details
#from_hash(hash) ⇒ Object
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
# File 'lib/onlinepayments/sdk/domain/mobile_payment_method_hosted_checkout_specific_input.rb', line 35 def from_hash(hash) super if hash.has_key? 'authorizationMode' @authorization_mode = hash['authorizationMode'] end if hash.has_key? 'paymentProduct302SpecificInput' raise TypeError, "value '%s' is not a Hash" % [hash['paymentProduct302SpecificInput']] unless hash['paymentProduct302SpecificInput'].is_a? Hash @payment_product302_specific_input = OnlinePayments::SDK::Domain::MobilePaymentProduct302SpecificInput.new_from_hash(hash['paymentProduct302SpecificInput']) end if hash.has_key? 'paymentProduct320SpecificInput' raise TypeError, "value '%s' is not a Hash" % [hash['paymentProduct320SpecificInput']] unless hash['paymentProduct320SpecificInput'].is_a? Hash @payment_product320_specific_input = OnlinePayments::SDK::Domain::MobilePaymentProduct320SpecificInput.new_from_hash(hash['paymentProduct320SpecificInput']) end if hash.has_key? 'paymentProductId' @payment_product_id = hash['paymentProductId'] end end |
#to_h ⇒ Hash
26 27 28 29 30 31 32 33 |
# File 'lib/onlinepayments/sdk/domain/mobile_payment_method_hosted_checkout_specific_input.rb', line 26 def to_h hash = super hash['authorizationMode'] = @authorization_mode unless @authorization_mode.nil? hash['paymentProduct302SpecificInput'] = @payment_product302_specific_input.to_h unless @payment_product302_specific_input.nil? hash['paymentProduct320SpecificInput'] = @payment_product320_specific_input.to_h unless @payment_product320_specific_input.nil? hash['paymentProductId'] = @payment_product_id unless @payment_product_id.nil? hash end |