Class: Io::Flow::V0::Models::SurchargeSetting
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::SurchargeSetting
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#key ⇒ Object
readonly
Returns the value of attribute key.
-
#responsible_party ⇒ Object
readonly
Returns the value of attribute responsible_party.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ SurchargeSetting
constructor
A new instance of SurchargeSetting.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ SurchargeSetting
Returns a new instance of SurchargeSetting.
42964 42965 42966 42967 42968 42969 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42964 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:key, :responsible_party], 'SurchargeSetting') @key = (x = opts.delete(:key); x.is_a?(::Io::Flow::V0::Models::DeliveryOptionCostDetailComponentKey) ? x : ::Io::Flow::V0::Models::DeliveryOptionCostDetailComponentKey.apply(x)) @responsible_party = (x = opts.delete(:responsible_party); x.is_a?(::Io::Flow::V0::Models::SurchargeResponsibleParty) ? x : ::Io::Flow::V0::Models::SurchargeResponsibleParty.apply(x)) end |
Instance Attribute Details
#key ⇒ Object (readonly)
Returns the value of attribute key.
42962 42963 42964 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42962 def key @key end |
#responsible_party ⇒ Object (readonly)
Returns the value of attribute responsible_party.
42962 42963 42964 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42962 def responsible_party @responsible_party end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
42975 42976 42977 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42975 def copy(incoming={}) SurchargeSetting.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
42979 42980 42981 42982 42983 42984 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42979 def to_hash { :key => key.value, :responsible_party => responsible_party.value } end |
#to_json ⇒ Object
42971 42972 42973 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42971 def to_json JSON.dump(to_hash) end |