node-ovh-ts
Version:
OVH API wrapper library for TypeScript
15 lines (12 loc) • 385 B
TypeScript
import { EmailExchangeDkimStatusEnum } from './EmailExchangeDkimStatusEnum.js';
type EmailExchangeDkim = {
customerRecord?: string;
header?: string;
lastUpdate?: Date | null;
recordType?: string;
selectorName?: string;
status?: EmailExchangeDkimStatusEnum;
targetRecord?: string | null;
taskPendingId?: number | null;
};
export { EmailExchangeDkim };