class Rocket::Invoice::InvoiceProduct

Attributes

description[RW]
name[RW]
quantity[RW]
unity_price[RW]

Public Class Methods

new() click to toggle source
# File lib/rocket/invoice/invoice_product.rb, line 6
def initialize
  self.name = ''
  self.description = ''
  self.unity_price = BigDecimal.new('0.0')
  self.quantity = BigDecimal.new('0.0')
end