Total Complexity | 1 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | final class Advertiser extends \Promopult\TikTokMarketingApi\AbstractService |
||
11 | { |
||
12 | /** |
||
13 | * Getting Advertiser account information |
||
14 | * |
||
15 | * @param array $advertiserIds List of advertiser IDs being queried. |
||
16 | * Advertiser ID can be obtained through the Get Authorized Advertiser interface. |
||
17 | * |
||
18 | * @param array $fields A list of information to be returned. If not specified, all information is returned |
||
19 | * by default. Optional values include:promotion_area, telephone, contacter, currency, |
||
20 | * phonenumber, timezone, id, role, company, status, description, reason, address, |
||
21 | * name, language, industry, license_no, email, license_url, country, balance, |
||
22 | * create_time. |
||
23 | * @return array |
||
24 | * |
||
25 | * @throws \Throwable |
||
26 | * |
||
27 | * @see https://ads.tiktok.com/marketing_api/docs?id=100579 |
||
28 | */ |
||
29 | public function info(array $advertiserIds, array $fields) |
||
41 |