serp-spider/search-engine-google

View on GitHub
src/AdwordsResultType.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
/**
 * @license see LICENSE
 */

namespace Serps\SearchEngine\Google;

class AdwordsResultType
{

    const SECTION_TOP = 'adws_section_top';
    const SECTION_BOTTOM = 'adws_section_bottom';
    const SECTION_RIGHT = 'adws_section_right';

    const AD = 'adws_ad';
    const SHOPPING_GROUP = 'adws_shopping_group';
    const SHOPPING_GROUP_PRODUCT = 'adws_shopping_group_product';
}