@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
21 lines • 787 B
TypeScript
import { FaxScreenListTypeEnum } from './FaxScreenListTypeEnum';
/** Fax ScreenLists */
export interface FaxScreen {
/** List of numbers not allowed to send a fax */
blacklistedNumbers?: string[];
/** List of logins (TSI or ID) not allowed to send a fax */
blacklistedTSI?: string[];
/** Number of the fax service */
callNumber: string;
/** Country code of the fax service */
countryCode: string;
/** Which list is active (blackist, whitelist or none) */
filteringList?: FaxScreenListTypeEnum;
/** */
serviceName: string;
/** List of numbers allowed to send a fax */
whitelistedNumbers?: string[];
/** List of logins (TSI or ID) allowed to send a fax */
whitelistedTSI?: string[];
}
//# sourceMappingURL=FaxScreen.d.ts.map