Class: Ingenico::Direct::SDK::Domain::AddressPersonal

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

Instance Attribute Summary collapse

Instance Method Summary collapse

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

new_from_hash

Instance Attribute Details

#additional_infoString

Returns the current value of additional_info.

Returns:

  • (String)

    the current value of additional_info



19
20
21
# File 'lib/ingenico/direct/sdk/domain/address_personal.rb', line 19

def additional_info
  @additional_info
end

#cityString

Returns the current value of city.

Returns:

  • (String)

    the current value of city



19
20
21
# File 'lib/ingenico/direct/sdk/domain/address_personal.rb', line 19

def city
  @city
end

#country_codeString

Returns the current value of country_code.

Returns:

  • (String)

    the current value of country_code



19
20
21
# File 'lib/ingenico/direct/sdk/domain/address_personal.rb', line 19

def country_code
  @country_code
end

#house_numberString

Returns the current value of house_number.

Returns:

  • (String)

    the current value of house_number



19
20
21
# File 'lib/ingenico/direct/sdk/domain/address_personal.rb', line 19

def house_number
  @house_number
end

#nameIngenico::Direct::SDK::Domain::PersonalName

Returns the current value of name.

Returns:



19
20
21
# File 'lib/ingenico/direct/sdk/domain/address_personal.rb', line 19

def name
  @name
end

#stateString

Returns the current value of state.

Returns:

  • (String)

    the current value of state



19
20
21
# File 'lib/ingenico/direct/sdk/domain/address_personal.rb', line 19

def state
  @state
end

#streetString

Returns the current value of street.

Returns:

  • (String)

    the current value of street



19
20
21
# File 'lib/ingenico/direct/sdk/domain/address_personal.rb', line 19

def street
  @street
end

#zipString

Returns the current value of zip.

Returns:

  • (String)

    the current value of zip



19
20
21
# File 'lib/ingenico/direct/sdk/domain/address_personal.rb', line 19

def zip
  @zip
end

Instance Method Details

#from_hash(hash) ⇒ Object



43
44
45
46
47
48
49
50
51
52
53
54
55
56
# File 'lib/ingenico/direct/sdk/domain/address_personal.rb', line 43

def from_hash(hash)
  super
  @additional_info = hash['additionalInfo'] if hash.key? 'additionalInfo'
  @city = hash['city'] if hash.key? 'city'
  @country_code = hash['countryCode'] if hash.key? 'countryCode'
  @house_number = hash['houseNumber'] if hash.key? 'houseNumber'
  if hash.key? 'name'
    raise TypeError, "value '%s' is not a Hash" % [hash['name']] unless hash['name'].is_a? Hash
    @name = Ingenico::Direct::SDK::Domain::PersonalName.new_from_hash(hash['name'])
  end
  @state = hash['state'] if hash.key? 'state'
  @street = hash['street'] if hash.key? 'street'
  @zip = hash['zip'] if hash.key? 'zip'
end

#to_hHash

Returns:

  • (Hash)


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

def to_h
  hash = super
  hash['additionalInfo'] = @additional_info unless @additional_info.nil?
  hash['city'] = @city unless @city.nil?
  hash['countryCode'] = @country_code unless @country_code.nil?
  hash['houseNumber'] = @house_number unless @house_number.nil?
  hash['name'] = @name.to_h if @name
  hash['state'] = @state unless @state.nil?
  hash['street'] = @street unless @street.nil?
  hash['zip'] = @zip unless @zip.nil?
  hash
end