Class: Worldline::Acquiring::SDK::V1::Domain::CardPaymentDataForVerification
- Inherits:
-
Domain::DataObject
- Object
- Domain::DataObject
- Worldline::Acquiring::SDK::V1::Domain::CardPaymentDataForVerification
- Defined in:
- lib/worldline/acquiring/sdk/v1/domain/card_payment_data_for_verification.rb
Instance Attribute Summary collapse
-
#brand ⇒ String
The current value of brand.
-
#card_data ⇒ Worldline::Acquiring::SDK::V1::Domain::PlainCardData
The current value of card_data.
-
#card_entry_mode ⇒ String
The current value of card_entry_mode.
-
#card_on_file_data ⇒ Worldline::Acquiring::SDK::V1::Domain::CardOnFileData
The current value of card_on_file_data.
-
#cardholder_verification_method ⇒ String
The current value of cardholder_verification_method.
-
#ecommerce_data ⇒ Worldline::Acquiring::SDK::V1::Domain::ECommerceDataForAccountVerification
The current value of ecommerce_data.
-
#network_token_data ⇒ Worldline::Acquiring::SDK::V1::Domain::NetworkTokenData
The current value of network_token_data.
-
#wallet_id ⇒ String
The current value of wallet_id.
Instance Method Summary collapse
Methods inherited from Domain::DataObject
Instance Attribute Details
#brand ⇒ String
Returns the current value of brand.
23 24 25 |
# File 'lib/worldline/acquiring/sdk/v1/domain/card_payment_data_for_verification.rb', line 23 def brand @brand end |
#card_data ⇒ Worldline::Acquiring::SDK::V1::Domain::PlainCardData
Returns the current value of card_data.
23 24 25 |
# File 'lib/worldline/acquiring/sdk/v1/domain/card_payment_data_for_verification.rb', line 23 def card_data @card_data end |
#card_entry_mode ⇒ String
Returns the current value of card_entry_mode.
23 24 25 |
# File 'lib/worldline/acquiring/sdk/v1/domain/card_payment_data_for_verification.rb', line 23 def card_entry_mode @card_entry_mode end |
#card_on_file_data ⇒ Worldline::Acquiring::SDK::V1::Domain::CardOnFileData
Returns the current value of card_on_file_data.
23 24 25 |
# File 'lib/worldline/acquiring/sdk/v1/domain/card_payment_data_for_verification.rb', line 23 def card_on_file_data @card_on_file_data end |
#cardholder_verification_method ⇒ String
Returns the current value of cardholder_verification_method.
23 24 25 |
# File 'lib/worldline/acquiring/sdk/v1/domain/card_payment_data_for_verification.rb', line 23 def cardholder_verification_method @cardholder_verification_method end |
#ecommerce_data ⇒ Worldline::Acquiring::SDK::V1::Domain::ECommerceDataForAccountVerification
Returns the current value of ecommerce_data.
23 24 25 |
# File 'lib/worldline/acquiring/sdk/v1/domain/card_payment_data_for_verification.rb', line 23 def ecommerce_data @ecommerce_data end |
#network_token_data ⇒ Worldline::Acquiring::SDK::V1::Domain::NetworkTokenData
Returns the current value of network_token_data.
23 24 25 |
# File 'lib/worldline/acquiring/sdk/v1/domain/card_payment_data_for_verification.rb', line 23 def network_token_data @network_token_data end |
#wallet_id ⇒ String
Returns the current value of wallet_id.
23 24 25 |
# File 'lib/worldline/acquiring/sdk/v1/domain/card_payment_data_for_verification.rb', line 23 def wallet_id @wallet_id end |
Instance Method Details
#from_hash(hash) ⇒ Object
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 80 81 82 83 84 85 |
# File 'lib/worldline/acquiring/sdk/v1/domain/card_payment_data_for_verification.rb', line 55 def from_hash(hash) super if hash.has_key? 'brand' @brand = hash['brand'] end if hash.has_key? 'cardData' raise TypeError, "value '%s' is not a Hash" % [hash['cardData']] unless hash['cardData'].is_a? Hash @card_data = Worldline::Acquiring::SDK::V1::Domain::PlainCardData.new_from_hash(hash['cardData']) end if hash.has_key? 'cardEntryMode' @card_entry_mode = hash['cardEntryMode'] end if hash.has_key? 'cardOnFileData' raise TypeError, "value '%s' is not a Hash" % [hash['cardOnFileData']] unless hash['cardOnFileData'].is_a? Hash @card_on_file_data = Worldline::Acquiring::SDK::V1::Domain::CardOnFileData.new_from_hash(hash['cardOnFileData']) end if hash.has_key? 'cardholderVerificationMethod' @cardholder_verification_method = hash['cardholderVerificationMethod'] end if hash.has_key? 'ecommerceData' raise TypeError, "value '%s' is not a Hash" % [hash['ecommerceData']] unless hash['ecommerceData'].is_a? Hash @ecommerce_data = Worldline::Acquiring::SDK::V1::Domain::ECommerceDataForAccountVerification.new_from_hash(hash['ecommerceData']) end if hash.has_key? 'networkTokenData' raise TypeError, "value '%s' is not a Hash" % [hash['networkTokenData']] unless hash['networkTokenData'].is_a? Hash @network_token_data = Worldline::Acquiring::SDK::V1::Domain::NetworkTokenData.new_from_hash(hash['networkTokenData']) end if hash.has_key? 'walletId' @wallet_id = hash['walletId'] end end |
#to_h ⇒ Hash
42 43 44 45 46 47 48 49 50 51 52 53 |
# File 'lib/worldline/acquiring/sdk/v1/domain/card_payment_data_for_verification.rb', line 42 def to_h hash = super hash['brand'] = @brand unless @brand.nil? hash['cardData'] = @card_data.to_h unless @card_data.nil? hash['cardEntryMode'] = @card_entry_mode unless @card_entry_mode.nil? hash['cardOnFileData'] = @card_on_file_data.to_h unless @card_on_file_data.nil? hash['cardholderVerificationMethod'] = @cardholder_verification_method unless @cardholder_verification_method.nil? hash['ecommerceData'] = @ecommerce_data.to_h unless @ecommerce_data.nil? hash['networkTokenData'] = @network_token_data.to_h unless @network_token_data.nil? hash['walletId'] = @wallet_id unless @wallet_id.nil? hash end |