import { AdRuleSlotErrorReason } from './adRuleSlotErrorReason';
import { ApiError } from './apiError';
export interface AdRuleSlotError extends ApiError {
    reason?: AdRuleSlotErrorReason;
}
