
/**
 * Defines the type of search result.
 */
export enum SearchResultType {
    
    /**
     * Keyword statistics only.
     */
    StatisticsOnly = 0,
    
    /**
     * Preview only.
     */
    PreviewOnly = 1
}