Class: Io::Flow::V0::Models::SessionExperimentForm
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::SessionExperimentForm
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#key ⇒ Object
readonly
Returns the value of attribute key.
-
#variant ⇒ Object
readonly
Returns the value of attribute variant.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ SessionExperimentForm
constructor
A new instance of SessionExperimentForm.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ SessionExperimentForm
Returns a new instance of SessionExperimentForm.
48174 48175 48176 48177 48178 48179 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 48174 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:key], 'SessionExperimentForm') @key = HttpClient::Preconditions.assert_class('key', opts.delete(:key), String) @variant = (x = opts.delete(:variant); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::SessionExperimentVariantForm) ? x : ::Io::Flow::V0::Models::SessionExperimentVariantForm.new(x))) end |
Instance Attribute Details
#key ⇒ Object (readonly)
Returns the value of attribute key.
48172 48173 48174 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 48172 def key @key end |
#variant ⇒ Object (readonly)
Returns the value of attribute variant.
48172 48173 48174 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 48172 def variant @variant end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
48185 48186 48187 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 48185 def copy(incoming={}) SessionExperimentForm.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
48189 48190 48191 48192 48193 48194 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 48189 def to_hash { :key => key, :variant => variant.nil? ? nil : variant.to_hash } end |
#to_json ⇒ Object
48181 48182 48183 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 48181 def to_json JSON.dump(to_hash) end |