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.



53202
53203
53204
53205
53206
53207
53208
53209
53210
53211
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 53202

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))
  @basis = (x = opts.delete(:basis); x.nil? ? nil : HttpClient::Preconditions.assert_class('basis', HttpClient::Helper.to_big_decimal(x), BigDecimal))
end

Instance Attribute Details

#amountObject (readonly)

Returns the value of attribute amount.



53200
53201
53202
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 53200

def amount
  @amount
end

#basisObject (readonly)

Returns the value of attribute basis.



53200
53201
53202
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 53200

def basis
  @basis
end

#componentsObject (readonly)

Returns the value of attribute components.



53200
53201
53202
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 53200

def components
  @components
end

#keyObject (readonly)

Returns the value of attribute key.



53200
53201
53202
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 53200

def key
  @key
end

#labelObject (readonly)

Returns the value of attribute label.



53200
53201
53202
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 53200

def label
  @label
end

#nameObject (readonly)

Returns the value of attribute name.



53200
53201
53202
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 53200

def name
  @name
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



53217
53218
53219
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 53217

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

#to_hashObject



53221
53222
53223
53224
53225
53226
53227
53228
53229
53230
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 53221

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

#to_jsonObject



53213
53214
53215
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 53213

def to_json
  JSON.dump(to_hash)
end