b1-sl
Version:
library for connection and session management of the service layer sap b1
21 lines (17 loc) • 461 B
JavaScript
class FormColumn {
constructor() {
this.FormColumnAlias = new String();
this.FormColumnDescription = new String();
this.FormColumnNumber = new Number();
this.SonNumber = new Number();
this.Code = new String();
this.Editable = new String();
}
FormColumnAlias;
FormColumnDescription;
FormColumnNumber;
SonNumber;
Code;
Editable;
}
module.exports = FormColumn;