| Total Complexity | 1 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | class Client extends BaseClient |
||
| 9 | { |
||
| 10 | protected $resource = Resources::DAILY_REPORTS; |
||
| 11 | |||
| 12 | protected $fields = [ |
||
| 13 | 'campaign_id', 'adgroup_id', 'ad_id', 'date', 'impression', 'view_count', 'valid_click_count', |
||
| 14 | 'activated_count', 'click', 'cost', 'download', 'conversion', 'activation', 'app_payment_count', |
||
| 15 | 'app_payment_amount', 'register', 'app_installation', |
||
| 16 | ]; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * Get all valid actions for resource. |
||
| 20 | * |
||
| 21 | * @return array |
||
| 22 | */ |
||
| 23 | public function getValidActions() |
||
| 28 |