Class: Io::Flow::V0::Models::OrderQuoteAddress
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::OrderQuoteAddress
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#city ⇒ Object
readonly
Returns the value of attribute city.
-
#company ⇒ Object
readonly
Returns the value of attribute company.
-
#country ⇒ Object
readonly
Returns the value of attribute country.
-
#first_name ⇒ Object
readonly
Returns the value of attribute first_name.
-
#last_name ⇒ Object
readonly
Returns the value of attribute last_name.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#postal ⇒ Object
readonly
Returns the value of attribute postal.
-
#province ⇒ Object
readonly
Returns the value of attribute province.
-
#streets ⇒ Object
readonly
Returns the value of attribute streets.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ OrderQuoteAddress
constructor
A new instance of OrderQuoteAddress.
- #to_hash ⇒ Object
- #to_json ⇒ Object
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
#city ⇒ Object (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 |
#company ⇒ Object (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 |
#country ⇒ Object (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_name ⇒ Object (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_name ⇒ Object (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 |
#name ⇒ Object (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 |
#postal ⇒ Object (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 |
#province ⇒ Object (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 |
#streets ⇒ Object (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_hash ⇒ Object
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_json ⇒ Object
46994 46995 46996 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 46994 def to_json JSON.dump(to_hash) end |