Class: Io::Flow::V0::Models::DutyItemProducer
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::DutyItemProducer
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Overview
Manufacturer of an item.
Instance Attribute Summary collapse
-
#contact ⇒ Object
readonly
Returns the value of attribute contact.
-
#key ⇒ Object
readonly
Returns the value of attribute key.
-
#location ⇒ Object
readonly
Returns the value of attribute location.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ DutyItemProducer
constructor
A new instance of DutyItemProducer.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ DutyItemProducer
Returns a new instance of DutyItemProducer.
40562 40563 40564 40565 40566 40567 40568 40569 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 40562 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:key, :name, :location], 'DutyItemProducer') @key = HttpClient::Preconditions.assert_class('key', opts.delete(:key), String) @name = HttpClient::Preconditions.assert_class('name', opts.delete(:name), String) @location = (x = opts.delete(:location); x.is_a?(::Io::Flow::V0::Models::Address) ? x : ::Io::Flow::V0::Models::Address.new(x)) @contact = (x = opts.delete(:contact); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::Contact) ? x : ::Io::Flow::V0::Models::Contact.new(x))) end |
Instance Attribute Details
#contact ⇒ Object (readonly)
Returns the value of attribute contact.
40560 40561 40562 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 40560 def contact @contact end |
#key ⇒ Object (readonly)
Returns the value of attribute key.
40560 40561 40562 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 40560 def key @key end |
#location ⇒ Object (readonly)
Returns the value of attribute location.
40560 40561 40562 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 40560 def location @location end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
40560 40561 40562 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 40560 def name @name end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
40575 40576 40577 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 40575 def copy(incoming={}) DutyItemProducer.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
40579 40580 40581 40582 40583 40584 40585 40586 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 40579 def to_hash { :key => key, :name => name, :location => location.to_hash, :contact => contact.nil? ? nil : contact.to_hash } end |
#to_json ⇒ Object
40571 40572 40573 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 40571 def to_json JSON.dump(to_hash) end |