Method: ActiveNetsuite::ChargeSearchBasic#initialize
- Defined in:
- lib/activenetsuite/soap/default.rb
#initialize(amount = nil, billingItem = nil, billTo = nil, chargeDate = nil, chargeType = nil, createdDate = nil, currency = nil, externalId = nil, externalIdString = nil, internalId = nil, internalIdNumber = nil, modifiedDate = nil, postingPeriod = nil, postingPeriodRelative = nil, quantity = nil, rate = nil, rule = nil, runId = nil, salesOrder = nil, stage = nil, use = nil, customFieldList = nil) ⇒ ChargeSearchBasic
Returns a new instance of ChargeSearchBasic.
31285 31286 31287 31288 31289 31290 31291 31292 31293 31294 31295 31296 31297 31298 31299 31300 31301 31302 31303 31304 31305 31306 31307 31308 |
# File 'lib/activenetsuite/soap/default.rb', line 31285 def initialize(amount = nil, billingItem = nil, billTo = nil, chargeDate = nil, chargeType = nil, createdDate = nil, currency = nil, externalId = nil, externalIdString = nil, internalId = nil, internalIdNumber = nil, modifiedDate = nil, postingPeriod = nil, postingPeriodRelative = nil, quantity = nil, rate = nil, rule = nil, runId = nil, salesOrder = nil, stage = nil, use = nil, customFieldList = nil) @amount = amount @billingItem = billingItem @billTo = billTo @chargeDate = chargeDate @chargeType = chargeType @createdDate = createdDate @currency = currency @externalId = externalId @externalIdString = externalIdString @internalId = internalId @internalIdNumber = internalIdNumber @modifiedDate = modifiedDate @postingPeriod = postingPeriod @postingPeriodRelative = postingPeriodRelative @quantity = quantity @rate = rate @rule = rule @runId = runId @salesOrder = salesOrder @stage = stage @use = use @customFieldList = customFieldList end |