Class: Ingenico::Connect::SDK::Domain::Payment::PersonalInformation

Inherits:
Ingenico::Connect::SDK::DataObject show all
Defined in:
lib/ingenico/connect/sdk/domain/payment/personal_information.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Ingenico::Connect::SDK::DataObject

new_from_hash

Instance Attribute Details

#date_of_birthString

Returns the current value of date_of_birth.

Returns:

  • (String)

    the current value of date_of_birth



15
16
17
# File 'lib/ingenico/connect/sdk/domain/payment/personal_information.rb', line 15

def date_of_birth
  @date_of_birth
end

#genderString

Returns the current value of gender.

Returns:

  • (String)

    the current value of gender



15
16
17
# File 'lib/ingenico/connect/sdk/domain/payment/personal_information.rb', line 15

def gender
  @gender
end

#nameIngenico::Connect::SDK::Domain::Payment::PersonalName

Returns the current value of name.

Returns:



15
16
17
# File 'lib/ingenico/connect/sdk/domain/payment/personal_information.rb', line 15

def name
  @name
end

Instance Method Details

#from_hash(hash) ⇒ Object



32
33
34
35
36
37
38
39
40
41
42
43
44
# File 'lib/ingenico/connect/sdk/domain/payment/personal_information.rb', line 32

def from_hash(hash)
  super
  if hash.has_key? 'dateOfBirth'
    @date_of_birth = hash['dateOfBirth']
  end
  if hash.has_key? 'gender'
    @gender = hash['gender']
  end
  if hash.has_key? 'name'
    raise TypeError, "value '%s' is not a Hash" % [hash['name']] unless hash['name'].is_a? Hash
    @name = Ingenico::Connect::SDK::Domain::Payment::PersonalName.new_from_hash(hash['name'])
  end
end

#to_hHash

Returns:

  • (Hash)


24
25
26
27
28
29
30
# File 'lib/ingenico/connect/sdk/domain/payment/personal_information.rb', line 24

def to_h
  hash = super
  hash['dateOfBirth'] = @date_of_birth unless @date_of_birth.nil?
  hash['gender'] = @gender unless @gender.nil?
  hash['name'] = @name.to_h unless @name.nil?
  hash
end