import { ApiError } from './apiError';
import { ProductErrorReason } from './productErrorReason';
export interface ProductError extends ApiError {
    reason?: ProductErrorReason;
}
