Method: ActiveNetsuite::CheckItem#initialize
- Defined in:
- lib/activenetsuite/soap/default.rb
#initialize(item = nil, vendorName = nil, line = nil, quantity = nil, units = nil, inventoryDetail = nil, description = nil, binNumbers = nil, serialNumbers = nil, expirationDate = nil, rate = nil, taxCode = nil, amount = nil, options = nil, taxRate1 = nil, taxRate2 = nil, department = nil, grossAmt = nil, v_class = nil, tax1Amt = nil, location = nil, customer = nil, isBillable = nil, landedCost = nil, customFieldList = nil) ⇒ CheckItem
Returns a new instance of CheckItem.
58857 58858 58859 58860 58861 58862 58863 58864 58865 58866 58867 58868 58869 58870 58871 58872 58873 58874 58875 58876 58877 58878 58879 58880 58881 58882 58883 |
# File 'lib/activenetsuite/soap/default.rb', line 58857 def initialize(item = nil, vendorName = nil, line = nil, quantity = nil, units = nil, inventoryDetail = nil, description = nil, binNumbers = nil, serialNumbers = nil, expirationDate = nil, rate = nil, taxCode = nil, amount = nil, = nil, taxRate1 = nil, taxRate2 = nil, department = nil, grossAmt = nil, v_class = nil, tax1Amt = nil, location = nil, customer = nil, isBillable = nil, landedCost = nil, customFieldList = nil) @item = item @vendorName = vendorName @line = line @quantity = quantity @units = units @inventoryDetail = inventoryDetail @description = description @binNumbers = binNumbers @serialNumbers = serialNumbers @expirationDate = expirationDate @rate = rate @taxCode = taxCode @amount = amount = @taxRate1 = taxRate1 @taxRate2 = taxRate2 @department = department @grossAmt = grossAmt @v_class = v_class @tax1Amt = tax1Amt @location = location @customer = customer @isBillable = isBillable @landedCost = landedCost @customFieldList = customFieldList end |