class VertexClient::Response::DistributeTax

Public Instance Methods

subtotal() click to toggle source
# File lib/vertex_client/responses/distribute_tax.rb, line 4
def subtotal
  @subtotal ||= BigDecimal.new(@body[:sub_total])
end
total() click to toggle source
# File lib/vertex_client/responses/distribute_tax.rb, line 12
def total
  @total ||= BigDecimal.new(@body[:total])
end
total_tax() click to toggle source
# File lib/vertex_client/responses/distribute_tax.rb, line 8
def total_tax
  @total_tax ||= BigDecimal.new(@body[:total_tax])
end