@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
12 lines • 525 B
TypeScript
import { ObfuscationStatusEnum } from './ObfuscationStatusEnum';
import { ContactTypeEnum } from './ContactTypeEnum';
/** Configuration of the email obfuscations for contacts related to a domain name */
export interface ObfuscatedEmail {
/** Status of the email obfuscation */
status?: ObfuscationStatusEnum;
/** Type of the contact whose email is obfuscated by this configuration */
type: ContactTypeEnum;
/** Obfuscated email address */
value: string;
}
//# sourceMappingURL=ObfuscatedEmail.d.ts.map