Class: Worldline::Acquiring::SDK::V1::Domain::CardPaymentDataForVerification

Inherits:
Domain::DataObject
  • Object
show all
Defined in:
lib/worldline/acquiring/sdk/v1/domain/card_payment_data_for_verification.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Domain::DataObject

new_from_hash

Instance Attribute Details

#brandString

Returns the current value of brand.

Returns:

  • (String)

    the current value of brand



26
27
28
# File 'lib/worldline/acquiring/sdk/v1/domain/card_payment_data_for_verification.rb', line 26

def brand
  @brand
end

#brand_selectorString

Returns the current value of brand_selector.

Returns:

  • (String)

    the current value of brand_selector



26
27
28
# File 'lib/worldline/acquiring/sdk/v1/domain/card_payment_data_for_verification.rb', line 26

def brand_selector
  @brand_selector
end

#card_dataWorldline::Acquiring::SDK::V1::Domain::PlainCardData

Returns the current value of card_data.

Returns:



26
27
28
# File 'lib/worldline/acquiring/sdk/v1/domain/card_payment_data_for_verification.rb', line 26

def card_data
  @card_data
end

#card_entry_modeString

Returns the current value of card_entry_mode.

Returns:

  • (String)

    the current value of card_entry_mode



26
27
28
# File 'lib/worldline/acquiring/sdk/v1/domain/card_payment_data_for_verification.rb', line 26

def card_entry_mode
  @card_entry_mode
end

#card_on_file_dataWorldline::Acquiring::SDK::V1::Domain::CardOnFileData

Returns the current value of card_on_file_data.

Returns:



26
27
28
# File 'lib/worldline/acquiring/sdk/v1/domain/card_payment_data_for_verification.rb', line 26

def card_on_file_data
  @card_on_file_data
end

#cardholder_verification_methodString

Returns the current value of cardholder_verification_method.

Returns:

  • (String)

    the current value of cardholder_verification_method



26
27
28
# File 'lib/worldline/acquiring/sdk/v1/domain/card_payment_data_for_verification.rb', line 26

def cardholder_verification_method
  @cardholder_verification_method
end

#ecommerce_dataWorldline::Acquiring::SDK::V1::Domain::ECommerceDataForAccountVerification

Returns the current value of ecommerce_data.

Returns:



26
27
28
# File 'lib/worldline/acquiring/sdk/v1/domain/card_payment_data_for_verification.rb', line 26

def ecommerce_data
  @ecommerce_data
end

#network_token_dataWorldline::Acquiring::SDK::V1::Domain::NetworkTokenData

Returns the current value of network_token_data.

Returns:



26
27
28
# File 'lib/worldline/acquiring/sdk/v1/domain/card_payment_data_for_verification.rb', line 26

def network_token_data
  @network_token_data
end

#point_of_sale_dataWorldline::Acquiring::SDK::V1::Domain::PointOfSaleData

Returns the current value of point_of_sale_data.

Returns:



26
27
28
# File 'lib/worldline/acquiring/sdk/v1/domain/card_payment_data_for_verification.rb', line 26

def point_of_sale_data
  @point_of_sale_data
end

#wallet_idString

Returns the current value of wallet_id.

Returns:

  • (String)

    the current value of wallet_id



26
27
28
# File 'lib/worldline/acquiring/sdk/v1/domain/card_payment_data_for_verification.rb', line 26

def wallet_id
  @wallet_id
end

Instance Method Details

#from_hash(hash) ⇒ Object



64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# File 'lib/worldline/acquiring/sdk/v1/domain/card_payment_data_for_verification.rb', line 64

def from_hash(hash)
  super
  if hash.has_key? 'brand'
    @brand = hash['brand']
  end
  if hash.has_key? 'brandSelector'
    @brand_selector = hash['brandSelector']
  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? 'pointOfSaleData'
    raise TypeError, "value '%s' is not a Hash" % [hash['pointOfSaleData']] unless hash['pointOfSaleData'].is_a? Hash
    @point_of_sale_data = Worldline::Acquiring::SDK::V1::Domain::PointOfSaleData.new_from_hash(hash['pointOfSaleData'])
  end
  if hash.has_key? 'walletId'
    @wallet_id = hash['walletId']
  end
end

#to_hHash

Returns:

  • (Hash)


49
50
51
52
53
54
55
56
57
58
59
60
61
62
# File 'lib/worldline/acquiring/sdk/v1/domain/card_payment_data_for_verification.rb', line 49

def to_h
  hash = super
  hash['brand'] = @brand unless @brand.nil?
  hash['brandSelector'] = @brand_selector unless @brand_selector.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['pointOfSaleData'] = @point_of_sale_data.to_h unless @point_of_sale_data.nil?
  hash['walletId'] = @wallet_id unless @wallet_id.nil?
  hash
end