Class: Io::Flow::V0::Models::Duty
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::Duty
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Overview
Represents a simple model of duties that apply to a given item / trade lane.
Instance Attribute Summary collapse
-
#components ⇒ Object
readonly
Returns the value of attribute components.
-
#deminimis ⇒ Object
readonly
Returns the value of attribute deminimis.
-
#rate ⇒ Object
readonly
Returns the value of attribute rate.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ Duty
constructor
A new instance of Duty.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ Duty
Returns a new instance of Duty.
12891 12892 12893 12894 12895 12896 12897 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12891 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:rate, :components], 'Duty') @rate = HttpClient::Preconditions.assert_class('rate', HttpClient::Helper.to_big_decimal(opts.delete(:rate)), BigDecimal) @components = HttpClient::Preconditions.assert_class('components', opts.delete(:components), Array).map { |v| (x = v; x.is_a?(::Io::Flow::V0::Models::LevyComponent) ? x : ::Io::Flow::V0::Models::LevyComponent.apply(x)) } @deminimis = (x = opts.delete(:deminimis); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::Deminimis) ? x : ::Io::Flow::V0::Models::Deminimis.from_json(x))) end |
Instance Attribute Details
#components ⇒ Object (readonly)
Returns the value of attribute components.
12889 12890 12891 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12889 def components @components end |
#deminimis ⇒ Object (readonly)
Returns the value of attribute deminimis.
12889 12890 12891 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12889 def deminimis @deminimis end |
#rate ⇒ Object (readonly)
Returns the value of attribute rate.
12889 12890 12891 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12889 def rate @rate end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
12903 12904 12905 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12903 def copy(incoming={}) Duty.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
12907 12908 12909 12910 12911 12912 12913 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12907 def to_hash { :rate => rate, :components => components.map { |o| o.value }, :deminimis => deminimis.nil? ? nil : deminimis.to_hash } end |
#to_json ⇒ Object
12899 12900 12901 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12899 def to_json JSON.dump(to_hash) end |