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.



31042
31043
31044
31045
31046
31047
31048
31049
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31042

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.



31040
31041
31042
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31040

def cloned_experience
  @cloned_experience
end

#idObject (readonly)

Returns the value of attribute id.



31040
31041
31042
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31040

def id
  @id
end

#source_experienceObject (readonly)

Returns the value of attribute source_experience.



31040
31041
31042
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31040

def source_experience
  @source_experience
end

#statusObject (readonly)

Returns the value of attribute status.



31040
31041
31042
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31040

def status
  @status
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



31055
31056
31057
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31055

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

#to_hashObject



31059
31060
31061
31062
31063
31064
31065
31066
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31059

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



31051
31052
31053
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31051

def to_json
  JSON.dump(to_hash)
end