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.



29914
29915
29916
29917
29918
29919
29920
29921
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29914

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.



29912
29913
29914
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29912

def cloned_experience
  @cloned_experience
end

#idObject (readonly)

Returns the value of attribute id.



29912
29913
29914
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29912

def id
  @id
end

#source_experienceObject (readonly)

Returns the value of attribute source_experience.



29912
29913
29914
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29912

def source_experience
  @source_experience
end

#statusObject (readonly)

Returns the value of attribute status.



29912
29913
29914
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29912

def status
  @status
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



29927
29928
29929
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29927

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

#to_hashObject



29931
29932
29933
29934
29935
29936
29937
29938
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29931

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



29923
29924
29925
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29923

def to_json
  JSON.dump(to_hash)
end