Class: Io::Flow::V0::Models::TierDefault

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

Overview

Grouping of shipping tiers by experience to provide logical default functionality.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ TierDefault

Returns a new instance of TierDefault.



26675
26676
26677
26678
26679
26680
26681
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26675

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

Instance Attribute Details

#default_tierObject (readonly)

Returns the value of attribute default_tier.



26673
26674
26675
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26673

def default_tier
  @default_tier
end

#experienceObject (readonly)

Returns the value of attribute experience.



26673
26674
26675
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26673

def experience
  @experience
end

#idObject (readonly)

Returns the value of attribute id.



26673
26674
26675
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26673

def id
  @id
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



26687
26688
26689
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26687

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

#to_hashObject



26691
26692
26693
26694
26695
26696
26697
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26691

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

#to_jsonObject



26683
26684
26685
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26683

def to_json
  JSON.dump(to_hash)
end