Class: Io::Flow::V0::Models::DiscountRuleSettingsForm

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 = {}) ⇒ DiscountRuleSettingsForm

Returns a new instance of DiscountRuleSettingsForm.



30744
30745
30746
30747
30748
30749
30750
30751
30752
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30744

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:name, :from_with_tz, :experience_keys, :rule], 'DiscountRuleSettingsForm')
  @name = HttpClient::Preconditions.assert_class('name', opts.delete(:name), String)
  @from_with_tz = (x = opts.delete(:from_with_tz); x.is_a?(::Io::Flow::V0::Models::DatetimeWithTimezone) ? x : ::Io::Flow::V0::Models::DatetimeWithTimezone.new(x))
  @to_with_tz = (x = opts.delete(:to_with_tz); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::DatetimeWithTimezone) ? x : ::Io::Flow::V0::Models::DatetimeWithTimezone.new(x)))
  @experience_keys = HttpClient::Preconditions.assert_class('experience_keys', opts.delete(:experience_keys), Array).map { |v| HttpClient::Preconditions.assert_class('experience_keys', v, String) }
  @rule = (x = opts.delete(:rule); x.is_a?(::Io::Flow::V0::Models::DiscountRule) ? x : ::Io::Flow::V0::Models::DiscountRule.new(x))
end

Instance Attribute Details

#experience_keysObject (readonly)

Returns the value of attribute experience_keys.



30742
30743
30744
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30742

def experience_keys
  @experience_keys
end

#from_with_tzObject (readonly)

Returns the value of attribute from_with_tz.



30742
30743
30744
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30742

def from_with_tz
  @from_with_tz
end

#nameObject (readonly)

Returns the value of attribute name.



30742
30743
30744
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30742

def name
  @name
end

#ruleObject (readonly)

Returns the value of attribute rule.



30742
30743
30744
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30742

def rule
  @rule
end

#to_with_tzObject (readonly)

Returns the value of attribute to_with_tz.



30742
30743
30744
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30742

def to_with_tz
  @to_with_tz
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



30758
30759
30760
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30758

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

#to_hashObject



30762
30763
30764
30765
30766
30767
30768
30769
30770
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30762

def to_hash
  {
    :name => name,
    :from_with_tz => from_with_tz.to_hash,
    :to_with_tz => to_with_tz.nil? ? nil : to_with_tz.to_hash,
    :experience_keys => experience_keys,
    :rule => rule.to_hash
  }
end

#to_jsonObject



30754
30755
30756
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30754

def to_json
  JSON.dump(to_hash)
end