class ActiveNetsuite::TaxGroupTaxItem

{urn:accounting_2013_2.lists.webservices.netsuite.com}TaxGroupTaxItem

taxName - ActiveNetsuite::RecordRef
rate - SOAP::SOAPDouble
basis - SOAP::SOAPDouble
taxType - SOAP::SOAPString

Attributes

basis[RW]
rate[RW]
taxName[RW]
taxType[RW]

Public Class Methods

new(taxName = nil, rate = nil, basis = nil, taxType = nil) click to toggle source
# File lib/activenetsuite/soap/default.rb, line 52658
def initialize(taxName = nil, rate = nil, basis = nil, taxType = nil)
  @taxName = taxName
  @rate = rate
  @basis = basis
  @taxType = taxType
end