Class: Io::Flow::V0::Models::PriceDetailComponent

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 = {}) ⇒ PriceDetailComponent

Returns a new instance of PriceDetailComponent.



43786
43787
43788
43789
43790
43791
43792
43793
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 43786

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:key, :amount, :label], 'PriceDetailComponent')
  @key = (x = opts.delete(:key); x.is_a?(::Io::Flow::V0::Models::PriceDetailComponentKey) ? x : ::Io::Flow::V0::Models::PriceDetailComponentKey.apply(x))
  @amount = HttpClient::Preconditions.assert_class('amount', HttpClient::Helper.to_big_decimal(opts.delete(:amount)), BigDecimal)
  @label = HttpClient::Preconditions.assert_class('label', opts.delete(:label), String)
  @name = (x = opts.delete(:name); x.nil? ? nil : HttpClient::Preconditions.assert_class('name', x, String))
end

Instance Attribute Details

#amountObject (readonly)

Returns the value of attribute amount.



43784
43785
43786
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 43784

def amount
  @amount
end

#keyObject (readonly)

Returns the value of attribute key.



43784
43785
43786
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 43784

def key
  @key
end

#labelObject (readonly)

Returns the value of attribute label.



43784
43785
43786
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 43784

def label
  @label
end

#nameObject (readonly)

Returns the value of attribute name.



43784
43785
43786
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 43784

def name
  @name
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



43799
43800
43801
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 43799

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

#to_hashObject



43803
43804
43805
43806
43807
43808
43809
43810
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 43803

def to_hash
  {
    :key => key.value,
    :amount => amount.to_f.to_s,
    :label => label,
    :name => name
  }
end

#to_jsonObject



43795
43796
43797
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 43795

def to_json
  JSON.dump(to_hash)
end