Conditions | 1 |
Paths | 1 |
Total Lines | 16 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
21 | public function get( |
||
22 | int $advertiserId, |
||
23 | ?array $fields = null, |
||
24 | ?array $filtering = null, |
||
25 | ?int $page = null, |
||
26 | ?int $pageSize = null |
||
27 | ): array { |
||
28 | return $this->requestApi( |
||
29 | 'GET', |
||
30 | '/open_api/v1.2/adgroup/get/', |
||
31 | [ |
||
32 | 'advertiser_id' => $advertiserId, |
||
33 | 'fields' => $fields, |
||
34 | 'filtering' => $filtering, |
||
35 | 'page' => $page, |
||
36 | 'page_size' => $pageSize |
||
37 | ] |
||
41 |