Class: Io::Flow::V0::Models::DiscountForm

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ DiscountForm

Returns a new instance of DiscountForm.



36813
36814
36815
36816
36817
36818
36819
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36813

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:offer], 'DiscountForm')
  @offer = (x = opts.delete(:offer); x.is_a?(::Io::Flow::V0::Models::DiscountOffer) ? x : ::Io::Flow::V0::Models::DiscountOffer.from_json(x))
  @target = (x = (x = opts.delete(:target); x.nil? ? "item" : x); x.is_a?(::Io::Flow::V0::Models::DiscountTarget) ? x : ::Io::Flow::V0::Models::DiscountTarget.apply(x))
  @label = (x = opts.delete(:label); x.nil? ? nil : HttpClient::Preconditions.assert_class('label', x, String))
end

Instance Attribute Details

#labelObject (readonly)

Returns the value of attribute label.



36811
36812
36813
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36811

def label
  @label
end

#offerObject (readonly)

Returns the value of attribute offer.



36811
36812
36813
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36811

def offer
  @offer
end

#targetObject (readonly)

Returns the value of attribute target.



36811
36812
36813
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36811

def target
  @target
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



36825
36826
36827
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36825

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

#to_hashObject



36829
36830
36831
36832
36833
36834
36835
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36829

def to_hash
  {
    :offer => offer.to_hash,
    :target => target.value,
    :label => label
  }
end

#to_jsonObject



36821
36822
36823
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36821

def to_json
  JSON.dump(to_hash)
end