Class: Io::Flow::V0::Models::ContextForm

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

Returns a new instance of ContextForm.



26662
26663
26664
26665
26666
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26662

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:experiments], 'ContextForm')
  @experiments = HttpClient::Preconditions.assert_class('experiments', opts.delete(:experiments), Array).map { |v| (x = v; x.is_a?(::Io::Flow::V0::Models::SessionContextExperiment) ? x : ::Io::Flow::V0::Models::SessionContextExperiment.new(x)) }
end

Instance Attribute Details

#experimentsObject (readonly)

Returns the value of attribute experiments.



26660
26661
26662
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26660

def experiments
  @experiments
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



26672
26673
26674
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26672

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

#to_hashObject



26676
26677
26678
26679
26680
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26676

def to_hash
  {
    :experiments => experiments.map { |o| o.to_hash }
  }
end

#to_jsonObject



26668
26669
26670
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26668

def to_json
  JSON.dump(to_hash)
end