Class: OnlinePayments::SDK::Domain::RedirectPaymentMethodSpecificInput
- Inherits:
-
OnlinePayments::SDK::DataObject
- Object
- OnlinePayments::SDK::DataObject
- OnlinePayments::SDK::Domain::RedirectPaymentMethodSpecificInput
- Defined in:
- lib/onlinepayments/sdk/domain/redirect_payment_method_specific_input.rb
Instance Attribute Summary collapse
-
#payment_option ⇒ String
The current value of payment_option.
-
#payment_product3306_specific_input ⇒ OnlinePayments::SDK::Domain::RedirectPaymentProduct3306SpecificInput
The current value of payment_product3306_specific_input.
-
#payment_product5406_specific_input ⇒ OnlinePayments::SDK::Domain::RedirectPaymentProduct5406SpecificInput
The current value of payment_product5406_specific_input.
-
#payment_product809_specific_input ⇒ OnlinePayments::SDK::Domain::RedirectPaymentProduct809SpecificInput
The current value of payment_product809_specific_input.
-
#payment_product840_specific_input ⇒ OnlinePayments::SDK::Domain::RedirectPaymentProduct840SpecificInput
The current value of payment_product840_specific_input.
-
#payment_product_id ⇒ Integer
The current value of payment_product_id.
-
#redirection_data ⇒ OnlinePayments::SDK::Domain::RedirectionData
The current value of redirection_data.
-
#requires_approval ⇒ true/false
The current value of requires_approval.
-
#token ⇒ String
The current value of token.
-
#tokenize ⇒ true/false
The current value of tokenize.
Instance Method Summary collapse
Methods inherited from OnlinePayments::SDK::DataObject
Instance Attribute Details
#payment_option ⇒ String
Returns the current value of payment_option.
24 25 26 |
# File 'lib/onlinepayments/sdk/domain/redirect_payment_method_specific_input.rb', line 24 def payment_option @payment_option end |
#payment_product3306_specific_input ⇒ OnlinePayments::SDK::Domain::RedirectPaymentProduct3306SpecificInput
Returns the current value of payment_product3306_specific_input.
24 25 26 |
# File 'lib/onlinepayments/sdk/domain/redirect_payment_method_specific_input.rb', line 24 def payment_product3306_specific_input @payment_product3306_specific_input end |
#payment_product5406_specific_input ⇒ OnlinePayments::SDK::Domain::RedirectPaymentProduct5406SpecificInput
Returns the current value of payment_product5406_specific_input.
24 25 26 |
# File 'lib/onlinepayments/sdk/domain/redirect_payment_method_specific_input.rb', line 24 def payment_product5406_specific_input @payment_product5406_specific_input end |
#payment_product809_specific_input ⇒ OnlinePayments::SDK::Domain::RedirectPaymentProduct809SpecificInput
Returns the current value of payment_product809_specific_input.
24 25 26 |
# File 'lib/onlinepayments/sdk/domain/redirect_payment_method_specific_input.rb', line 24 def payment_product809_specific_input @payment_product809_specific_input end |
#payment_product840_specific_input ⇒ OnlinePayments::SDK::Domain::RedirectPaymentProduct840SpecificInput
Returns the current value of payment_product840_specific_input.
24 25 26 |
# File 'lib/onlinepayments/sdk/domain/redirect_payment_method_specific_input.rb', line 24 def payment_product840_specific_input @payment_product840_specific_input end |
#payment_product_id ⇒ Integer
Returns the current value of payment_product_id.
24 25 26 |
# File 'lib/onlinepayments/sdk/domain/redirect_payment_method_specific_input.rb', line 24 def payment_product_id @payment_product_id end |
#redirection_data ⇒ OnlinePayments::SDK::Domain::RedirectionData
Returns the current value of redirection_data.
24 25 26 |
# File 'lib/onlinepayments/sdk/domain/redirect_payment_method_specific_input.rb', line 24 def redirection_data @redirection_data end |
#requires_approval ⇒ true/false
Returns the current value of requires_approval.
24 25 26 |
# File 'lib/onlinepayments/sdk/domain/redirect_payment_method_specific_input.rb', line 24 def requires_approval @requires_approval end |
#token ⇒ String
Returns the current value of token.
24 25 26 |
# File 'lib/onlinepayments/sdk/domain/redirect_payment_method_specific_input.rb', line 24 def token @token end |
#tokenize ⇒ true/false
Returns the current value of tokenize.
24 25 26 |
# File 'lib/onlinepayments/sdk/domain/redirect_payment_method_specific_input.rb', line 24 def tokenize @tokenize end |
Instance Method Details
#from_hash(hash) ⇒ Object
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 |
# File 'lib/onlinepayments/sdk/domain/redirect_payment_method_specific_input.rb', line 52 def from_hash(hash) super @payment_option = hash['paymentOption'] if hash.key? 'paymentOption' if hash.key? 'paymentProduct3306SpecificInput' raise TypeError, "value '%s' is not a Hash" % [hash['paymentProduct3306SpecificInput']] unless hash['paymentProduct3306SpecificInput'].is_a? Hash @payment_product3306_specific_input = OnlinePayments::SDK::Domain::RedirectPaymentProduct3306SpecificInput.new_from_hash(hash['paymentProduct3306SpecificInput']) end if hash.key? 'paymentProduct5406SpecificInput' raise TypeError, "value '%s' is not a Hash" % [hash['paymentProduct5406SpecificInput']] unless hash['paymentProduct5406SpecificInput'].is_a? Hash @payment_product5406_specific_input = OnlinePayments::SDK::Domain::RedirectPaymentProduct5406SpecificInput.new_from_hash(hash['paymentProduct5406SpecificInput']) end if hash.key? 'paymentProduct809SpecificInput' raise TypeError, "value '%s' is not a Hash" % [hash['paymentProduct809SpecificInput']] unless hash['paymentProduct809SpecificInput'].is_a? Hash @payment_product809_specific_input = OnlinePayments::SDK::Domain::RedirectPaymentProduct809SpecificInput.new_from_hash(hash['paymentProduct809SpecificInput']) end if hash.key? 'paymentProduct840SpecificInput' raise TypeError, "value '%s' is not a Hash" % [hash['paymentProduct840SpecificInput']] unless hash['paymentProduct840SpecificInput'].is_a? Hash @payment_product840_specific_input = OnlinePayments::SDK::Domain::RedirectPaymentProduct840SpecificInput.new_from_hash(hash['paymentProduct840SpecificInput']) end @payment_product_id = hash['paymentProductId'] if hash.key? 'paymentProductId' if hash.key? 'redirectionData' raise TypeError, "value '%s' is not a Hash" % [hash['redirectionData']] unless hash['redirectionData'].is_a? Hash @redirection_data = OnlinePayments::SDK::Domain::RedirectionData.new_from_hash(hash['redirectionData']) end @requires_approval = hash['requiresApproval'] if hash.key? 'requiresApproval' @token = hash['token'] if hash.key? 'token' @tokenize = hash['tokenize'] if hash.key? 'tokenize' end |
#to_h ⇒ Hash
37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
# File 'lib/onlinepayments/sdk/domain/redirect_payment_method_specific_input.rb', line 37 def to_h hash = super hash['paymentOption'] = @payment_option unless @payment_option.nil? hash['paymentProduct3306SpecificInput'] = @payment_product3306_specific_input.to_h if @payment_product3306_specific_input hash['paymentProduct5406SpecificInput'] = @payment_product5406_specific_input.to_h if @payment_product5406_specific_input hash['paymentProduct809SpecificInput'] = @payment_product809_specific_input.to_h if @payment_product809_specific_input hash['paymentProduct840SpecificInput'] = @payment_product840_specific_input.to_h if @payment_product840_specific_input hash['paymentProductId'] = @payment_product_id unless @payment_product_id.nil? hash['redirectionData'] = @redirection_data.to_h if @redirection_data hash['requiresApproval'] = @requires_approval unless @requires_approval.nil? hash['token'] = @token unless @token.nil? hash['tokenize'] = @tokenize unless @tokenize.nil? hash end |