import { DataTransferStatus } from './';

export type req = {
  vendorId: string;
  messageId?: string;
  data?: string;
};

export type conf = {
  status: DataTransferStatus;
  data?: string;
};
