import File from "./File"; interface PoolResponseResource { /** * */ rendererId?: string; /** * */ messageId?: string; /** * */ extensionId?: string; /** * */ extensionNumber?: string; /** * */ firstName?: string; /** * */ lastName?: string; /** * */ street?: string; /** * */ city?: string; /** * */ state?: string; /** * */ zip?: string; /** * */ country?: string; /** * */ countryId?: string; /** * */ companyName?: string; /** * */ faxNumber?: string; /** * */ contactPhone?: string; /** * */ email?: string; /** * */ languageCode?: string; /** * */ languageId?: string; /** * */ footerType?: number; /** * */ coverIndex?: number; /** * */ coverPageText?: string; /** * */ sourceFiles?: File[]; /** * */ messageServers?: string[]; /** * */ touchInterval?: number; } export default PoolResponseResource;