Class: Io::Flow::V0::Models::Address

Inherits:
Object
  • Object
show all
Defined in:
lib/flow_commerce/flow_api_v0_client.rb

Overview

Defines structured fields for address to be used in user/form input. Either text or the structured input needs to be present.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ Address

Returns a new instance of Address.



5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 5939

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  @text = (x = opts.delete(:text); x.nil? ? nil : HttpClient::Preconditions.assert_class('text', x, String))
  @streets = (x = opts.delete(:streets); x.nil? ? nil : HttpClient::Preconditions.assert_class('streets', x, Array).map { |v| HttpClient::Preconditions.assert_class('streets', v, String) })
  @city = (x = opts.delete(:city); x.nil? ? nil : HttpClient::Preconditions.assert_class('city', x, String))
  @province = (x = opts.delete(:province); x.nil? ? nil : HttpClient::Preconditions.assert_class('province', x, String))
  @postal = (x = opts.delete(:postal); x.nil? ? nil : HttpClient::Preconditions.assert_class('postal', x, String))
  @country = (x = opts.delete(:country); x.nil? ? nil : HttpClient::Preconditions.assert_class('country', x, String))
  @latitude = (x = opts.delete(:latitude); x.nil? ? nil : HttpClient::Preconditions.assert_class('latitude', x, String))
  @longitude = (x = opts.delete(:longitude); x.nil? ? nil : HttpClient::Preconditions.assert_class('longitude', x, String))
end

Instance Attribute Details

#cityObject (readonly)

Returns the value of attribute city.



5937
5938
5939
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 5937

def city
  @city
end

#countryObject (readonly)

Returns the value of attribute country.



5937
5938
5939
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 5937

def country
  @country
end

#latitudeObject (readonly)

Returns the value of attribute latitude.



5937
5938
5939
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 5937

def latitude
  @latitude
end

#longitudeObject (readonly)

Returns the value of attribute longitude.



5937
5938
5939
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 5937

def longitude
  @longitude
end

#postalObject (readonly)

Returns the value of attribute postal.



5937
5938
5939
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 5937

def postal
  @postal
end

#provinceObject (readonly)

Returns the value of attribute province.



5937
5938
5939
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 5937

def province
  @province
end

#streetsObject (readonly)

Returns the value of attribute streets.



5937
5938
5939
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 5937

def streets
  @streets
end

#textObject (readonly)

Returns the value of attribute text.



5937
5938
5939
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 5937

def text
  @text
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



5955
5956
5957
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 5955

def copy(incoming={})
  Address.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming)))
end

#to_hashObject



5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 5959

def to_hash
  {
    :text => text,
    :streets => streets.nil? ? nil : streets,
    :city => city,
    :province => province,
    :postal => postal,
    :country => country,
    :latitude => latitude,
    :longitude => longitude
  }
end

#to_jsonObject



5951
5952
5953
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 5951

def to_json
  JSON.dump(to_hash)
end