Class: Io::Flow::V0::Models::ShippingLaneDefaultTierForm
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::ShippingLaneDefaultTierForm
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#tier_id ⇒ Object
readonly
Returns the value of attribute tier_id.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ ShippingLaneDefaultTierForm
constructor
A new instance of ShippingLaneDefaultTierForm.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ ShippingLaneDefaultTierForm
Returns a new instance of ShippingLaneDefaultTierForm.
50902 50903 50904 50905 50906 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 50902 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:tier_id], 'ShippingLaneDefaultTierForm') @tier_id = HttpClient::Preconditions.assert_class('tier_id', opts.delete(:tier_id), String) end |
Instance Attribute Details
#tier_id ⇒ Object (readonly)
Returns the value of attribute tier_id.
50900 50901 50902 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 50900 def tier_id @tier_id end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
50912 50913 50914 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 50912 def copy(incoming={}) ShippingLaneDefaultTierForm.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
50916 50917 50918 50919 50920 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 50916 def to_hash { :tier_id => tier_id } end |
#to_json ⇒ Object
50908 50909 50910 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 50908 def to_json JSON.dump(to_hash) end |