criteo-api-marketingsolutions-sdk 0.0.250902__py3-none-any.whl → 0.0.250915__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of criteo-api-marketingsolutions-sdk might be problematic. Click here for more details.
- criteo_api_marketingsolutions_preview/__init__.py +1 -1
- criteo_api_marketingsolutions_preview/api/advertiser_api.py +3 -9
- criteo_api_marketingsolutions_preview/api/analytics_api.py +16 -62
- criteo_api_marketingsolutions_preview/api/audience_api.py +27 -94
- criteo_api_marketingsolutions_preview/api/campaign_api.py +63 -215
- criteo_api_marketingsolutions_preview/api/catalog_api.py +0 -1
- criteo_api_marketingsolutions_preview/api/creative_api.py +19 -60
- criteo_api_marketingsolutions_preview/api/on_site_recommendation_api.py +1 -4
- criteo_api_marketingsolutions_preview/api/reco_api.py +10 -32
- criteo_api_marketingsolutions_preview/api_client.py +1 -1
- criteo_api_marketingsolutions_preview/configuration.py +1 -1
- criteo_api_marketingsolutions_preview/model/adaptive_attributes.py +3 -3
- criteo_api_marketingsolutions_preview/model/generate_categories_report_request_attributes.py +12 -8
- criteo_api_marketingsolutions_preview/model/json_report_rows.py +3 -3
- criteo_api_marketingsolutions_preview/model/outcome.py +16 -5
- criteo_api_marketingsolutions_preview/model/placements_report_query_message.py +12 -8
- criteo_api_marketingsolutions_preview/model/statistics_report_query_message.py +248 -8
- criteo_api_marketingsolutions_preview/model/transactions_report_query_message.py +12 -8
- criteo_api_marketingsolutions_preview/models/__init__.py +0 -4
- {criteo_api_marketingsolutions_sdk-0.0.250902.dist-info → criteo_api_marketingsolutions_sdk-0.0.250915.dist-info}/METADATA +3 -3
- {criteo_api_marketingsolutions_sdk-0.0.250902.dist-info → criteo_api_marketingsolutions_sdk-0.0.250915.dist-info}/RECORD +23 -27
- criteo_api_marketingsolutions_preview/model/api_error_response.py +0 -271
- criteo_api_marketingsolutions_preview/model/error_code_response.py +0 -281
- criteo_api_marketingsolutions_preview/model/error_description.py +0 -279
- criteo_api_marketingsolutions_preview/model/fail_response.py +0 -283
- {criteo_api_marketingsolutions_sdk-0.0.250902.dist-info → criteo_api_marketingsolutions_sdk-0.0.250915.dist-info}/WHEEL +0 -0
- {criteo_api_marketingsolutions_sdk-0.0.250902.dist-info → criteo_api_marketingsolutions_sdk-0.0.250915.dist-info}/top_level.txt +0 -0
|
@@ -83,6 +83,248 @@ class StatisticsReportQueryMessage(ModelNormal):
|
|
|
83
83
|
'ADCHANNEL': "AdChannel",
|
|
84
84
|
'SOCIALPLATFORM': "SocialPlatform",
|
|
85
85
|
},
|
|
86
|
+
('metrics',): {
|
|
87
|
+
'CLICKS': "Clicks",
|
|
88
|
+
'DISPLAYS': "Displays",
|
|
89
|
+
'ADVERTISERCOST': "AdvertiserCost",
|
|
90
|
+
'SALESPC30DCLIENTATTRIBUTION': "SalesPc30dClientAttribution",
|
|
91
|
+
'SALESCLIENTATTRIBUTION': "SalesClientAttribution",
|
|
92
|
+
'SALESPC30D': "SalesPc30d",
|
|
93
|
+
'SALESALLPC30DCLIENTATTRIBUTION': "SalesAllPc30dClientAttribution",
|
|
94
|
+
'SALESALLCLIENTATTRIBUTION': "SalesAllClientAttribution",
|
|
95
|
+
'SALESALLPC30D': "SalesAllPc30d",
|
|
96
|
+
'SALESPV24H': "SalesPv24h",
|
|
97
|
+
'SALESALLPV24H': "SalesAllPv24h",
|
|
98
|
+
'SALESPC30PV24': "SalesPc30Pv24",
|
|
99
|
+
'SALESALLPC30PV24': "SalesAllPc30Pv24",
|
|
100
|
+
'SALESPC30DPV24H': "SalesPc30dPv24h",
|
|
101
|
+
'SALESALLPC30DPV24H': "SalesAllPc30dPv24h",
|
|
102
|
+
'SALESPC7DPV24': "SalesPc7dPv24",
|
|
103
|
+
'SALESALLPC7DPV24': "SalesAllPc7dPv24",
|
|
104
|
+
'SALESPC7DPV24H': "SalesPc7dPv24h",
|
|
105
|
+
'SALESALLPC7DPV24H': "SalesAllPc7dPv24h",
|
|
106
|
+
'SALESLC': "SalesLc",
|
|
107
|
+
'SALESALLLC': "SalesAllLc",
|
|
108
|
+
'SALESPC7D': "SalesPc7d",
|
|
109
|
+
'SALESALLPC7D': "SalesAllPc7d",
|
|
110
|
+
'SALESPC1D': "SalesPc1d",
|
|
111
|
+
'SALESALLPC1D': "SalesAllPc1d",
|
|
112
|
+
'SALESPIPC': "SalesPiPc",
|
|
113
|
+
'SALESPIPV': "SalesPiPv",
|
|
114
|
+
'SALESPIPCPV': "SalesPiPcPv",
|
|
115
|
+
'POSTINSTALLSALES': "PostInstallSales",
|
|
116
|
+
'SALESOFFLINEPC': "SalesOfflinePc",
|
|
117
|
+
'SALESOFFLINEPV': "SalesOfflinePv",
|
|
118
|
+
'SALESOFFLINEPC30D': "SalesOfflinePc30d",
|
|
119
|
+
'SALESOFFLINEPV24H': "SalesOfflinePv24h",
|
|
120
|
+
'REVENUEGENERATEDPC30DCLIENTATTRIBUTION': "RevenueGeneratedPc30dClientAttribution",
|
|
121
|
+
'REVENUEGENERATEDCLIENTATTRIBUTION': "RevenueGeneratedClientAttribution",
|
|
122
|
+
'REVENUEGENERATEDPC30D': "RevenueGeneratedPc30d",
|
|
123
|
+
'REVENUEGENERATEDALLPC30DCLIENTATTRIBUTION': "RevenueGeneratedAllPc30dClientAttribution",
|
|
124
|
+
'REVENUEGENERATEDALLCLIENTATTRIBUTION': "RevenueGeneratedAllClientAttribution",
|
|
125
|
+
'REVENUEGENERATEDALLPC30D': "RevenueGeneratedAllPc30d",
|
|
126
|
+
'REVENUEGENERATEDPV24H': "RevenueGeneratedPv24h",
|
|
127
|
+
'REVENUEGENERATEDALLPV24H': "RevenueGeneratedAllPv24h",
|
|
128
|
+
'REVENUEGENERATEDPC30PV24': "RevenueGeneratedPc30Pv24",
|
|
129
|
+
'REVENUEGENERATEDALLPC30PV24': "RevenueGeneratedAllPc30Pv24",
|
|
130
|
+
'REVENUEGENERATEDPC30DPV24H': "RevenueGeneratedPc30dPv24h",
|
|
131
|
+
'REVENUEGENERATEDALLPC30DPV24H': "RevenueGeneratedAllPc30dPv24h",
|
|
132
|
+
'REVENUEGENERATEDPC7DPV24H': "RevenueGeneratedPc7dPv24h",
|
|
133
|
+
'REVENUEGENERATEDALLPC7DPV24H': "RevenueGeneratedAllPc7dPv24h",
|
|
134
|
+
'REVENUEGENERATEDPC7DPV24': "RevenueGeneratedPc7dPv24",
|
|
135
|
+
'REVENUEGENERATEDALLPC7DPV24': "RevenueGeneratedAllPc7dPv24",
|
|
136
|
+
'REVENUEGENERATEDLC': "RevenueGeneratedLc",
|
|
137
|
+
'REVENUEGENERATEDALLLC': "RevenueGeneratedAllLc",
|
|
138
|
+
'REVENUEGENERATEDPC7D': "RevenueGeneratedPc7d",
|
|
139
|
+
'REVENUEGENERATEDALLPC7D': "RevenueGeneratedAllPc7d",
|
|
140
|
+
'REVENUEGENERATEDPC1D': "RevenueGeneratedPc1d",
|
|
141
|
+
'REVENUEGENERATEDALLPC1D': "RevenueGeneratedAllPc1d",
|
|
142
|
+
'REVENUEGENERATEDOFFLINEPC': "RevenueGeneratedOfflinePc",
|
|
143
|
+
'REVENUEGENERATEDOFFLINEPV': "RevenueGeneratedOfflinePv",
|
|
144
|
+
'REVENUEGENERATEDOFFLINEPC30D': "RevenueGeneratedOfflinePc30d",
|
|
145
|
+
'REVENUEGENERATEDOFFLINEPV24H': "RevenueGeneratedOfflinePv24h",
|
|
146
|
+
'CONVERSIONRATEPC30DCLIENTATTRIBUTION': "ConversionRatePc30dClientAttribution",
|
|
147
|
+
'CONVERSIONRATECLIENTATTRIBUTION': "ConversionRateClientAttribution",
|
|
148
|
+
'CONVERSIONRATEPC30D': "ConversionRatePc30d",
|
|
149
|
+
'CONVERSIONRATEALLPC30DCLIENTATTRIBUTION': "ConversionRateAllPc30dClientAttribution",
|
|
150
|
+
'CONVERSIONRATEALLCLIENTATTRIBUTION': "ConversionRateAllClientAttribution",
|
|
151
|
+
'CONVERSIONRATEALLPC30D': "ConversionRateAllPc30d",
|
|
152
|
+
'CONVERSIONRATEPV24H': "ConversionRatePv24h",
|
|
153
|
+
'CONVERSIONRATEALLPV24H': "ConversionRateAllPv24h",
|
|
154
|
+
'CONVERSIONRATEPC30PV24': "ConversionRatePc30Pv24",
|
|
155
|
+
'CONVERSIONRATEALLPC30PV24': "ConversionRateAllPc30Pv24",
|
|
156
|
+
'CONVERSIONRATEPC30DPV24H': "ConversionRatePc30dPv24h",
|
|
157
|
+
'CONVERSIONRATEALLPC30DPV24H': "ConversionRateAllPc30dPv24h",
|
|
158
|
+
'CONVERSIONRATEPC7DPV24': "ConversionRatePc7dPv24",
|
|
159
|
+
'CONVERSIONRATEALLPC7DPV24': "ConversionRateAllPc7dPv24",
|
|
160
|
+
'CONVERSIONRATEPC7DPV24H': "ConversionRatePc7dPv24h",
|
|
161
|
+
'CONVERSIONRATEALLPC7DPV24H': "ConversionRateAllPc7dPv24h",
|
|
162
|
+
'CONVERSIONRATEPC7D': "ConversionRatePc7d",
|
|
163
|
+
'CONVERSIONRATEALLPC7D': "ConversionRateAllPc7d",
|
|
164
|
+
'CONVERSIONRATEPC1D': "ConversionRatePc1d",
|
|
165
|
+
'CONVERSIONRATEALLPC1D': "ConversionRateAllPc1d",
|
|
166
|
+
'CONVERSIONRATEPIPCPV': "ConversionRatePiPcPv",
|
|
167
|
+
'POSTINSTALLCONVERSIONRATE': "PostInstallConversionRate",
|
|
168
|
+
'ECOSPC30DCLIENTATTRIBUTION': "ECosPc30dClientAttribution",
|
|
169
|
+
'ECOSCLIENTATTRIBUTION': "ECosClientAttribution",
|
|
170
|
+
'ECOSPC30D': "ECosPc30d",
|
|
171
|
+
'ECOSALLPC30DCLIENTATTRIBUTION': "ECosAllPc30dClientAttribution",
|
|
172
|
+
'ECOSALLCLIENTATTRIBUTION': "ECosAllClientAttribution",
|
|
173
|
+
'ECOSALLPC30D': "ECosAllPc30d",
|
|
174
|
+
'ECOSPV24H': "ECosPv24h",
|
|
175
|
+
'ECOSALLPV24H': "ECosAllPv24h",
|
|
176
|
+
'ECOSPC30PV24': "ECosPc30Pv24",
|
|
177
|
+
'ECOSALLPC30PV24': "ECosAllPc30Pv24",
|
|
178
|
+
'ECOSPC30DPV24H': "ECosPc30dPv24h",
|
|
179
|
+
'ECOSALLPC30DPV24H': "ECosAllPc30dPv24h",
|
|
180
|
+
'ECOSPC7DPV24H': "ECosPc7dPv24h",
|
|
181
|
+
'ECOSALLPC7DPV24H': "ECosAllPc7dPv24h",
|
|
182
|
+
'ECOSPC7DPV24': "ECosPc7dPv24",
|
|
183
|
+
'ECOSALLPC7DPV24': "ECosAllPc7dPv24",
|
|
184
|
+
'ECOSPC7D': "ECosPc7d",
|
|
185
|
+
'ECOSALLPC7D': "ECosAllPc7d",
|
|
186
|
+
'ECOSPC1D': "ECosPc1d",
|
|
187
|
+
'ECOSALLPC1D': "ECosAllPc1d",
|
|
188
|
+
'COSTPERORDERPC30DCLIENTATTRIBUTION': "CostPerOrderPc30dClientAttribution",
|
|
189
|
+
'COSTPERORDERCLIENTATTRIBUTION': "CostPerOrderClientAttribution",
|
|
190
|
+
'COSTPERORDERPC30D': "CostPerOrderPc30d",
|
|
191
|
+
'COSTPERORDERALLPC30DCLIENTATTRIBUTION': "CostPerOrderAllPc30dClientAttribution",
|
|
192
|
+
'COSTPERORDERALLCLIENTATTRIBUTION': "CostPerOrderAllClientAttribution",
|
|
193
|
+
'COSTPERORDERALLPC30D': "CostPerOrderAllPc30d",
|
|
194
|
+
'COSTPERORDERPV24H': "CostPerOrderPv24h",
|
|
195
|
+
'COSTPERORDERALLPV24H': "CostPerOrderAllPv24h",
|
|
196
|
+
'COSTPERORDERPC30PV24': "CostPerOrderPc30Pv24",
|
|
197
|
+
'COSTPERORDERALLPC30PV24': "CostPerOrderAllPc30Pv24",
|
|
198
|
+
'COSTPERORDERPC30DPV24H': "CostPerOrderPc30dPv24h",
|
|
199
|
+
'COSTPERORDERALLPC30DPV24H': "CostPerOrderAllPc30dPv24h",
|
|
200
|
+
'COSTPERORDERPC7DPV24H': "CostPerOrderPc7dPv24h",
|
|
201
|
+
'COSTPERORDERALLPC7DPV24H': "CostPerOrderAllPc7dPv24h",
|
|
202
|
+
'COSTPERORDERPC7DPV24': "CostPerOrderPc7dPv24",
|
|
203
|
+
'COSTPERORDERALLPC7DPV24': "CostPerOrderAllPc7dPv24",
|
|
204
|
+
'COSTPERORDERPC7D': "CostPerOrderPc7d",
|
|
205
|
+
'COSTPERORDERALLPC7D': "CostPerOrderAllPc7d",
|
|
206
|
+
'COSTPERORDERPC1D': "CostPerOrderPc1d",
|
|
207
|
+
'COSTPERORDERALLPC1D': "CostPerOrderAllPc1d",
|
|
208
|
+
'EXPOSEDUSERS': "ExposedUsers",
|
|
209
|
+
'AUDIENCE': "Audience",
|
|
210
|
+
'REACH': "Reach",
|
|
211
|
+
'AVERAGECARTPC30DCLIENTATTRIBUTION': "AverageCartPc30dClientAttribution",
|
|
212
|
+
'AVERAGECARTALLPC30DCLIENTATTRIBUTION': "AverageCartAllPc30dClientAttribution",
|
|
213
|
+
'AVERAGECARTCLIENTATTRIBUTION': "AverageCartClientAttribution",
|
|
214
|
+
'AVERAGECARTALLCLIENTATTRIBUTION': "AverageCartAllClientAttribution",
|
|
215
|
+
'AVERAGECARTPC30D': "AverageCartPc30d",
|
|
216
|
+
'AVERAGECARTALLPC30D': "AverageCartAllPc30d",
|
|
217
|
+
'AVERAGECARTPV24H': "AverageCartPv24h",
|
|
218
|
+
'AVERAGECARTALLPV24H': "AverageCartAllPv24h",
|
|
219
|
+
'AVERAGECARTPC1D': "AverageCartPc1d",
|
|
220
|
+
'AVERAGECARTALLPC1D': "AverageCartAllPc1d",
|
|
221
|
+
'AVERAGECARTPC7D': "AverageCartPc7d",
|
|
222
|
+
'AVERAGECARTALLPC7D': "AverageCartAllPc7d",
|
|
223
|
+
'AVERAGECARTPC30PV24': "AverageCartPc30Pv24",
|
|
224
|
+
'AVERAGECARTALLPC30PV24': "AverageCartAllPc30Pv24",
|
|
225
|
+
'AVERAGECARTPC30DPV24H': "AverageCartPc30dPv24h",
|
|
226
|
+
'AVERAGECARTALLPC30DPV24H': "AverageCartAllPc30dPv24h",
|
|
227
|
+
'AVERAGECARTPC7DPV24H': "AverageCartPc7dPv24h",
|
|
228
|
+
'AVERAGECARTALLPC7DPV24H': "AverageCartAllPc7dPv24h",
|
|
229
|
+
'AVERAGECARTPC7DPV24': "AverageCartPc7dPv24",
|
|
230
|
+
'AVERAGECARTALLPC7DPV24': "AverageCartAllPc7dPv24",
|
|
231
|
+
'CLICKTHROUGHRATE': "ClickThroughRate",
|
|
232
|
+
'ECPC': "ECpc",
|
|
233
|
+
'CPC': "Cpc",
|
|
234
|
+
'ECPM': "ECpm",
|
|
235
|
+
'RETURNONADVERTISINGSPENDINGCLIENTATTRIBUTION': "ReturnOnAdvertisingSpendingClientAttribution",
|
|
236
|
+
'RETURNONADVERTISINGSPENDINGALLCLIENTATTRIBUTION': "ReturnOnAdvertisingSpendingAllClientAttribution",
|
|
237
|
+
'ADVERTISERVALUE': "AdvertiserValue",
|
|
238
|
+
'ADVERTISERALLVALUE': "AdvertiserAllValue",
|
|
239
|
+
'COSTOFADVERTISERVALUE': "CostOfAdvertiserValue",
|
|
240
|
+
'COSTOFADVERTISERVALUEALL': "CostOfAdvertiserValueAll",
|
|
241
|
+
'APPINSTALLSPCPV': "AppInstallsPcPv",
|
|
242
|
+
'APPINSTALLS': "AppInstalls",
|
|
243
|
+
'QUALIFIEDVISITS': "QualifiedVisits",
|
|
244
|
+
'VISITS': "Visits",
|
|
245
|
+
'VISITSPV1D': "VisitsPV1D",
|
|
246
|
+
'ORDERVALUEPI': "OrderValuePi",
|
|
247
|
+
'POSTINSTALLORDERVALUE': "PostInstallOrderValue",
|
|
248
|
+
'BOUNCERATE': "BounceRate",
|
|
249
|
+
'COSTPERINSTALLPCPV': "CostPerInstallPcPv",
|
|
250
|
+
'COSTPERINSTALL': "CostPerInstall",
|
|
251
|
+
'COSTPERVISIT': "CostPerVisit",
|
|
252
|
+
'COSTPERVISITPV1D': "CostPerVisitPV1D",
|
|
253
|
+
'COSTPERQUALIFIEDVISIT': "CostPerQualifiedVisit",
|
|
254
|
+
'INSTALLRATEPCPV': "InstallRatePcPv",
|
|
255
|
+
'INSTALLRATE': "InstallRate",
|
|
256
|
+
'OMNICHANNELROASPC30D': "OmnichannelRoasPc30d",
|
|
257
|
+
'OMNICHANNELROASALLPC30D': "OmnichannelRoasAllPc30d",
|
|
258
|
+
'OMNICHANNELREVENUEPC30D': "OmnichannelRevenuePc30d",
|
|
259
|
+
'OMNICHANNELREVENUEALLPC30D': "OmnichannelRevenueAllPc30d",
|
|
260
|
+
'OMNICHANNELSALESPC30D': "OmnichannelSalesPc30d",
|
|
261
|
+
'OMNICHANNELSALESALLPC30D': "OmnichannelSalesAllPc30d",
|
|
262
|
+
'OMNICHANNELROASALLPV24H': "OmnichannelRoasAllPv24h",
|
|
263
|
+
'OMNICHANNELROASPV24H': "OmnichannelRoasPv24h",
|
|
264
|
+
'OMNICHANNELREVENUEALLPV24H': "OmnichannelRevenueAllPv24h",
|
|
265
|
+
'OMNICHANNELREVENUEPV24H': "OmnichannelRevenuePv24h",
|
|
266
|
+
'OMNICHANNELSALESALLPV24H': "OmnichannelSalesAllPv24h",
|
|
267
|
+
'OMNICHANNELSALESPV24H': "OmnichannelSalesPv24h",
|
|
268
|
+
'OMNICHANNELROASCLIENTATTRIBUTION': "OmnichannelRoasClientAttribution",
|
|
269
|
+
'OMNICHANNELREVENUECLIENTATTRIBUTION': "OmnichannelRevenueClientAttribution",
|
|
270
|
+
'OMNICHANNELSALESCLIENTATTRIBUTION': "OmnichannelSalesClientAttribution",
|
|
271
|
+
'ROASALLPC30DCLIENTATTRIBUTION': "RoasAllPc30dClientAttribution",
|
|
272
|
+
'ROASPC30DCLIENTATTRIBUTION': "RoasPc30dClientAttribution",
|
|
273
|
+
'ROASALLCLIENTATTRIBUTION': "RoasAllClientAttribution",
|
|
274
|
+
'ROASCLIENTATTRIBUTION': "RoasClientAttribution",
|
|
275
|
+
'ROASALLPC30D': "RoasAllPc30d",
|
|
276
|
+
'ROASPC30D': "RoasPc30d",
|
|
277
|
+
'ROASALLPC7D': "RoasAllPc7d",
|
|
278
|
+
'ROASPC7D': "RoasPc7d",
|
|
279
|
+
'ROASALLPC1D': "RoasAllPc1d",
|
|
280
|
+
'ROASPC1D': "RoasPc1d",
|
|
281
|
+
'ROASALLPV24H': "RoasAllPv24h",
|
|
282
|
+
'ROASPV24H': "RoasPv24h",
|
|
283
|
+
'ROASPC30PV24': "RoasPc30Pv24",
|
|
284
|
+
'ROASALLPC30PV24': "RoasAllPc30Pv24",
|
|
285
|
+
'ROASPC30DPV24H': "RoasPc30dPv24h",
|
|
286
|
+
'ROASALLPC30DPV24H': "RoasAllPc30dPv24h",
|
|
287
|
+
'ROASPC7DPV24': "RoasPc7dPv24",
|
|
288
|
+
'ROASALLPC7DPV24': "RoasAllPc7dPv24",
|
|
289
|
+
'ROASPC7DPV24H': "RoasPc7dPv24h",
|
|
290
|
+
'ROASALLPC7DPV24H': "RoasAllPc7dPv24h",
|
|
291
|
+
'COSTOFSALEPI': "CostOfSalePi",
|
|
292
|
+
'COSTPERORDERPI': "CostPerOrderPi",
|
|
293
|
+
'POSTINSTALLCOSTOFSALE': "PostInstallCostOfSale",
|
|
294
|
+
'POSTINSTALLCOSTPERORDER': "PostInstallCostPerOrder",
|
|
295
|
+
'RETURNONADVERTISERSPENDINGPI': "ReturnOnAdvertiserSpendingPi",
|
|
296
|
+
'POSTINSTALLROAS': "PostInstallRoas",
|
|
297
|
+
'RETURNONADVERTISERSPENDINGOFFLINEPC': "ReturnOnAdvertiserSpendingOfflinePc",
|
|
298
|
+
'RETURNONADVERTISERSPENDINGOFFLINEPV': "ReturnOnAdvertiserSpendingOfflinePv",
|
|
299
|
+
'ROASOFFLINEPC30D': "RoasOfflinePc30d",
|
|
300
|
+
'ROASOFFLINEPV24H': "RoasOfflinePv24h",
|
|
301
|
+
'POTENTIALDISPLAYS': "PotentialDisplays",
|
|
302
|
+
'OVERALLCOMPETITIONWIN': "OverallCompetitionWin",
|
|
303
|
+
'VIEWABLEDISPLAYS': "ViewableDisplays",
|
|
304
|
+
'NONVIEWABLEDISPLAYS': "NonViewableDisplays",
|
|
305
|
+
'UNTRACKABLEDISPLAYS': "UntrackableDisplays",
|
|
306
|
+
'FREQUENCY': "Frequency",
|
|
307
|
+
'INVALIDDISPLAYS': "InvalidDisplays",
|
|
308
|
+
'INVALIDCLICKS': "InvalidClicks",
|
|
309
|
+
'RESULTTYPE': "ResultType",
|
|
310
|
+
'VIDEOSTARTED': "VideoStarted",
|
|
311
|
+
'VIDEOFIRSTQUARTILE': "VideoFirstQuartile",
|
|
312
|
+
'VIDEOMIDPOINT': "VideoMidpoint",
|
|
313
|
+
'VIDEOTHIRDQUARTILE': "VideoThirdQuartile",
|
|
314
|
+
'VIDEOCOMPLETED': "VideoCompleted",
|
|
315
|
+
'VIDEOAVOC': "VideoAvoc",
|
|
316
|
+
'VIDEOSTARTRATE': "VideoStartRate",
|
|
317
|
+
'VIDEOCOMPLETIONRATE': "VideoCompletionRate",
|
|
318
|
+
'VIDEOAVERAGEVIEWRATE': "VideoAverageViewRate",
|
|
319
|
+
'VIDEOCPV': "VideoCpv",
|
|
320
|
+
'VIDEOCPCV': "VideoCpcv",
|
|
321
|
+
},
|
|
322
|
+
('format',): {
|
|
323
|
+
'CSV': "csv",
|
|
324
|
+
'EXCEL': "excel",
|
|
325
|
+
'XML': "xml",
|
|
326
|
+
'JSON': "json",
|
|
327
|
+
},
|
|
86
328
|
}
|
|
87
329
|
|
|
88
330
|
validations = {
|
|
@@ -106,13 +348,13 @@ class StatisticsReportQueryMessage(ModelNormal):
|
|
|
106
348
|
'currency': (str,), # noqa: E501
|
|
107
349
|
'dimensions': ([str],), # noqa: E501
|
|
108
350
|
'end_date': (datetime,), # noqa: E501
|
|
109
|
-
'format': (str,), # noqa: E501
|
|
110
351
|
'metrics': ([str],), # noqa: E501
|
|
111
352
|
'start_date': (datetime,), # noqa: E501
|
|
112
353
|
'ad_set_ids': ([str], none_type,), # noqa: E501
|
|
113
354
|
'ad_set_names': ([str], none_type,), # noqa: E501
|
|
114
355
|
'ad_set_status': ([str], none_type,), # noqa: E501
|
|
115
356
|
'advertiser_ids': (str, none_type,), # noqa: E501
|
|
357
|
+
'format': (str,), # noqa: E501
|
|
116
358
|
'timezone': (str, none_type,), # noqa: E501
|
|
117
359
|
}
|
|
118
360
|
|
|
@@ -125,13 +367,13 @@ class StatisticsReportQueryMessage(ModelNormal):
|
|
|
125
367
|
'currency': 'currency', # noqa: E501
|
|
126
368
|
'dimensions': 'dimensions', # noqa: E501
|
|
127
369
|
'end_date': 'endDate', # noqa: E501
|
|
128
|
-
'format': 'format', # noqa: E501
|
|
129
370
|
'metrics': 'metrics', # noqa: E501
|
|
130
371
|
'start_date': 'startDate', # noqa: E501
|
|
131
372
|
'ad_set_ids': 'adSetIds', # noqa: E501
|
|
132
373
|
'ad_set_names': 'adSetNames', # noqa: E501
|
|
133
374
|
'ad_set_status': 'adSetStatus', # noqa: E501
|
|
134
375
|
'advertiser_ids': 'advertiserIds', # noqa: E501
|
|
376
|
+
'format': 'format', # noqa: E501
|
|
135
377
|
'timezone': 'timezone', # noqa: E501
|
|
136
378
|
}
|
|
137
379
|
|
|
@@ -142,14 +384,13 @@ class StatisticsReportQueryMessage(ModelNormal):
|
|
|
142
384
|
|
|
143
385
|
@classmethod
|
|
144
386
|
@convert_js_args_to_python_args
|
|
145
|
-
def _from_openapi_data(cls, currency, dimensions, end_date,
|
|
387
|
+
def _from_openapi_data(cls, currency, dimensions, end_date, metrics, start_date, *args, **kwargs): # noqa: E501
|
|
146
388
|
"""StatisticsReportQueryMessage - a model defined in OpenAPI
|
|
147
389
|
|
|
148
390
|
Args:
|
|
149
391
|
currency (str): The currency used for the report. ISO 4217 code (three-letter capitals).
|
|
150
392
|
dimensions ([str]): The dimensions for the report.
|
|
151
393
|
end_date (datetime): End date of the report. Date component of ISO 8061 format, any time or timezone component is ignored.
|
|
152
|
-
format (str): The file format of the generated report: csv, xml, excel or json.
|
|
153
394
|
metrics ([str]): The list of metrics to report.
|
|
154
395
|
start_date (datetime): Start date of the report. Date component of ISO 8061 format, any time or timezone component is ignored.
|
|
155
396
|
|
|
@@ -188,6 +429,7 @@ class StatisticsReportQueryMessage(ModelNormal):
|
|
|
188
429
|
ad_set_names ([str], none_type): list of adSets names. If empty, all the adSets will be fetched. [optional] # noqa: E501
|
|
189
430
|
ad_set_status ([str], none_type): list of adSets status. If empty, all the adSets will be fetched. [optional] # noqa: E501
|
|
190
431
|
advertiser_ids (str, none_type): The comma-separated list of advertiser ids. If empty, all the advertisers in the portfolio will be used. [optional] # noqa: E501
|
|
432
|
+
format (str): The file format of the generated report. [optional] if omitted the server will use the default value of "json" # noqa: E501
|
|
191
433
|
timezone (str, none_type): The timezone used for the report. Timezone Database format (Tz).. [optional] if omitted the server will use the default value of "UTC" # noqa: E501
|
|
192
434
|
"""
|
|
193
435
|
|
|
@@ -223,7 +465,6 @@ class StatisticsReportQueryMessage(ModelNormal):
|
|
|
223
465
|
self.currency = currency
|
|
224
466
|
self.dimensions = dimensions
|
|
225
467
|
self.end_date = end_date
|
|
226
|
-
self.format = format
|
|
227
468
|
self.metrics = metrics
|
|
228
469
|
self.start_date = start_date
|
|
229
470
|
for var_name, var_value in kwargs.items():
|
|
@@ -246,14 +487,13 @@ class StatisticsReportQueryMessage(ModelNormal):
|
|
|
246
487
|
])
|
|
247
488
|
|
|
248
489
|
@convert_js_args_to_python_args
|
|
249
|
-
def __init__(self, currency, dimensions, end_date,
|
|
490
|
+
def __init__(self, currency, dimensions, end_date, metrics, start_date, *args, **kwargs): # noqa: E501
|
|
250
491
|
"""StatisticsReportQueryMessage - a model defined in OpenAPI
|
|
251
492
|
|
|
252
493
|
Args:
|
|
253
494
|
currency (str): The currency used for the report. ISO 4217 code (three-letter capitals).
|
|
254
495
|
dimensions ([str]): The dimensions for the report.
|
|
255
496
|
end_date (datetime): End date of the report. Date component of ISO 8061 format, any time or timezone component is ignored.
|
|
256
|
-
format (str): The file format of the generated report: csv, xml, excel or json.
|
|
257
497
|
metrics ([str]): The list of metrics to report.
|
|
258
498
|
start_date (datetime): Start date of the report. Date component of ISO 8061 format, any time or timezone component is ignored.
|
|
259
499
|
|
|
@@ -292,6 +532,7 @@ class StatisticsReportQueryMessage(ModelNormal):
|
|
|
292
532
|
ad_set_names ([str], none_type): list of adSets names. If empty, all the adSets will be fetched. [optional] # noqa: E501
|
|
293
533
|
ad_set_status ([str], none_type): list of adSets status. If empty, all the adSets will be fetched. [optional] # noqa: E501
|
|
294
534
|
advertiser_ids (str, none_type): The comma-separated list of advertiser ids. If empty, all the advertisers in the portfolio will be used. [optional] # noqa: E501
|
|
535
|
+
format (str): The file format of the generated report. [optional] if omitted the server will use the default value of "json" # noqa: E501
|
|
295
536
|
timezone (str, none_type): The timezone used for the report. Timezone Database format (Tz).. [optional] if omitted the server will use the default value of "UTC" # noqa: E501
|
|
296
537
|
"""
|
|
297
538
|
|
|
@@ -325,7 +566,6 @@ class StatisticsReportQueryMessage(ModelNormal):
|
|
|
325
566
|
self.currency = currency
|
|
326
567
|
self.dimensions = dimensions
|
|
327
568
|
self.end_date = end_date
|
|
328
|
-
self.format = format
|
|
329
569
|
self.metrics = metrics
|
|
330
570
|
self.start_date = start_date
|
|
331
571
|
for var_name, var_value in kwargs.items():
|
|
@@ -55,6 +55,12 @@ class TransactionsReportQueryMessage(ModelNormal):
|
|
|
55
55
|
"""
|
|
56
56
|
|
|
57
57
|
allowed_values = {
|
|
58
|
+
('format',): {
|
|
59
|
+
'CSV': "csv",
|
|
60
|
+
'EXCEL': "excel",
|
|
61
|
+
'XML': "xml",
|
|
62
|
+
'JSON': "json",
|
|
63
|
+
},
|
|
58
64
|
}
|
|
59
65
|
|
|
60
66
|
validations = {
|
|
@@ -77,10 +83,10 @@ class TransactionsReportQueryMessage(ModelNormal):
|
|
|
77
83
|
return {
|
|
78
84
|
'currency': (str,), # noqa: E501
|
|
79
85
|
'end_date': (datetime,), # noqa: E501
|
|
80
|
-
'format': (str,), # noqa: E501
|
|
81
86
|
'start_date': (datetime,), # noqa: E501
|
|
82
87
|
'advertiser_ids': (str, none_type,), # noqa: E501
|
|
83
88
|
'event_type': (str, none_type,), # noqa: E501
|
|
89
|
+
'format': (str,), # noqa: E501
|
|
84
90
|
'timezone': (str, none_type,), # noqa: E501
|
|
85
91
|
}
|
|
86
92
|
|
|
@@ -92,10 +98,10 @@ class TransactionsReportQueryMessage(ModelNormal):
|
|
|
92
98
|
attribute_map = {
|
|
93
99
|
'currency': 'currency', # noqa: E501
|
|
94
100
|
'end_date': 'endDate', # noqa: E501
|
|
95
|
-
'format': 'format', # noqa: E501
|
|
96
101
|
'start_date': 'startDate', # noqa: E501
|
|
97
102
|
'advertiser_ids': 'advertiserIds', # noqa: E501
|
|
98
103
|
'event_type': 'eventType', # noqa: E501
|
|
104
|
+
'format': 'format', # noqa: E501
|
|
99
105
|
'timezone': 'timezone', # noqa: E501
|
|
100
106
|
}
|
|
101
107
|
|
|
@@ -106,13 +112,12 @@ class TransactionsReportQueryMessage(ModelNormal):
|
|
|
106
112
|
|
|
107
113
|
@classmethod
|
|
108
114
|
@convert_js_args_to_python_args
|
|
109
|
-
def _from_openapi_data(cls, currency, end_date,
|
|
115
|
+
def _from_openapi_data(cls, currency, end_date, start_date, *args, **kwargs): # noqa: E501
|
|
110
116
|
"""TransactionsReportQueryMessage - a model defined in OpenAPI
|
|
111
117
|
|
|
112
118
|
Args:
|
|
113
119
|
currency (str): The currency used for the report. ISO 4217 code (three-letter capitals).
|
|
114
120
|
end_date (datetime): End date of the report. Date component of ISO 8061 format, any time or timezone component is ignored.
|
|
115
|
-
format (str): The file format of the generated report: csv, xml, excel or json.
|
|
116
121
|
start_date (datetime): Start date of the report. Date component of ISO 8061 format, any time or timezone component is ignored.
|
|
117
122
|
|
|
118
123
|
Keyword Args:
|
|
@@ -148,6 +153,7 @@ class TransactionsReportQueryMessage(ModelNormal):
|
|
|
148
153
|
_visited_composed_classes = (Animal,)
|
|
149
154
|
advertiser_ids (str, none_type): The comma-separated list of advertiser ids. If empty, all the advertisers in the portfolio will be used. [optional] # noqa: E501
|
|
150
155
|
event_type (str, none_type): Apply a filter on Event type .. [optional] # noqa: E501
|
|
156
|
+
format (str): The file format of the generated report. [optional] if omitted the server will use the default value of "json" # noqa: E501
|
|
151
157
|
timezone (str, none_type): The timezone used for the report. Timezone Database format (Tz).. [optional] if omitted the server will use the default value of "UTC" # noqa: E501
|
|
152
158
|
"""
|
|
153
159
|
|
|
@@ -182,7 +188,6 @@ class TransactionsReportQueryMessage(ModelNormal):
|
|
|
182
188
|
|
|
183
189
|
self.currency = currency
|
|
184
190
|
self.end_date = end_date
|
|
185
|
-
self.format = format
|
|
186
191
|
self.start_date = start_date
|
|
187
192
|
for var_name, var_value in kwargs.items():
|
|
188
193
|
if var_name not in self.attribute_map and \
|
|
@@ -204,13 +209,12 @@ class TransactionsReportQueryMessage(ModelNormal):
|
|
|
204
209
|
])
|
|
205
210
|
|
|
206
211
|
@convert_js_args_to_python_args
|
|
207
|
-
def __init__(self, currency, end_date,
|
|
212
|
+
def __init__(self, currency, end_date, start_date, *args, **kwargs): # noqa: E501
|
|
208
213
|
"""TransactionsReportQueryMessage - a model defined in OpenAPI
|
|
209
214
|
|
|
210
215
|
Args:
|
|
211
216
|
currency (str): The currency used for the report. ISO 4217 code (three-letter capitals).
|
|
212
217
|
end_date (datetime): End date of the report. Date component of ISO 8061 format, any time or timezone component is ignored.
|
|
213
|
-
format (str): The file format of the generated report: csv, xml, excel or json.
|
|
214
218
|
start_date (datetime): Start date of the report. Date component of ISO 8061 format, any time or timezone component is ignored.
|
|
215
219
|
|
|
216
220
|
Keyword Args:
|
|
@@ -246,6 +250,7 @@ class TransactionsReportQueryMessage(ModelNormal):
|
|
|
246
250
|
_visited_composed_classes = (Animal,)
|
|
247
251
|
advertiser_ids (str, none_type): The comma-separated list of advertiser ids. If empty, all the advertisers in the portfolio will be used. [optional] # noqa: E501
|
|
248
252
|
event_type (str, none_type): Apply a filter on Event type .. [optional] # noqa: E501
|
|
253
|
+
format (str): The file format of the generated report. [optional] if omitted the server will use the default value of "json" # noqa: E501
|
|
249
254
|
timezone (str, none_type): The timezone used for the report. Timezone Database format (Tz).. [optional] if omitted the server will use the default value of "UTC" # noqa: E501
|
|
250
255
|
"""
|
|
251
256
|
|
|
@@ -278,7 +283,6 @@ class TransactionsReportQueryMessage(ModelNormal):
|
|
|
278
283
|
|
|
279
284
|
self.currency = currency
|
|
280
285
|
self.end_date = end_date
|
|
281
|
-
self.format = format
|
|
282
286
|
self.start_date = start_date
|
|
283
287
|
for var_name, var_value in kwargs.items():
|
|
284
288
|
if var_name not in self.attribute_map and \
|
|
@@ -48,7 +48,6 @@ from criteo_api_marketingsolutions_preview.model.adaptive_colors import Adaptive
|
|
|
48
48
|
from criteo_api_marketingsolutions_preview.model.adaptive_write_attributes import AdaptiveWriteAttributes
|
|
49
49
|
from criteo_api_marketingsolutions_preview.model.advertiser_dataset_list_response import AdvertiserDatasetListResponse
|
|
50
50
|
from criteo_api_marketingsolutions_preview.model.algebra_node_v1 import AlgebraNodeV1
|
|
51
|
-
from criteo_api_marketingsolutions_preview.model.api_error_response import ApiErrorResponse
|
|
52
51
|
from criteo_api_marketingsolutions_preview.model.api_request_of_targeting_entity import ApiRequestOfTargetingEntity
|
|
53
52
|
from criteo_api_marketingsolutions_preview.model.api_response_of_targeting_entity import ApiResponseOfTargetingEntity
|
|
54
53
|
from criteo_api_marketingsolutions_preview.model.application_summary_model import ApplicationSummaryModel
|
|
@@ -178,13 +177,10 @@ from criteo_api_marketingsolutions_preview.model.entity_of_portfolio_message imp
|
|
|
178
177
|
from criteo_api_marketingsolutions_preview.model.entity_v2_of_dataset import EntityV2OfDataset
|
|
179
178
|
from criteo_api_marketingsolutions_preview.model.entity_v2_of_object import EntityV2OfObject
|
|
180
179
|
from criteo_api_marketingsolutions_preview.model.entity_wrapper_of_targeting_entity import EntityWrapperOfTargetingEntity
|
|
181
|
-
from criteo_api_marketingsolutions_preview.model.error_code_response import ErrorCodeResponse
|
|
182
|
-
from criteo_api_marketingsolutions_preview.model.error_description import ErrorDescription
|
|
183
180
|
from criteo_api_marketingsolutions_preview.model.export_column import ExportColumn
|
|
184
181
|
from criteo_api_marketingsolutions_preview.model.export_meta_data import ExportMetaData
|
|
185
182
|
from criteo_api_marketingsolutions_preview.model.export_result import ExportResult
|
|
186
183
|
from criteo_api_marketingsolutions_preview.model.export_result_data import ExportResultData
|
|
187
|
-
from criteo_api_marketingsolutions_preview.model.fail_response import FailResponse
|
|
188
184
|
from criteo_api_marketingsolutions_preview.model.generate_audience_performance_report import GenerateAudiencePerformanceReport
|
|
189
185
|
from criteo_api_marketingsolutions_preview.model.generate_audience_performance_report_request import GenerateAudiencePerformanceReportRequest
|
|
190
186
|
from criteo_api_marketingsolutions_preview.model.generate_audience_performance_report_resource import GenerateAudiencePerformanceReportResource
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: criteo-api-marketingsolutions-sdk
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.250915
|
|
4
4
|
Summary: Criteo API SDK
|
|
5
5
|
Home-page: https://github.com/criteo/criteo-api-python-sdk
|
|
6
6
|
Author: Criteo
|
|
@@ -35,9 +35,9 @@ IMPORTANT: This Python package links to Criteo production environment. Any test
|
|
|
35
35
|
|
|
36
36
|
|
|
37
37
|
```sh
|
|
38
|
-
pip install criteo-api-marketingsolutions-sdk==0.0.
|
|
38
|
+
pip install criteo-api-marketingsolutions-sdk==0.0.250915
|
|
39
39
|
```
|
|
40
|
-
(you may need to run `pip` with root permission: `sudo pip install criteo-api-marketingsolutions-sdk==0.0.
|
|
40
|
+
(you may need to run `pip` with root permission: `sudo pip install criteo-api-marketingsolutions-sdk==0.0.250915`)
|
|
41
41
|
|
|
42
42
|
Then import the package:
|
|
43
43
|
```python
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
criteo_api_marketingsolutions_preview/__init__.py,sha256=
|
|
2
|
-
criteo_api_marketingsolutions_preview/api_client.py,sha256=
|
|
1
|
+
criteo_api_marketingsolutions_preview/__init__.py,sha256=ZvNZANJdqoHDScDaC1JxHAdQYOc6Nu8YCwC0dXmWCuk,1107
|
|
2
|
+
criteo_api_marketingsolutions_preview/api_client.py,sha256=ih7dc9xVnC6vMyhqT2oejc2F3I9IzdoAFVlgxH_wIOM,39246
|
|
3
3
|
criteo_api_marketingsolutions_preview/api_client_builder.py,sha256=2W-j9f5re32PZooV4BngIi3AvmOOpKl7SAEQc6FXVWg,1525
|
|
4
|
-
criteo_api_marketingsolutions_preview/configuration.py,sha256=
|
|
4
|
+
criteo_api_marketingsolutions_preview/configuration.py,sha256=YWrAl9JqbodrVW02nWdU3988TJR3p_zBnbs1Lgo-Nbg,16735
|
|
5
5
|
criteo_api_marketingsolutions_preview/criteo_api_client.py,sha256=4uNu3e__oYicTD-lcpFerUCXl3c3_7LEugoMFqfRTM8,666
|
|
6
6
|
criteo_api_marketingsolutions_preview/criteo_auth.py,sha256=RXBNjv9iz2JSqB25me0iMWN7jfeKRYe0EF6y37hw__A,4714
|
|
7
7
|
criteo_api_marketingsolutions_preview/criteo_rest.py,sha256=oIDGHdVI2kWe1st1X7IHl8OAa1zJn7g1uQUSKYWwFDc,3431
|
|
@@ -10,15 +10,15 @@ criteo_api_marketingsolutions_preview/flow_constants.py,sha256=Ib8P11y_f2GCzYFOR
|
|
|
10
10
|
criteo_api_marketingsolutions_preview/model_utils.py,sha256=unHlrTjCtAWUa5xetk4e6oY8I8hZKt5J8IDbG3Ag0Nw,82578
|
|
11
11
|
criteo_api_marketingsolutions_preview/rest.py,sha256=gXk-QrNdnVj2c-M_oZYB3_KqFfbUh7fkSuaCS_u2UJc,14255
|
|
12
12
|
criteo_api_marketingsolutions_preview/api/__init__.py,sha256=pyzFTbyUcV2DhfsX0qU5ScOa78505IDsd_KbkUsVXm0,244
|
|
13
|
-
criteo_api_marketingsolutions_preview/api/advertiser_api.py,sha256=
|
|
14
|
-
criteo_api_marketingsolutions_preview/api/analytics_api.py,sha256=
|
|
15
|
-
criteo_api_marketingsolutions_preview/api/audience_api.py,sha256=
|
|
16
|
-
criteo_api_marketingsolutions_preview/api/campaign_api.py,sha256=
|
|
17
|
-
criteo_api_marketingsolutions_preview/api/catalog_api.py,sha256=
|
|
18
|
-
criteo_api_marketingsolutions_preview/api/creative_api.py,sha256=
|
|
13
|
+
criteo_api_marketingsolutions_preview/api/advertiser_api.py,sha256=rCIpSl83hjdDZQQ5zN7rkHOgh8Bc35a0Vp2rO1G434w,15850
|
|
14
|
+
criteo_api_marketingsolutions_preview/api/analytics_api.py,sha256=6r5IyKAIta4VX-TabHnNfC8w-aTfgIusTOYD8WMFSzA,67936
|
|
15
|
+
criteo_api_marketingsolutions_preview/api/audience_api.py,sha256=uTtCvXDXaU4jFx5ZDp7Y28_UMf_3gQvRppDwd_p7ihE,107309
|
|
16
|
+
criteo_api_marketingsolutions_preview/api/campaign_api.py,sha256=mj9yavfiJauLKy2E_O87iA5DlcwBfK1HlFBq2VZd-Wk,210490
|
|
17
|
+
criteo_api_marketingsolutions_preview/api/catalog_api.py,sha256=cE7sPtFWVRJ9FVW6bNg6SHe1vGsXpLialexflLswn3U,17802
|
|
18
|
+
criteo_api_marketingsolutions_preview/api/creative_api.py,sha256=LCY4mKrTodkiFU0_88AxCxcvEHIIDoYey6D_9QV3rrQ,95781
|
|
19
19
|
criteo_api_marketingsolutions_preview/api/gateway_api.py,sha256=B0zwh8HH7a3d5mVIdHLCFvR6fCeZb4i-eRG2JQrV2JY,5728
|
|
20
|
-
criteo_api_marketingsolutions_preview/api/on_site_recommendation_api.py,sha256=
|
|
21
|
-
criteo_api_marketingsolutions_preview/api/reco_api.py,sha256=
|
|
20
|
+
criteo_api_marketingsolutions_preview/api/on_site_recommendation_api.py,sha256=uQ1qQZVu_luSugs9UxqJoDEvtN12qnhM4funznU8FOQ,6161
|
|
21
|
+
criteo_api_marketingsolutions_preview/api/reco_api.py,sha256=nEnAFO4InvXxyloVXQH7ROFHxG4dI9lx-duo7FJytoY,43464
|
|
22
22
|
criteo_api_marketingsolutions_preview/apis/__init__.py,sha256=cppZhhSoJ7D9oOBQW-IwFin3ob9JV3fm9hADjj5GxcY,1187
|
|
23
23
|
criteo_api_marketingsolutions_preview/model/__init__.py,sha256=NURge8m2e7lhkersiowu4NeC0UclYVpZnPjaSH7ZYBM,371
|
|
24
24
|
criteo_api_marketingsolutions_preview/model/ad.py,sha256=RbG7etlCZ5oy0x9-fl2suB94HnJhe15-KDccYTyAcSo,14468
|
|
@@ -55,12 +55,11 @@ criteo_api_marketingsolutions_preview/model/ad_set_targeting_video_positioning_r
|
|
|
55
55
|
criteo_api_marketingsolutions_preview/model/ad_set_targeting_video_positioning_set_result_resource.py,sha256=E8AYTEjOMpOjhHyB5owW_7NSNnLKBNXbZwMd8vdVZ2c,12066
|
|
56
56
|
criteo_api_marketingsolutions_preview/model/ad_set_targeting_video_positioning_set_result_response.py,sha256=nBw0vi2g-853B0b15dNtWxQ2nqAq0U48RZPOR51QCDA,12775
|
|
57
57
|
criteo_api_marketingsolutions_preview/model/ad_write.py,sha256=fg6Fo3fhu13dj_P8G3zGJ57NsLYQM2HKxmP0RaZACtE,14247
|
|
58
|
-
criteo_api_marketingsolutions_preview/model/adaptive_attributes.py,sha256=
|
|
58
|
+
criteo_api_marketingsolutions_preview/model/adaptive_attributes.py,sha256=kkmPM_NoocKttJdm4H8A8Vx0xKS79AvzfHKX_QeydQ4,17591
|
|
59
59
|
criteo_api_marketingsolutions_preview/model/adaptive_colors.py,sha256=tRIXSpuRf5SK0A39Ow8QkiUj2RogwWEsfTEkpFhcOQ4,14296
|
|
60
60
|
criteo_api_marketingsolutions_preview/model/adaptive_write_attributes.py,sha256=hCycLu8grA4dztSdRvIyAdMzSYSJblPMdAVaLLqNkOY,17632
|
|
61
61
|
criteo_api_marketingsolutions_preview/model/advertiser_dataset_list_response.py,sha256=5lLCNaOzha-smdklFd7wnHk-rm2pixvMKiBeGv3Wqrg,13499
|
|
62
62
|
criteo_api_marketingsolutions_preview/model/algebra_node_v1.py,sha256=W7PZ8q8Quq-DmoC7zH7K1swmZ0RLVVVrXu7tk1oTA8Q,12202
|
|
63
|
-
criteo_api_marketingsolutions_preview/model/api_error_response.py,sha256=mmgOeR6xQfw-uu0vMRviXl2JwJf6pSJutD-JM-Qs1-8,11746
|
|
64
63
|
criteo_api_marketingsolutions_preview/model/api_request_of_targeting_entity.py,sha256=ywrtI_GR3Zs9OefFI32BIoFwQ7zVoMFdvTO6kyea4vA,11797
|
|
65
64
|
criteo_api_marketingsolutions_preview/model/api_response_of_targeting_entity.py,sha256=N1iKCeViJHLui4QOVi8Qvh41bvfd5uQdYHg5NTMY8bA,11800
|
|
66
65
|
criteo_api_marketingsolutions_preview/model/application_summary_model.py,sha256=_Dj5J9hNXc-HoPpSdpIob6184-umyT1tMMEeCb0wav0,12496
|
|
@@ -190,17 +189,14 @@ criteo_api_marketingsolutions_preview/model/entity_of_portfolio_message.py,sha25
|
|
|
190
189
|
criteo_api_marketingsolutions_preview/model/entity_v2_of_dataset.py,sha256=HN0FmyARvBH9sPVEICGf_8UuekwsnZSIhydnVRUSnO4,12960
|
|
191
190
|
criteo_api_marketingsolutions_preview/model/entity_v2_of_object.py,sha256=KCGnNFmDIJXStSQStNf-Q2JltOVBElUkBMJsTZ-xb4Y,14158
|
|
192
191
|
criteo_api_marketingsolutions_preview/model/entity_wrapper_of_targeting_entity.py,sha256=aASW4AXAevhjQ9IZxUVeA3xqfSao8Df_JYgiu28nX6U,11938
|
|
193
|
-
criteo_api_marketingsolutions_preview/model/error_code_response.py,sha256=n2tFCdMx98tHzyaEM-f_R8F0_vY1EXsKPO1dwGvhe8g,12132
|
|
194
|
-
criteo_api_marketingsolutions_preview/model/error_description.py,sha256=PMC_zD9oxTNjFUb785rIFx3EKb2gUd77EjzS19u0ImQ,12333
|
|
195
192
|
criteo_api_marketingsolutions_preview/model/export_column.py,sha256=m8ftEJjwQBEJ-5gFbMRqHkv6PZU2Us0F12JcktuH8MY,15735
|
|
196
193
|
criteo_api_marketingsolutions_preview/model/export_meta_data.py,sha256=q_-Ck4sq3BnuzHzG81fjPF-ITMWg_Dp42gZhzm-MnXg,11596
|
|
197
194
|
criteo_api_marketingsolutions_preview/model/export_result.py,sha256=GRuG3HNPec6Ob0XzY01sFV__xnkvy97iWwHiqN8AEuQ,11355
|
|
198
195
|
criteo_api_marketingsolutions_preview/model/export_result_data.py,sha256=aa8wyufwsLjamMveSzOIoJARMbwNl8dv46bMD4eTRTs,11766
|
|
199
|
-
criteo_api_marketingsolutions_preview/model/fail_response.py,sha256=mthmOyTpBSd5kF5QCs-yGaNQkauZgD2-h_yL0oTcvHA,12284
|
|
200
196
|
criteo_api_marketingsolutions_preview/model/generate_audience_performance_report.py,sha256=LadxQEbJFnI29X3wmGJ74E1c4SIj6lRl0rT4scZ_IVA,15505
|
|
201
197
|
criteo_api_marketingsolutions_preview/model/generate_audience_performance_report_request.py,sha256=LpRZj5gCBozHaL15TVve6CArj38AyXHQsVIbLr1RJEA,11616
|
|
202
198
|
criteo_api_marketingsolutions_preview/model/generate_audience_performance_report_resource.py,sha256=t5bE-OLx7oPpPep_r_m4sDhupIQRA4jCeCLJK3SpIhU,11849
|
|
203
|
-
criteo_api_marketingsolutions_preview/model/generate_categories_report_request_attributes.py,sha256=
|
|
199
|
+
criteo_api_marketingsolutions_preview/model/generate_categories_report_request_attributes.py,sha256=wZdRmZmUcfDERJkJsESGPcUtJ9wjBPzfolcQNkdHiTk,15156
|
|
204
200
|
criteo_api_marketingsolutions_preview/model/generate_categories_report_request_attributes_request.py,sha256=XUiSZWbA_O1b6DviDRI7qnjwXnX7wdgS5UI5Jt3VHUU,11697
|
|
205
201
|
criteo_api_marketingsolutions_preview/model/generate_categories_report_request_attributes_resource.py,sha256=W1qp_6OYKwXIUqaO04zXkBzzIVw6vQOa26BXX4QpaaA,11930
|
|
206
202
|
criteo_api_marketingsolutions_preview/model/generate_creatives_report_request_attributes.py,sha256=ipBoNzn9vuXvhS651tFU5IwTGHQDNdouXleAIh2hZgc,16609
|
|
@@ -235,7 +231,7 @@ criteo_api_marketingsolutions_preview/model/in_market_size_estimation_v1.py,sha2
|
|
|
235
231
|
criteo_api_marketingsolutions_preview/model/in_market_update_v1.py,sha256=XJkSEPvmUsoAW0HVjRmeek3zFenw2KX5kkzI3KnLgzk,13786
|
|
236
232
|
criteo_api_marketingsolutions_preview/model/in_market_v1.py,sha256=Cmk4eOwCsnSwo4J_yi_vbbNv0bzIj8YFfoWSnJjiL-A,14141
|
|
237
233
|
criteo_api_marketingsolutions_preview/model/installment.py,sha256=7xO3PTD9Vx53il4nW5y2PjLqGskuV_EPkgfquUbiUx8,11868
|
|
238
|
-
criteo_api_marketingsolutions_preview/model/json_report_rows.py,sha256=
|
|
234
|
+
criteo_api_marketingsolutions_preview/model/json_report_rows.py,sha256=4bWIsmEpby19PaYXbV1H6YzZ7vTyr3OSL8x_IN9b3GI,11199
|
|
239
235
|
criteo_api_marketingsolutions_preview/model/json_report_rows_list_response.py,sha256=4SeGrjiJSw7n5BNeeUr_1QYm0xvj0U1gMaODmGOf7TU,12365
|
|
240
236
|
criteo_api_marketingsolutions_preview/model/json_report_rows_resource.py,sha256=vcwaXk0fJ9RiB7Ubh0v2NMYKDbLdemr47P6GrnBgo-0,11658
|
|
241
237
|
criteo_api_marketingsolutions_preview/model/list_available_industries_response.py,sha256=2T5HWo--l0rfcxXG7ulC8mSyKArg2uTM5vXF41xQX2Q,13498
|
|
@@ -260,7 +256,7 @@ criteo_api_marketingsolutions_preview/model/nillable_int32.py,sha256=BeCv8Ygm2qu
|
|
|
260
256
|
criteo_api_marketingsolutions_preview/model/nillable_string.py,sha256=FKFMDAlBRD8fh_B2HNNu_mk8ICflyIVyYS2-2OKLY98,11599
|
|
261
257
|
criteo_api_marketingsolutions_preview/model/on_site_reco_request.py,sha256=NL-uqP3w377yy6rwEVVg-Hxs-_7roeUePUPHBSU6L50,13599
|
|
262
258
|
criteo_api_marketingsolutions_preview/model/on_site_reco_response.py,sha256=qV3-ujOSx6SU6zTwLagf47uOXRTSUIAYTwYjxFUQlgc,12147
|
|
263
|
-
criteo_api_marketingsolutions_preview/model/outcome.py,sha256=
|
|
259
|
+
criteo_api_marketingsolutions_preview/model/outcome.py,sha256=P9yTtGb2mZ_wKOJHkZNDGw1MrFDs7UhCHDmNZ-SBaWA,12067
|
|
264
260
|
criteo_api_marketingsolutions_preview/model/patch_ad_set_attribution_configuration_v24_q3.py,sha256=YWCw1reppNp5H3ILa3X9IEbhbsn4U7PtX3S4pST8uGk,12689
|
|
265
261
|
criteo_api_marketingsolutions_preview/model/patch_ad_set_bidding_v24_q3.py,sha256=D9jCBJC4WHJPgnI7vWjcgb5Ciqv8p-RPgpsn7cBQPBo,11703
|
|
266
262
|
criteo_api_marketingsolutions_preview/model/patch_ad_set_budget_v24_q3.py,sha256=fMBhrlVy8c6fzo3piG0skPlr7e6yOAAGV_2JeSdWc_U,13855
|
|
@@ -283,7 +279,7 @@ criteo_api_marketingsolutions_preview/model/patch_campaign_write_resource.py,sha
|
|
|
283
279
|
criteo_api_marketingsolutions_preview/model/patch_marketing_campaign_budget_automation.py,sha256=jukYT86x_KeVl71mQRPOVZaccZaduj6ToFLNVQbXrl4,12202
|
|
284
280
|
criteo_api_marketingsolutions_preview/model/patch_result_campaign_list_response.py,sha256=ZcOdPQSpCe54UkYk298MQNpEguBiVq0mYxpu5SE8Tmc,12611
|
|
285
281
|
criteo_api_marketingsolutions_preview/model/patch_result_campaign_read_resource.py,sha256=p9VA66Kdml3Lq6aeoTx0fDalN5zDxdKtB733DM14-Qg,11785
|
|
286
|
-
criteo_api_marketingsolutions_preview/model/placements_report_query_message.py,sha256=
|
|
282
|
+
criteo_api_marketingsolutions_preview/model/placements_report_query_message.py,sha256=1lMV9M2B6B9mrwQhWGD82qMAOv_uYaLuefSJH271g3U,16585
|
|
287
283
|
criteo_api_marketingsolutions_preview/model/placements_report_query_message_list_request.py,sha256=zwLuzXliurylJnpxOstD5IdXBh_u9T6b-8FnoUgOPuE,11617
|
|
288
284
|
criteo_api_marketingsolutions_preview/model/placements_report_query_message_resource.py,sha256=9HfTZJ5XnDvS8W9_1ebd9AvD5UJIYgQvSwFrs5OtYaQ,11799
|
|
289
285
|
criteo_api_marketingsolutions_preview/model/point_of_interest_v1.py,sha256=E0zfz2JRlsP07TRPI8nN1zV0W3cREWO82PYl9NnUpa4,12163
|
|
@@ -361,13 +357,13 @@ criteo_api_marketingsolutions_preview/model/size.py,sha256=XDtv1SeGc92V3U-gv-eqA
|
|
|
361
357
|
criteo_api_marketingsolutions_preview/model/statistics_ok_response.py,sha256=_WlH4RPPDf6CniwTjwyAp4zSvYASHCpWQdwBw35THTo,12716
|
|
362
358
|
criteo_api_marketingsolutions_preview/model/statistics_record.py,sha256=tgIiTNx3CAMqdv07AaeR-M3gMx46w097lei6ibpHEN8,17396
|
|
363
359
|
criteo_api_marketingsolutions_preview/model/statistics_record_list.py,sha256=mKLPEMdiCiZmilpr7A2I1ZVSJk4t_sB4uFoqtMJoKGM,11918
|
|
364
|
-
criteo_api_marketingsolutions_preview/model/statistics_report_query_message.py,sha256=
|
|
360
|
+
criteo_api_marketingsolutions_preview/model/statistics_report_query_message.py,sha256=y_56P-pmZGvXzBCT3oyQs-Ri3gPrnPwghGKfxcvn1-8,30184
|
|
365
361
|
criteo_api_marketingsolutions_preview/model/supply_vendor.py,sha256=iMeMe6Dom_6jo7MdfLExyiENlONz7qjfNTi3OsQuZHI,11432
|
|
366
362
|
criteo_api_marketingsolutions_preview/model/supply_vendor_list_response.py,sha256=rNocUc0O8x2f7kU52HN6pJcdrJJ0RUXPwyPDJsEzic0,12583
|
|
367
363
|
criteo_api_marketingsolutions_preview/model/supply_vendor_resource.py,sha256=BDt8JgRQu4eVNClEOSXJLHZJjlQ6W-KLZEOoaAq1VzI,12089
|
|
368
364
|
criteo_api_marketingsolutions_preview/model/tag.py,sha256=tziB-ioZu5m2KtgvQnLVvU_CIEHhYtYBQlRynCXSs9E,11789
|
|
369
365
|
criteo_api_marketingsolutions_preview/model/targeting_entity.py,sha256=VwhLGMy36V0i2BWX1RK9aLYGNMNEcdAYsGHSHxaU38E,12520
|
|
370
|
-
criteo_api_marketingsolutions_preview/model/transactions_report_query_message.py,sha256=
|
|
366
|
+
criteo_api_marketingsolutions_preview/model/transactions_report_query_message.py,sha256=qaXUFQAOTPY6RfgH5nsvLD50YvT9C_z22iZMP5EzJ10,14126
|
|
371
367
|
criteo_api_marketingsolutions_preview/model/transactions_report_query_message_list_request.py,sha256=QBeQs9q9phURhDTqf6y9UqsCWLdxl8e4XZF8VYrw6co,11637
|
|
372
368
|
criteo_api_marketingsolutions_preview/model/transactions_report_query_message_resource.py,sha256=ploFp7DpatzxY9SZpPAzWsptI4q_DcEkXjm_RWLgxAI,11819
|
|
373
369
|
criteo_api_marketingsolutions_preview/model/transparency_query_message.py,sha256=yIELOF72XZQtaBqwhVQpJY20yDeNOsvUx4vWcJZSliY,12461
|
|
@@ -387,8 +383,8 @@ criteo_api_marketingsolutions_preview/model/value_resource_outcome_of_product_fi
|
|
|
387
383
|
criteo_api_marketingsolutions_preview/model/video_detail.py,sha256=i-qvnBOBpuijRhQ2bPNwU8A5pDmWSk7O1kdpZV77Vm8,12436
|
|
388
384
|
criteo_api_marketingsolutions_preview/model/write_model_ad_set_id.py,sha256=AEk9Ss4tXVTbSfDxJjpDW643MJwbV5iMs_Y3BG4839I,11755
|
|
389
385
|
criteo_api_marketingsolutions_preview/model/write_model_patch_ad_set_v24_q3.py,sha256=-GkiNut1VMiXMlpO4-wlbjtTXaDfvDptvzZejfkRZpg,12234
|
|
390
|
-
criteo_api_marketingsolutions_preview/models/__init__.py,sha256=
|
|
391
|
-
criteo_api_marketingsolutions_sdk-0.0.
|
|
392
|
-
criteo_api_marketingsolutions_sdk-0.0.
|
|
393
|
-
criteo_api_marketingsolutions_sdk-0.0.
|
|
394
|
-
criteo_api_marketingsolutions_sdk-0.0.
|
|
386
|
+
criteo_api_marketingsolutions_preview/models/__init__.py,sha256=MoOagd1-7rshQQbzozBs_EsxDAEga_hm1rdUAkryMHQ,41526
|
|
387
|
+
criteo_api_marketingsolutions_sdk-0.0.250915.dist-info/METADATA,sha256=rOMFBBwpSRZTjwvSpMMKnGmjk-xB1KIMY3uTXScvEuo,1876
|
|
388
|
+
criteo_api_marketingsolutions_sdk-0.0.250915.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
389
|
+
criteo_api_marketingsolutions_sdk-0.0.250915.dist-info/top_level.txt,sha256=4xVpjptYrJ_AiVXZAhkhYuSp6rJRgq_VrBDhg-Eyi5Y,38
|
|
390
|
+
criteo_api_marketingsolutions_sdk-0.0.250915.dist-info/RECORD,,
|