class Io::Flow::V0::Models::OrderQuotePrice

Attributes

discriminator[R]

Public Class Methods

from_json(hash) click to toggle source
# File lib/flow_commerce/flow_api_v0_client.rb, line 13321
def OrderQuotePrice.from_json(hash)
  HttpClient::Preconditions.assert_class('hash', hash, Hash)
  discriminator = HttpClient::Helper.symbolize_keys(hash)[:discriminator].to_s.strip
  if discriminator.empty?
    raise "Union type[order_quote_price] requires a field named 'discriminator'"
  end
  case discriminator
    when Types::ORDER_QUOTE_PRICE_FREE; OrderQuotePriceFree.new(hash)
    when Types::ORDER_QUOTE_PRICE_NOT_YET_KNOWN; OrderQuotePriceNotYetKnown.new(hash)
    when Types::ORDER_QUOTE_PRICE_INCLUDED; OrderQuotePriceIncluded.new(hash)
    when Types::ORDER_QUOTE_PRICE_STANDARD; OrderQuotePriceStandard.new(hash)
    when Types::ORDER_QUOTE_PRICE_ESTIMATED; OrderQuotePriceEstimated.new(hash)
    else OrderQuotePriceUndefinedType.new(:discriminator => discriminator)
  end
end
new(incoming={}) click to toggle source
# File lib/flow_commerce/flow_api_v0_client.rb, line 13307
def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:discriminator], 'OrderQuotePrice')
  @discriminator = HttpClient::Preconditions.assert_class('discriminator', opts.delete(:discriminator), String)
end

Public Instance Methods

subtype_to_hash() click to toggle source
# File lib/flow_commerce/flow_api_v0_client.rb, line 13313
def subtype_to_hash
  raise 'Cannot serialize an instance of order_quote_price directly - must use one of the specific types: order_quote_price_free, order_quote_price_not_yet_known, order_quote_price_included, order_quote_price_standard, order_quote_price_estimated'
end
to_hash() click to toggle source
# File lib/flow_commerce/flow_api_v0_client.rb, line 13317
def to_hash
  subtype_to_hash.merge(:discriminator => @discriminator)
end