Class: Io::Flow::V0::Models::AbandonedOrderPromotionDiscountDetails

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

Instance Attribute Summary collapse

Attributes inherited from AbandonedOrderPromotionDetails

#discriminator

Instance Method Summary collapse

Methods inherited from AbandonedOrderPromotionDetails

from_json, #to_hash

Constructor Details

#initialize(incoming = {}) ⇒ AbandonedOrderPromotionDiscountDetails

Returns a new instance of AbandonedOrderPromotionDiscountDetails.



26606
26607
26608
26609
26610
26611
26612
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26606

def initialize(incoming={})
  super(:discriminator => AbandonedOrderPromotionDetails::Types::ABANDONED_ORDER_PROMOTION_DISCOUNT_DETAILS)
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:discount_form, :attributes], 'AbandonedOrderPromotionDiscountDetails')
  @discount_form = (x = opts.delete(:discount_form); x.is_a?(::Io::Flow::V0::Models::DiscountForm) ? x : ::Io::Flow::V0::Models::DiscountForm.new(x))
  @attributes = HttpClient::Preconditions.assert_class('attributes', opts.delete(:attributes), Hash).inject({}) { |h, d| h[d[0]] = HttpClient::Preconditions.assert_class('attributes', d[1], String); h }
end

Instance Attribute Details

#attributesObject (readonly)

Returns the value of attribute attributes.



26604
26605
26606
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26604

def attributes
  @attributes
end

#discount_formObject (readonly)

Returns the value of attribute discount_form.



26604
26605
26606
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26604

def discount_form
  @discount_form
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



26618
26619
26620
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26618

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

#subtype_to_hashObject



26622
26623
26624
26625
26626
26627
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26622

def subtype_to_hash
  {
    :discount_form => discount_form.to_hash,
    :attributes => attributes
  }
end

#to_jsonObject



26614
26615
26616
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26614

def to_json
  JSON.dump(to_hash)
end