Class: Io::Flow::V0::Models::ExperienceConfigurationReference
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::ExperienceConfigurationReference
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#id ⇒ Object
readonly
Returns the value of attribute id.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ ExperienceConfigurationReference
constructor
A new instance of ExperienceConfigurationReference.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ ExperienceConfigurationReference
30574 30575 30576 30577 30578 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30574 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:id], 'ExperienceConfigurationReference') @id = HttpClient::Preconditions.assert_class('id', opts.delete(:id), String) end |
Instance Attribute Details
#id ⇒ Object (readonly)
Returns the value of attribute id.
30572 30573 30574 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30572 def id @id end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
30584 30585 30586 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30584 def copy(incoming={}) ExperienceConfigurationReference.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
30588 30589 30590 30591 30592 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30588 def to_hash { :id => id } end |
#to_json ⇒ Object
30580 30581 30582 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30580 def to_json JSON.dump(to_hash) end |