UNPKG

b1-sl

Version:

library for connection and session management of the service layer sap b1

34 lines (31 loc) 967 B
class LineTaxJurisdiction { constructor() { this.JurisdictionCode = new String(); this.JurisdictionType = new Number(); this.TaxAmount = new Number(); this.TaxAmountSC = new Number(); this.TaxAmountFC = new Number(); this.TaxRate = new Number(); this.DocEntry = new Number(); this.LineNumber = new Number(); this.RowSequence = new Number(); this.ExternalCalcTaxRate = new Number(); this.ExternalCalcTaxAmount = new Number(); this.ExternalCalcTaxAmountFC = new Number(); this.ExternalCalcTaxAmountSC = new Number(); } JurisdictionCode; JurisdictionType; TaxAmount; TaxAmountSC; TaxAmountFC; TaxRate; DocEntry; LineNumber; RowSequence; ExternalCalcTaxRate; ExternalCalcTaxAmount; ExternalCalcTaxAmountFC; ExternalCalcTaxAmountSC; } module.exports = LineTaxJurisdiction;