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
Returns a new instance of ExperienceConfigurationReference.
31105 31106 31107 31108 31109 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31105 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.
31103 31104 31105 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31103 def id @id end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
31115 31116 31117 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31115 def copy(incoming={}) ExperienceConfigurationReference.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
31119 31120 31121 31122 31123 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31119 def to_hash { :id => id } end |
#to_json ⇒ Object
31111 31112 31113 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31111 def to_json JSON.dump(to_hash) end |