Class: Io::Flow::V0::Models::ExperienceClone
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::ExperienceClone
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Overview
Represents a request to clone an experience.
Instance Attribute Summary collapse
-
#cloned_experience ⇒ Object
readonly
Returns the value of attribute cloned_experience.
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#source_experience ⇒ Object
readonly
Returns the value of attribute source_experience.
-
#status ⇒ Object
readonly
Returns the value of attribute status.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ ExperienceClone
constructor
A new instance of ExperienceClone.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ ExperienceClone
Returns a new instance of ExperienceClone.
29077 29078 29079 29080 29081 29082 29083 29084 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29077 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_experience ⇒ Object (readonly)
Returns the value of attribute cloned_experience.
29075 29076 29077 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29075 def cloned_experience @cloned_experience end |
#id ⇒ Object (readonly)
Returns the value of attribute id.
29075 29076 29077 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29075 def id @id end |
#source_experience ⇒ Object (readonly)
Returns the value of attribute source_experience.
29075 29076 29077 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29075 def source_experience @source_experience end |
#status ⇒ Object (readonly)
Returns the value of attribute status.
29075 29076 29077 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29075 def status @status end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
29090 29091 29092 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29090 def copy(incoming={}) ExperienceClone.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
29094 29095 29096 29097 29098 29099 29100 29101 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29094 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_json ⇒ Object
29086 29087 29088 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29086 def to_json JSON.dump(to_hash) end |