b1-sl
Version:
library for connection and session management of the service layer sap b1
44 lines (41 loc) • 1.01 kB
JavaScript
class BPFiscalTaxID {
constructor() {
this.Address = new String();
this.CNAECode = new Number();
this.TaxId0 = new String();
this.TaxId1 = new String();
this.TaxId2 = new String();
this.TaxId3 = new String();
this.TaxId4 = new String();
this.TaxId5 = new String();
this.TaxId6 = new String();
this.TaxId7 = new String();
this.TaxId8 = new String();
this.TaxId9 = new String();
this.TaxId10 = new String();
this.TaxId11 = new String();
this.BPCode = new String();
this.AddrType = new String();
this.TaxId12 = new String();
this.TaxId13 = new String();
}
Address;
CNAECode;
TaxId0;
TaxId1;
TaxId2;
TaxId3;
TaxId4;
TaxId5;
TaxId6;
TaxId7;
TaxId8;
TaxId9;
TaxId10;
TaxId11;
BPCode;
AddrType;
TaxId12;
TaxId13;
}
module.exports = BPFiscalTaxID;