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



31141
31142
31143
31144
31145
31146
31147
31148
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31141

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.



31139
31140
31141
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31139

def cloned_experience
  @cloned_experience
end

#idObject (readonly)

Returns the value of attribute id.



31139
31140
31141
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31139

def id
  @id
end

#source_experienceObject (readonly)

Returns the value of attribute source_experience.



31139
31140
31141
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31139

def source_experience
  @source_experience
end

#statusObject (readonly)

Returns the value of attribute status.



31139
31140
31141
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31139

def status
  @status
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



31154
31155
31156
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31154

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

#to_hashObject



31158
31159
31160
31161
31162
31163
31164
31165
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31158

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



31150
31151
31152
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31150

def to_json
  JSON.dump(to_hash)
end