node-ovh-ts
Version:
OVH API wrapper library for TypeScript
30 lines (27 loc) • 917 B
TypeScript
import { EmailExchangeObjectStateEnum } from './EmailExchangeObjectStateEnum.js';
import { EmailExchangeDomainTypeEnum } from './EmailExchangeDomainTypeEnum.js';
type EmailExchangeDomain = {
cnameToCheck?: string | null;
domainAliases?: string[];
domainValidated?: boolean;
expectedAutodiscoverSRV?: string;
expectedMX?: string[];
expectedSPF?: string;
isAliasDomain?: boolean;
main?: boolean | null;
mxIsValid?: boolean;
mxRecord?: string[] | null;
mxRelay?: string | null;
name?: string;
organization2010?: string | null;
sbrDefault?: string | null;
sendConnectorIdDefault?: number | null;
spfIsValid?: boolean;
spfRecord?: string[] | null;
srvIsValid?: boolean;
srvRecord?: string[] | null;
state?: EmailExchangeObjectStateEnum;
taskPendingId?: number;
type?: EmailExchangeDomainTypeEnum;
};
export { EmailExchangeDomain };