Class: Io::Flow::V0::Models::PriceDetail

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

Overview

Represents a top-level price detail, e.g. ‘Subtotal’ or ‘VAT’.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ PriceDetail

Returns a new instance of PriceDetail.



36668
36669
36670
36671
36672
36673
36674
36675
36676
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36668

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:key, :components, :amount, :label], 'PriceDetail')
  @key = (x = opts.delete(:key); x.is_a?(::Io::Flow::V0::Models::PriceDetailKey) ? x : ::Io::Flow::V0::Models::PriceDetailKey.apply(x))
  @components = HttpClient::Preconditions.assert_class('components', opts.delete(:components), Array).map { |v| (x = v; x.is_a?(::Io::Flow::V0::Models::PriceDetailComponent) ? x : ::Io::Flow::V0::Models::PriceDetailComponent.new(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.



36666
36667
36668
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36666

def amount
  @amount
end

#componentsObject (readonly)

Returns the value of attribute components.



36666
36667
36668
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36666

def components
  @components
end

#keyObject (readonly)

Returns the value of attribute key.



36666
36667
36668
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36666

def key
  @key
end

#labelObject (readonly)

Returns the value of attribute label.



36666
36667
36668
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36666

def label
  @label
end

#nameObject (readonly)

Returns the value of attribute name.



36666
36667
36668
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36666

def name
  @name
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



36682
36683
36684
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36682

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

#to_hashObject



36686
36687
36688
36689
36690
36691
36692
36693
36694
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36686

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

#to_jsonObject



36678
36679
36680
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36678

def to_json
  JSON.dump(to_hash)
end