Total Complexity | 1 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | final class AdGroup extends \Promopult\TikTokMarketingApi\AbstractService |
||
8 | { |
||
9 | /** |
||
10 | * @param int $advertiserId Advertiser ID |
||
11 | * @param array|null $fields Fields to be returned. When not specified, all fields are returned by default. |
||
12 | * @param array|null $filtering Filter conditions. Set these conditions according to your requirements. |
||
13 | * If not set, all ad groups under the advertiser will be returned. |
||
14 | * @param int|null $page Current page number. Default value is 1. Range of values: ≥ 1 |
||
15 | * @param int|null $pageSize Page size.Default value is: 10. Range of values: 1-1000 |
||
16 | * @return array |
||
17 | * @throws \Throwable |
||
18 | * |
||
19 | * @see https://ads.tiktok.com/marketing_api/docs?id=100529 |
||
20 | */ |
||
21 | public function get( |
||
41 |