b1-sl
Version:
library for connection and session management of the service layer sap b1
24 lines (21 loc) • 629 B
JavaScript
class ItemDistributionRule {
constructor() {
this.LineNumber = new Number();
this.ValidFrom = new String();
this.ValidTo = new String();
this.DistributionRule = new String();
this.DistributionRule2 = new String();
this.DistributionRule3 = new String();
this.DistributionRule4 = new String();
this.DistributionRule5 = new String();
}
LineNumber;
ValidFrom;
ValidTo;
DistributionRule;
DistributionRule2;
DistributionRule3;
DistributionRule4;
DistributionRule5;
}
module.exports = ItemDistributionRule;