smppjs
Version:
Modern approach to smpp protocol.
16 lines • 467 B
TypeScript
import { DTO, DTOFunction } from '../index';
export interface DeliverSmResp extends DTO {
command: {
message_id: {
type: 'Cstring';
value: string;
};
};
}
export type DeliverSmRespParams = {
messageId?: string;
};
export interface DeliverSmRespFunction extends DTOFunction<DeliverSmRespParams, DeliverSmResp> {
({ messageId }: DeliverSmRespParams): DeliverSmResp;
}
//# sourceMappingURL=deliver_sm_resp.d.ts.map