UNPKG

b1-sl

Version:

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

72 lines (69 loc) 2.15 kB
class WithholdingTaxDataWTX { constructor() { this.WTAmountSys = new Number(); this.WTAmountFC = new Number(); this.WTAmount = new Number(); this.WithholdingType = new String(); this.TaxableAmountinSys = new Number(); this.TaxableAmountFC = new Number(); this.TaxableAmount = new Number(); this.Rate = new Number(); this.Category = new String(); this.BaseType = new String(); this.AppliedWTAmountSys = new Number(); this.AppliedWTAmountFC = new Number(); this.AppliedWTAmount = new Number(); this.GLAccount = new String(); this.LineNum = new Number(); this.BaseDocEntry = new Number(); this.BaseDocLine = new Number(); this.BaseDocType = new String(); this.WTAbsId = new String(); this.ExemptRate = new Number(); this.BaseNetAmountSys = new Number(); this.BaseNetAmountFC = new Number(); this.BaseNetAmount = new Number(); this.BaseVatmountSys = new Number(); this.BaseVatmountFC = new Number(); this.BaseVatmount = new Number(); this.AccumBaseAmountSys = new Number(); this.AccumBaseAmountFC = new Number(); this.AccumBaseAmount = new Number(); this.AccumWTaxAmountSys = new Number(); this.AccumWTaxAmountFC = new Number(); this.AccumWTaxAmount = new Number(); } WTAmountSys; WTAmountFC; WTAmount; WithholdingType; TaxableAmountinSys; TaxableAmountFC; TaxableAmount; Rate; Category; BaseType; AppliedWTAmountSys; AppliedWTAmountFC; AppliedWTAmount; GLAccount; LineNum; BaseDocEntry; BaseDocLine; BaseDocType; WTAbsId; ExemptRate; BaseNetAmountSys; BaseNetAmountFC; BaseNetAmount; BaseVatmountSys; BaseVatmountFC; BaseVatmount; AccumBaseAmountSys; AccumBaseAmountFC; AccumBaseAmount; AccumWTaxAmountSys; AccumWTaxAmountFC; AccumWTaxAmount; } module.exports = WithholdingTaxDataWTX;