Class: Io::Flow::V0::Models::ExperienceCheckoutSettings

Inherits:
Object
  • Object
show all
Defined in:
lib/flow_commerce/flow_api_v0_client.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ ExperienceCheckoutSettings

Returns a new instance of ExperienceCheckoutSettings.



30353
30354
30355
30356
30357
30358
30359
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30353

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:id, :experience, :checkout_configuration], 'ExperienceCheckoutSettings')
  @id = HttpClient::Preconditions.assert_class('id', opts.delete(:id), String)
  @experience = (x = opts.delete(:experience); x.is_a?(::Io::Flow::V0::Models::ExperienceOverview) ? x : ::Io::Flow::V0::Models::ExperienceOverview.new(x))
  @checkout_configuration = (x = opts.delete(:checkout_configuration); x.is_a?(::Io::Flow::V0::Models::ExperienceConfigurationReference) ? x : ::Io::Flow::V0::Models::ExperienceConfigurationReference.new(x))
end

Instance Attribute Details

#checkout_configurationObject (readonly)

Returns the value of attribute checkout_configuration.



30351
30352
30353
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30351

def checkout_configuration
  @checkout_configuration
end

#experienceObject (readonly)

Returns the value of attribute experience.



30351
30352
30353
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30351

def experience
  @experience
end

#idObject (readonly)

Returns the value of attribute id.



30351
30352
30353
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30351

def id
  @id
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



30365
30366
30367
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30365

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

#to_hashObject



30369
30370
30371
30372
30373
30374
30375
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30369

def to_hash
  {
    :id => id,
    :experience => experience.to_hash,
    :checkout_configuration => checkout_configuration.to_hash
  }
end

#to_jsonObject



30361
30362
30363
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30361

def to_json
  JSON.dump(to_hash)
end