Class: Ingenico::Direct::SDK::Domain::MobilePaymentMethodSpecificInput

Inherits:
Ingenico::Direct::SDK::DataObject show all
Defined in:
lib/ingenico/direct/sdk/domain/mobile_payment_method_specific_input.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Ingenico::Direct::SDK::DataObject

new_from_hash

Instance Attribute Details

#authorization_modeString

Returns the current value of authorization_mode.

Returns:

  • (String)

    the current value of authorization_mode



20
21
22
# File 'lib/ingenico/direct/sdk/domain/mobile_payment_method_specific_input.rb', line 20

def authorization_mode
  @authorization_mode
end

#decrypted_payment_dataIngenico::Direct::SDK::Domain::DecryptedPaymentData

Returns the current value of decrypted_payment_data.

Returns:



20
21
22
# File 'lib/ingenico/direct/sdk/domain/mobile_payment_method_specific_input.rb', line 20

def decrypted_payment_data
  @decrypted_payment_data
end

#encrypted_payment_dataString

Returns the current value of encrypted_payment_data.

Returns:

  • (String)

    the current value of encrypted_payment_data



20
21
22
# File 'lib/ingenico/direct/sdk/domain/mobile_payment_method_specific_input.rb', line 20

def encrypted_payment_data
  @encrypted_payment_data
end

#ephemeral_keyString

Returns the current value of ephemeral_key.

Returns:

  • (String)

    the current value of ephemeral_key



20
21
22
# File 'lib/ingenico/direct/sdk/domain/mobile_payment_method_specific_input.rb', line 20

def ephemeral_key
  @ephemeral_key
end

#payment_product320_specific_inputIngenico::Direct::SDK::Domain::MobilePaymentProduct320SpecificInput

Returns the current value of payment_product320_specific_input.

Returns:



20
21
22
# File 'lib/ingenico/direct/sdk/domain/mobile_payment_method_specific_input.rb', line 20

def payment_product320_specific_input
  @payment_product320_specific_input
end

#payment_product_idInteger

Returns the current value of payment_product_id.

Returns:

  • (Integer)

    the current value of payment_product_id



20
21
22
# File 'lib/ingenico/direct/sdk/domain/mobile_payment_method_specific_input.rb', line 20

def payment_product_id
  @payment_product_id
end

#public_key_hashString

Returns the current value of public_key_hash.

Returns:

  • (String)

    the current value of public_key_hash



20
21
22
# File 'lib/ingenico/direct/sdk/domain/mobile_payment_method_specific_input.rb', line 20

def public_key_hash
  @public_key_hash
end

#requires_approvaltrue/false

Returns the current value of requires_approval.

Returns:

  • (true/false)

    the current value of requires_approval



20
21
22
# File 'lib/ingenico/direct/sdk/domain/mobile_payment_method_specific_input.rb', line 20

def requires_approval
  @requires_approval
end

Instance Method Details

#from_hash(hash) ⇒ Object



44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# File 'lib/ingenico/direct/sdk/domain/mobile_payment_method_specific_input.rb', line 44

def from_hash(hash)
  super
  @authorization_mode = hash['authorizationMode'] if hash.key? 'authorizationMode'
  if hash.key? 'decryptedPaymentData'
    raise TypeError, "value '%s' is not a Hash" % [hash['decryptedPaymentData']] unless hash['decryptedPaymentData'].is_a? Hash
    @decrypted_payment_data = Ingenico::Direct::SDK::Domain::DecryptedPaymentData.new_from_hash(hash['decryptedPaymentData'])
  end
  @encrypted_payment_data = hash['encryptedPaymentData'] if hash.key? 'encryptedPaymentData'
  @ephemeral_key = hash['ephemeralKey'] if hash.key? 'ephemeralKey'
  if hash.key? 'paymentProduct320SpecificInput'
    raise TypeError, "value '%s' is not a Hash" % [hash['paymentProduct320SpecificInput']] unless hash['paymentProduct320SpecificInput'].is_a? Hash
    @payment_product320_specific_input = Ingenico::Direct::SDK::Domain::MobilePaymentProduct320SpecificInput.new_from_hash(hash['paymentProduct320SpecificInput'])
  end
  @payment_product_id = hash['paymentProductId'] if hash.key? 'paymentProductId'
  @public_key_hash = hash['publicKeyHash'] if hash.key? 'publicKeyHash'
  @requires_approval = hash['requiresApproval'] if hash.key? 'requiresApproval'
end

#to_hHash

Returns:

  • (Hash)


31
32
33
34
35
36
37
38
39
40
41
42
# File 'lib/ingenico/direct/sdk/domain/mobile_payment_method_specific_input.rb', line 31

def to_h
  hash = super
  hash['authorizationMode'] = @authorization_mode unless @authorization_mode.nil?
  hash['decryptedPaymentData'] = @decrypted_payment_data.to_h if @decrypted_payment_data
  hash['encryptedPaymentData'] = @encrypted_payment_data unless @encrypted_payment_data.nil?
  hash['ephemeralKey'] = @ephemeral_key unless @ephemeral_key.nil?
  hash['paymentProduct320SpecificInput'] = @payment_product320_specific_input.to_h if @payment_product320_specific_input
  hash['paymentProductId'] = @payment_product_id unless @payment_product_id.nil?
  hash['publicKeyHash'] = @public_key_hash unless @public_key_hash.nil?
  hash['requiresApproval'] = @requires_approval unless @requires_approval.nil?
  hash
end