Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gladyshev committed Jan 18, 2022
1 parent ae3161c commit 16cd031
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Service/Creatives.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ final class Creatives extends AbstractService
* @param int $advertiserId Advertiser ID
* @param string $materialType Material type. Optional value: VIDEO, IMAGE
* @param array $infoFields Use to specify whether to query all data
* @param array $metricFields The metrics or dimension data that you need
* @param array $metricsFields The metrics or dimension data that you need
* @param string|null $startDate Start time, closed interval. Format such as: 2020-01-01 (advertiser time zone)
* @param string|null $endDate End time, closed interval. Format such as: 2020-01-01 (advertiser time zone)
* @param bool|null $lifetime Use to specify whether to query all data. If so, you do not need to specify
Expand All @@ -39,7 +39,7 @@ public function reportsGet(
int $advertiserId,
string $materialType,
array $infoFields,
array $metricFields,
array $metricsFields,
?string $startDate,
?string $endDate,
?bool $lifetime = null,
Expand All @@ -56,7 +56,7 @@ public function reportsGet(
'advertiser_id' => $advertiserId,
'material_type' => $materialType,
'info_fields' => $infoFields,
'metric_fields' => $metricFields,
'metrics_fields' => $metricsFields,
'lifetime' => $lifetime,
'start_date' => $startDate,
'end_date' => $endDate,
Expand Down

0 comments on commit 16cd031

Please sign in to comment.