Class: Ingenico::Direct::SDK::Domain::AddressPersonal
- Inherits:
-
Ingenico::Direct::SDK::DataObject
- Object
- Ingenico::Direct::SDK::DataObject
- Ingenico::Direct::SDK::Domain::AddressPersonal
- Defined in:
- lib/ingenico/direct/sdk/domain/address_personal.rb
Instance Attribute Summary collapse
-
#additional_info ⇒ String
The current value of additional_info.
-
#city ⇒ String
The current value of city.
-
#country_code ⇒ String
The current value of country_code.
-
#house_number ⇒ String
The current value of house_number.
-
#name ⇒ Ingenico::Direct::SDK::Domain::PersonalName
The current value of name.
-
#state ⇒ String
The current value of state.
-
#street ⇒ String
The current value of street.
-
#zip ⇒ String
The current value of zip.
Instance Method Summary collapse
Methods inherited from Ingenico::Direct::SDK::DataObject
Instance Attribute Details
#additional_info ⇒ String
Returns 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 |
#city ⇒ String
Returns the current value of city.
19 20 21 |
# File 'lib/ingenico/direct/sdk/domain/address_personal.rb', line 19 def city @city end |
#country_code ⇒ String
Returns 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_number ⇒ String
Returns 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 |
#name ⇒ Ingenico::Direct::SDK::Domain::PersonalName
Returns the current value of name.
19 20 21 |
# File 'lib/ingenico/direct/sdk/domain/address_personal.rb', line 19 def name @name end |
#state ⇒ String
Returns the current value of state.
19 20 21 |
# File 'lib/ingenico/direct/sdk/domain/address_personal.rb', line 19 def state @state end |
#street ⇒ String
Returns the current value of street.
19 20 21 |
# File 'lib/ingenico/direct/sdk/domain/address_personal.rb', line 19 def street @street end |
#zip ⇒ String
Returns 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_h ⇒ 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 |