Class: Io::Flow::V0::Models::OrderQuoteAddress

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ OrderQuoteAddress

Returns a new instance of OrderQuoteAddress.



46981
46982
46983
46984
46985
46986
46987
46988
46989
46990
46991
46992
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 46981

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  @name = (x = opts.delete(:name); x.nil? ? nil : HttpClient::Preconditions.assert_class('name', x, String))
  @first_name = (x = opts.delete(:first_name); x.nil? ? nil : HttpClient::Preconditions.assert_class('first_name', x, String))
  @last_name = (x = opts.delete(:last_name); x.nil? ? nil : HttpClient::Preconditions.assert_class('last_name', x, String))
  @country = (x = opts.delete(:country); x.nil? ? nil : HttpClient::Preconditions.assert_class('country', 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))
  @company = (x = opts.delete(:company); x.nil? ? nil : HttpClient::Preconditions.assert_class('company', x, String))
end

Instance Attribute Details

#cityObject (readonly)

Returns the value of attribute city.



46979
46980
46981
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 46979

def city
  @city
end

#companyObject (readonly)

Returns the value of attribute company.



46979
46980
46981
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 46979

def company
  @company
end

#countryObject (readonly)

Returns the value of attribute country.



46979
46980
46981
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 46979

def country
  @country
end

#first_nameObject (readonly)

Returns the value of attribute first_name.



46979
46980
46981
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 46979

def first_name
  @first_name
end

#last_nameObject (readonly)

Returns the value of attribute last_name.



46979
46980
46981
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 46979

def last_name
  @last_name
end

#nameObject (readonly)

Returns the value of attribute name.



46979
46980
46981
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 46979

def name
  @name
end

#postalObject (readonly)

Returns the value of attribute postal.



46979
46980
46981
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 46979

def postal
  @postal
end

#provinceObject (readonly)

Returns the value of attribute province.



46979
46980
46981
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 46979

def province
  @province
end

#streetsObject (readonly)

Returns the value of attribute streets.



46979
46980
46981
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 46979

def streets
  @streets
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



46998
46999
47000
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 46998

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

#to_hashObject



47002
47003
47004
47005
47006
47007
47008
47009
47010
47011
47012
47013
47014
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 47002

def to_hash
  {
    :name => name,
    :first_name => first_name,
    :last_name => last_name,
    :country => country,
    :streets => streets.nil? ? nil : streets,
    :city => city,
    :province => province,
    :postal => postal,
    :company => company
  }
end

#to_jsonObject



46994
46995
46996
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 46994

def to_json
  JSON.dump(to_hash)
end