b1-sl
Version:
library for connection and session management of the service layer sap b1
21 lines (18 loc) • 537 B
JavaScript
const RelatedDocument = require("./RelatedDocument");
class ElectronicProtocol {
constructor() {
this.ProtocolCode = new String();
this.GenerationType = new String();
this.MappingID = new Number();
this.TestingMode = new String();
this.Confirmation = new String();
this.RelatedDocuments = [RelatedDocument];
}
ProtocolCode;
GenerationType;
MappingID;
TestingMode;
Confirmation;
RelatedDocuments;
}
module.exports = ElectronicProtocol;