Class: Io::Flow::V0::Models::ExperienceClone

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

Overview

Represents a request to clone an experience.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ ExperienceClone

Returns a new instance of ExperienceClone.



27217
27218
27219
27220
27221
27222
27223
27224
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27217

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:id, :source_experience, :status], 'ExperienceClone')
  @id = HttpClient::Preconditions.assert_class('id', opts.delete(:id), String)
  @source_experience = (x = opts.delete(:source_experience); x.is_a?(::Io::Flow::V0::Models::ExperienceReference) ? x : ::Io::Flow::V0::Models::ExperienceReference.new(x))
  @cloned_experience = (x = opts.delete(:cloned_experience); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::ExperienceReference) ? x : ::Io::Flow::V0::Models::ExperienceReference.new(x)))
  @status = (x = opts.delete(:status); x.is_a?(::Io::Flow::V0::Models::ExperienceCloneStatus) ? x : ::Io::Flow::V0::Models::ExperienceCloneStatus.apply(x))
end

Instance Attribute Details

#cloned_experienceObject (readonly)

Returns the value of attribute cloned_experience.



27215
27216
27217
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27215

def cloned_experience
  @cloned_experience
end

#idObject (readonly)

Returns the value of attribute id.



27215
27216
27217
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27215

def id
  @id
end

#source_experienceObject (readonly)

Returns the value of attribute source_experience.



27215
27216
27217
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27215

def source_experience
  @source_experience
end

#statusObject (readonly)

Returns the value of attribute status.



27215
27216
27217
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27215

def status
  @status
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



27230
27231
27232
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27230

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

#to_hashObject



27234
27235
27236
27237
27238
27239
27240
27241
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27234

def to_hash
  {
    :id => id,
    :source_experience => source_experience.to_hash,
    :cloned_experience => cloned_experience.nil? ? nil : cloned_experience.to_hash,
    :status => status.value
  }
end

#to_jsonObject



27226
27227
27228
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27226

def to_json
  JSON.dump(to_hash)
end