@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
23 lines • 699 B
TypeScript
import { DkimStatusEnum } from './DkimStatusEnum';
/** DKIM for a domain */
export interface Dkim {
/** If true your dns cname configuration is valid */
cnameIsValid: boolean;
/** customer dns record */
customerRecord: string;
/** header used for dkim signature */
header: string;
/** Last update date */
lastUpdate?: string;
/** Record type of the customer record */
recordType: string;
/** selectorName */
selectorName: string;
/** dkim status */
status: DkimStatusEnum;
/** Target of the customer record */
targetRecord?: string;
/** Pending task for this DKIM */
taskPendingId?: number;
}
//# sourceMappingURL=Dkim.d.ts.map