smppjs
Version:
Modern approach to smpp protocol.
15 lines • 581 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.bindTransmitterRespDTO = void 0;
const bindTransmitterRespDTO = ({ systemIdValue, tlvs }) => {
return {
command: {
system_id: { type: 'Cstring', value: systemIdValue || '' },
},
tlvs: {
sc_interface_version: { type: 'Int8', value: (tlvs === null || tlvs === void 0 ? void 0 : tlvs.scInterfaceVersion) || undefined },
},
};
};
exports.bindTransmitterRespDTO = bindTransmitterRespDTO;
//# sourceMappingURL=bind_transmitter_resp.js.map