Class: Io::Flow::V0::Models::ItemShippingPricing

Inherits:
Object
  • Object
show all
Defined in:
lib/flow_commerce/flow_api_v0_client.rb

Overview

Available shipping price(s) a customer sees. This can be used for targetted ads on Google or to display shipping price(s) on a PDP.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ ItemShippingPricing

Returns a new instance of ItemShippingPricing.



44330
44331
44332
44333
44334
44335
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 44330

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:min], 'ItemShippingPricing')
  @min = (x = opts.delete(:min); x.is_a?(::Io::Flow::V0::Models::Price) ? x : ::Io::Flow::V0::Models::Price.new(x))
  @max = (x = opts.delete(:max); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::Price) ? x : ::Io::Flow::V0::Models::Price.new(x)))
end

Instance Attribute Details

#maxObject (readonly)

Returns the value of attribute max.



44328
44329
44330
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 44328

def max
  @max
end

#minObject (readonly)

Returns the value of attribute min.



44328
44329
44330
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 44328

def min
  @min
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



44341
44342
44343
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 44341

def copy(incoming={})
  ItemShippingPricing.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming)))
end

#to_hashObject



44345
44346
44347
44348
44349
44350
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 44345

def to_hash
  {
    :min => min.to_hash,
    :max => max.nil? ? nil : max.to_hash
  }
end

#to_jsonObject



44337
44338
44339
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 44337

def to_json
  JSON.dump(to_hash)
end