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