Class: OnlinePayments::SDK::Domain::Address

Inherits:
DataObject
  • Object
show all
Defined in:
lib/onlinepayments/sdk/domain/address.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from DataObject

new_from_hash

Instance Attribute Details

#additional_infoString

Returns the current value of additional_info.

Returns:

  • (String)

    the current value of additional_info



16
17
18
# File 'lib/onlinepayments/sdk/domain/address.rb', line 16

def additional_info
  @additional_info
end

#cityString

Returns the current value of city.

Returns:

  • (String)

    the current value of city



16
17
18
# File 'lib/onlinepayments/sdk/domain/address.rb', line 16

def city
  @city
end

#country_codeString

Returns the current value of country_code.

Returns:

  • (String)

    the current value of country_code



16
17
18
# File 'lib/onlinepayments/sdk/domain/address.rb', line 16

def country_code
  @country_code
end

#house_numberString

Returns the current value of house_number.

Returns:

  • (String)

    the current value of house_number



16
17
18
# File 'lib/onlinepayments/sdk/domain/address.rb', line 16

def house_number
  @house_number
end

#stateString

Returns the current value of state.

Returns:

  • (String)

    the current value of state



16
17
18
# File 'lib/onlinepayments/sdk/domain/address.rb', line 16

def state
  @state
end

#streetString

Returns the current value of street.

Returns:

  • (String)

    the current value of street



16
17
18
# File 'lib/onlinepayments/sdk/domain/address.rb', line 16

def street
  @street
end

#zipString

Returns the current value of zip.

Returns:

  • (String)

    the current value of zip



16
17
18
# File 'lib/onlinepayments/sdk/domain/address.rb', line 16

def zip
  @zip
end

Instance Method Details

#from_hash(hash) ⇒ Object



45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# File 'lib/onlinepayments/sdk/domain/address.rb', line 45

def from_hash(hash)
  super
  if hash.has_key? 'additionalInfo'
    @additional_info = hash['additionalInfo']
  end
  if hash.has_key? 'city'
    @city = hash['city']
  end
  if hash.has_key? 'countryCode'
    @country_code = hash['countryCode']
  end
  if hash.has_key? 'houseNumber'
    @house_number = hash['houseNumber']
  end
  if hash.has_key? 'state'
    @state = hash['state']
  end
  if hash.has_key? 'street'
    @street = hash['street']
  end
  if hash.has_key? 'zip'
    @zip = hash['zip']
  end
end

#to_hHash

Returns:

  • (Hash)


33
34
35
36
37
38
39
40
41
42
43
# File 'lib/onlinepayments/sdk/domain/address.rb', line 33

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['state'] = @state unless @state.nil?
  hash['street'] = @street unless @street.nil?
  hash['zip'] = @zip unless @zip.nil?
  hash
end