import { CacheRuleCacheTypeEnum } from './CacheRuleCacheTypeEnum';
import { CacheRuleFileTypeEnum } from './CacheRuleFileTypeEnum';
import { CacheRuleStatusEnum } from './CacheRuleStatusEnum';
/** CacheRules for a domain */
export interface CacheRule {
    /** Id for this cache rule */
    cacheRuleId: number;
    /**  */
    cacheType: CacheRuleCacheTypeEnum;
    /**  */
    domain: string;
    /**  */
    fileMatch: string;
    /**  */
    fileType: CacheRuleFileTypeEnum;
    /**  */
    status: CacheRuleStatusEnum;
    /**  */
    ttl: number;
}
//# sourceMappingURL=CacheRule.d.ts.map