@@ 88-94 (lines=7) @@ | ||
85 | return (int)$response['Result']['Id']; |
|
86 | } |
|
87 | ||
88 | public function siteRankingDistributions($date) |
|
89 | { |
|
90 | $this->validateBulkDate($date); |
|
91 | ||
92 | $response = $this->performQuery('bulk/site_ranking_distributions', ['date' => $date->toDateString()]); |
|
93 | return (int)$response['Result']['Id']; |
|
94 | } |
|
95 | ||
96 | public function tagRankingDistributions($date) |
|
97 | { |
|
@@ 96-102 (lines=7) @@ | ||
93 | return (int)$response['Result']['Id']; |
|
94 | } |
|
95 | ||
96 | public function tagRankingDistributions($date) |
|
97 | { |
|
98 | $this->validateBulkDate($date); |
|
99 | ||
100 | $response = $this->performQuery('bulk/tag_ranking_distributions', ['date' => $date->toDateString()]); |
|
101 | return (int) $response['Result']['Id']; |
|
102 | } |
|
103 | ||
104 | public function get($bulkJobID) |
|
105 | { |