@@ 122-128 (lines=7) @@ | ||
119 | return (int) $response['Result']['Id']; |
|
120 | } |
|
121 | ||
122 | public function siteRankingDistributions($date) |
|
123 | { |
|
124 | $this->validateBulkDate($date); |
|
125 | ||
126 | $response = $this->performQuery('bulk/site_ranking_distributions', ['date' => $date->toDateString()]); |
|
127 | return (int) $response['Result']['Id']; |
|
128 | } |
|
129 | ||
130 | public function tagRankingDistributions($date) |
|
131 | { |
|
@@ 130-136 (lines=7) @@ | ||
127 | return (int) $response['Result']['Id']; |
|
128 | } |
|
129 | ||
130 | public function tagRankingDistributions($date) |
|
131 | { |
|
132 | $this->validateBulkDate($date); |
|
133 | ||
134 | $response = $this->performQuery('bulk/tag_ranking_distributions', ['date' => $date->toDateString()]); |
|
135 | return (int) $response['Result']['Id']; |
|
136 | } |
|
137 | ||
138 | public function get($bulkJobID) |
|
139 | { |