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.
30516 30517 30518 30519 30520 30521 30522 30523 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30516 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.
30514 30515 30516 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30514 def cloned_experience @cloned_experience end |
#id ⇒ Object (readonly)
Returns the value of attribute id.
30514 30515 30516 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30514 def id @id end |
#source_experience ⇒ Object (readonly)
Returns the value of attribute source_experience.
30514 30515 30516 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30514 def source_experience @source_experience end |
#status ⇒ Object (readonly)
Returns the value of attribute status.
30514 30515 30516 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30514 def status @status end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
30529 30530 30531 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30529 def copy(incoming={}) ExperienceClone.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
30533 30534 30535 30536 30537 30538 30539 30540 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30533 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
30525 30526 30527 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30525 def to_json JSON.dump(to_hash) end |