node-ovh-ts
Version:
OVH API wrapper library for TypeScript
13 lines (10 loc) • 467 B
TypeScript
import { EmailExchangeOvhCustomIsolationFieldEnum } from './EmailExchangeOvhCustomIsolationFieldEnum.js';
import { EmailExchangeObjectStateEnum } from './EmailExchangeObjectStateEnum.js';
type EmailExchangeExchangeCustomIsolation = {
creationDate?: Date;
isolationField?: EmailExchangeOvhCustomIsolationFieldEnum;
isolationValue?: string;
name?: string;
status?: EmailExchangeObjectStateEnum;
};
export { EmailExchangeExchangeCustomIsolation };