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
|
@@ -76,9 +76,7 @@ class AdvertiserApi(object):
|
|
|
76
76
|
},
|
|
77
77
|
headers_map={
|
|
78
78
|
'accept': [
|
|
79
|
-
'application/json'
|
|
80
|
-
'text/plain',
|
|
81
|
-
'text/json'
|
|
79
|
+
'application/json'
|
|
82
80
|
],
|
|
83
81
|
'content_type': [],
|
|
84
82
|
},
|
|
@@ -130,9 +128,7 @@ class AdvertiserApi(object):
|
|
|
130
128
|
},
|
|
131
129
|
headers_map={
|
|
132
130
|
'accept': [
|
|
133
|
-
'application/json'
|
|
134
|
-
'text/plain',
|
|
135
|
-
'text/json'
|
|
131
|
+
'application/json'
|
|
136
132
|
],
|
|
137
133
|
'content_type': [],
|
|
138
134
|
},
|
|
@@ -177,9 +173,7 @@ class AdvertiserApi(object):
|
|
|
177
173
|
},
|
|
178
174
|
headers_map={
|
|
179
175
|
'accept': [
|
|
180
|
-
'application/json'
|
|
181
|
-
'text/plain',
|
|
182
|
-
'text/json'
|
|
176
|
+
'application/json'
|
|
183
177
|
],
|
|
184
178
|
'content_type': [],
|
|
185
179
|
},
|
|
@@ -30,7 +30,6 @@ from criteo_api_marketingsolutions_preview.model.generate_statistics_report_requ
|
|
|
30
30
|
from criteo_api_marketingsolutions_preview.model.generate_top_products_report_request_attributes_request import GenerateTopProductsReportRequestAttributesRequest
|
|
31
31
|
from criteo_api_marketingsolutions_preview.model.json_report_rows_list_response import JsonReportRowsListResponse
|
|
32
32
|
from criteo_api_marketingsolutions_preview.model.marketing_solutions_report_status_response import MarketingSolutionsReportStatusResponse
|
|
33
|
-
from criteo_api_marketingsolutions_preview.model.outcome import Outcome
|
|
34
33
|
from criteo_api_marketingsolutions_preview.model.placements_report_query_message_list_request import PlacementsReportQueryMessageListRequest
|
|
35
34
|
from criteo_api_marketingsolutions_preview.model.statistics_report_query_message import StatisticsReportQueryMessage
|
|
36
35
|
from criteo_api_marketingsolutions_preview.model.transactions_report_query_message_list_request import TransactionsReportQueryMessageListRequest
|
|
@@ -92,18 +91,13 @@ class AnalyticsApi(object):
|
|
|
92
91
|
},
|
|
93
92
|
headers_map={
|
|
94
93
|
'accept': [
|
|
95
|
-
'text/plain',
|
|
96
94
|
'application/json',
|
|
97
|
-
'text/json',
|
|
98
95
|
'text/csv',
|
|
99
96
|
'text/xml',
|
|
100
97
|
'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
|
|
101
98
|
],
|
|
102
99
|
'content_type': [
|
|
103
|
-
'application/json
|
|
104
|
-
'application/json',
|
|
105
|
-
'text/json',
|
|
106
|
-
'application/*+json'
|
|
100
|
+
'application/json'
|
|
107
101
|
]
|
|
108
102
|
},
|
|
109
103
|
api_client=api_client
|
|
@@ -151,17 +145,12 @@ class AnalyticsApi(object):
|
|
|
151
145
|
},
|
|
152
146
|
headers_map={
|
|
153
147
|
'accept': [
|
|
154
|
-
'text/plain',
|
|
155
148
|
'application/json',
|
|
156
|
-
'text/json',
|
|
157
149
|
'application/xml',
|
|
158
150
|
'text/xml'
|
|
159
151
|
],
|
|
160
152
|
'content_type': [
|
|
161
|
-
'application/json-patch+json',
|
|
162
153
|
'application/json',
|
|
163
|
-
'text/json',
|
|
164
|
-
'application/*+json',
|
|
165
154
|
'application/xml',
|
|
166
155
|
'text/xml',
|
|
167
156
|
'application/*+xml'
|
|
@@ -212,17 +201,12 @@ class AnalyticsApi(object):
|
|
|
212
201
|
},
|
|
213
202
|
headers_map={
|
|
214
203
|
'accept': [
|
|
215
|
-
'text/plain',
|
|
216
204
|
'application/json',
|
|
217
|
-
'text/json',
|
|
218
205
|
'application/xml',
|
|
219
206
|
'text/xml'
|
|
220
207
|
],
|
|
221
208
|
'content_type': [
|
|
222
|
-
'application/json-patch+json',
|
|
223
209
|
'application/json',
|
|
224
|
-
'text/json',
|
|
225
|
-
'application/*+json',
|
|
226
210
|
'application/xml',
|
|
227
211
|
'text/xml',
|
|
228
212
|
'application/*+xml'
|
|
@@ -276,9 +260,7 @@ class AnalyticsApi(object):
|
|
|
276
260
|
},
|
|
277
261
|
headers_map={
|
|
278
262
|
'accept': [
|
|
279
|
-
'
|
|
280
|
-
'application/json',
|
|
281
|
-
'text/json'
|
|
263
|
+
'application/json'
|
|
282
264
|
],
|
|
283
265
|
'content_type': [],
|
|
284
266
|
},
|
|
@@ -330,9 +312,7 @@ class AnalyticsApi(object):
|
|
|
330
312
|
},
|
|
331
313
|
headers_map={
|
|
332
314
|
'accept': [
|
|
333
|
-
'text/plain',
|
|
334
315
|
'application/json',
|
|
335
|
-
'text/json',
|
|
336
316
|
'application/xml',
|
|
337
317
|
'text/xml'
|
|
338
318
|
],
|
|
@@ -383,17 +363,13 @@ class AnalyticsApi(object):
|
|
|
383
363
|
},
|
|
384
364
|
headers_map={
|
|
385
365
|
'accept': [
|
|
386
|
-
'text/plain',
|
|
387
366
|
'application/json',
|
|
388
|
-
'text/
|
|
389
|
-
'
|
|
390
|
-
'
|
|
367
|
+
'text/csv',
|
|
368
|
+
'text/xml',
|
|
369
|
+
'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
|
|
391
370
|
],
|
|
392
371
|
'content_type': [
|
|
393
|
-
'application/json-patch+json',
|
|
394
372
|
'application/json',
|
|
395
|
-
'text/json',
|
|
396
|
-
'application/*+json',
|
|
397
373
|
'application/xml',
|
|
398
374
|
'text/xml',
|
|
399
375
|
'application/*+xml'
|
|
@@ -444,17 +420,12 @@ class AnalyticsApi(object):
|
|
|
444
420
|
},
|
|
445
421
|
headers_map={
|
|
446
422
|
'accept': [
|
|
447
|
-
'text/plain',
|
|
448
423
|
'application/json',
|
|
449
|
-
'text/json',
|
|
450
424
|
'application/xml',
|
|
451
425
|
'text/xml'
|
|
452
426
|
],
|
|
453
427
|
'content_type': [
|
|
454
|
-
'application/json-patch+json',
|
|
455
428
|
'application/json',
|
|
456
|
-
'text/json',
|
|
457
|
-
'application/*+json',
|
|
458
429
|
'application/xml',
|
|
459
430
|
'text/xml',
|
|
460
431
|
'application/*+xml'
|
|
@@ -505,19 +476,16 @@ class AnalyticsApi(object):
|
|
|
505
476
|
},
|
|
506
477
|
headers_map={
|
|
507
478
|
'accept': [
|
|
508
|
-
'text/plain',
|
|
509
479
|
'application/json',
|
|
510
|
-
'text/json',
|
|
511
480
|
'text/csv',
|
|
512
|
-
'
|
|
513
|
-
'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
|
|
514
|
-
'text/xml'
|
|
481
|
+
'text/xml',
|
|
482
|
+
'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
|
|
515
483
|
],
|
|
516
484
|
'content_type': [
|
|
517
|
-
'application/json-patch+json',
|
|
518
485
|
'application/json',
|
|
519
|
-
'
|
|
520
|
-
'
|
|
486
|
+
'application/xml',
|
|
487
|
+
'text/xml',
|
|
488
|
+
'application/*+xml'
|
|
521
489
|
]
|
|
522
490
|
},
|
|
523
491
|
api_client=api_client
|
|
@@ -565,17 +533,12 @@ class AnalyticsApi(object):
|
|
|
565
533
|
},
|
|
566
534
|
headers_map={
|
|
567
535
|
'accept': [
|
|
568
|
-
'text/plain',
|
|
569
536
|
'application/json',
|
|
570
|
-
'text/json',
|
|
571
537
|
'application/xml',
|
|
572
538
|
'text/xml'
|
|
573
539
|
],
|
|
574
540
|
'content_type': [
|
|
575
|
-
'application/json-patch+json',
|
|
576
541
|
'application/json',
|
|
577
|
-
'text/json',
|
|
578
|
-
'application/*+json',
|
|
579
542
|
'application/xml',
|
|
580
543
|
'text/xml',
|
|
581
544
|
'application/*+xml'
|
|
@@ -626,17 +589,12 @@ class AnalyticsApi(object):
|
|
|
626
589
|
},
|
|
627
590
|
headers_map={
|
|
628
591
|
'accept': [
|
|
629
|
-
'text/plain',
|
|
630
592
|
'application/json',
|
|
631
|
-
'text/json',
|
|
632
593
|
'application/xml',
|
|
633
594
|
'text/xml'
|
|
634
595
|
],
|
|
635
596
|
'content_type': [
|
|
636
|
-
'application/json-patch+json',
|
|
637
597
|
'application/json',
|
|
638
|
-
'text/json',
|
|
639
|
-
'application/*+json',
|
|
640
598
|
'application/xml',
|
|
641
599
|
'text/xml',
|
|
642
600
|
'application/*+xml'
|
|
@@ -687,18 +645,16 @@ class AnalyticsApi(object):
|
|
|
687
645
|
},
|
|
688
646
|
headers_map={
|
|
689
647
|
'accept': [
|
|
690
|
-
'text/plain',
|
|
691
648
|
'application/json',
|
|
692
|
-
'text/json',
|
|
693
649
|
'text/csv',
|
|
694
650
|
'text/xml',
|
|
695
651
|
'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
|
|
696
652
|
],
|
|
697
653
|
'content_type': [
|
|
698
|
-
'application/json-patch+json',
|
|
699
654
|
'application/json',
|
|
700
|
-
'
|
|
701
|
-
'
|
|
655
|
+
'application/xml',
|
|
656
|
+
'text/xml',
|
|
657
|
+
'application/*+xml'
|
|
702
658
|
]
|
|
703
659
|
},
|
|
704
660
|
api_client=api_client
|
|
@@ -753,17 +709,15 @@ class AnalyticsApi(object):
|
|
|
753
709
|
},
|
|
754
710
|
headers_map={
|
|
755
711
|
'accept': [
|
|
756
|
-
'text/plain',
|
|
757
712
|
'application/json',
|
|
758
|
-
'text/json',
|
|
759
713
|
'application/xml',
|
|
760
714
|
'text/xml'
|
|
761
715
|
],
|
|
762
716
|
'content_type': [
|
|
763
|
-
'application/json-patch+json',
|
|
764
717
|
'application/json',
|
|
765
|
-
'
|
|
766
|
-
'
|
|
718
|
+
'application/xml',
|
|
719
|
+
'text/xml',
|
|
720
|
+
'application/*+xml'
|
|
767
721
|
]
|
|
768
722
|
},
|
|
769
723
|
api_client=api_client
|
|
@@ -47,7 +47,6 @@ from criteo_api_marketingsolutions_preview.model.contact_list_statistics_entity_
|
|
|
47
47
|
from criteo_api_marketingsolutions_preview.model.contactlist_amendment_request import ContactlistAmendmentRequest
|
|
48
48
|
from criteo_api_marketingsolutions_preview.model.contactlist_with_attributes_amendment_request import ContactlistWithAttributesAmendmentRequest
|
|
49
49
|
from criteo_api_marketingsolutions_preview.model.delete_audience_contact_list_response import DeleteAudienceContactListResponse
|
|
50
|
-
from criteo_api_marketingsolutions_preview.model.error_code_response import ErrorCodeResponse
|
|
51
50
|
from criteo_api_marketingsolutions_preview.model.in_market_audience_segment_brand_entity_v1_list_response import InMarketAudienceSegmentBrandEntityV1ListResponse
|
|
52
51
|
from criteo_api_marketingsolutions_preview.model.in_market_audience_segment_interest_entity_v1_list_response import InMarketAudienceSegmentInterestEntityV1ListResponse
|
|
53
52
|
from criteo_api_marketingsolutions_preview.model.modify_audience_response import ModifyAudienceResponse
|
|
@@ -109,15 +108,10 @@ class AudienceApi(object):
|
|
|
109
108
|
},
|
|
110
109
|
headers_map={
|
|
111
110
|
'accept': [
|
|
112
|
-
'
|
|
113
|
-
'application/json',
|
|
114
|
-
'text/json'
|
|
111
|
+
'application/json'
|
|
115
112
|
],
|
|
116
113
|
'content_type': [
|
|
117
|
-
'application/json
|
|
118
|
-
'application/json',
|
|
119
|
-
'text/json',
|
|
120
|
-
'application/*+json'
|
|
114
|
+
'application/json'
|
|
121
115
|
]
|
|
122
116
|
},
|
|
123
117
|
api_client=api_client
|
|
@@ -167,15 +161,10 @@ class AudienceApi(object):
|
|
|
167
161
|
},
|
|
168
162
|
headers_map={
|
|
169
163
|
'accept': [
|
|
170
|
-
'
|
|
171
|
-
'application/json',
|
|
172
|
-
'text/json'
|
|
164
|
+
'application/json'
|
|
173
165
|
],
|
|
174
166
|
'content_type': [
|
|
175
|
-
'application/json
|
|
176
|
-
'application/json',
|
|
177
|
-
'text/json',
|
|
178
|
-
'application/*+json'
|
|
167
|
+
'application/json'
|
|
179
168
|
]
|
|
180
169
|
},
|
|
181
170
|
api_client=api_client
|
|
@@ -225,15 +214,10 @@ class AudienceApi(object):
|
|
|
225
214
|
},
|
|
226
215
|
headers_map={
|
|
227
216
|
'accept': [
|
|
228
|
-
'
|
|
229
|
-
'application/json',
|
|
230
|
-
'text/json'
|
|
217
|
+
'application/json'
|
|
231
218
|
],
|
|
232
219
|
'content_type': [
|
|
233
|
-
'application/json
|
|
234
|
-
'application/json',
|
|
235
|
-
'text/json',
|
|
236
|
-
'application/*+json'
|
|
220
|
+
'application/json'
|
|
237
221
|
]
|
|
238
222
|
},
|
|
239
223
|
api_client=api_client
|
|
@@ -283,15 +267,10 @@ class AudienceApi(object):
|
|
|
283
267
|
},
|
|
284
268
|
headers_map={
|
|
285
269
|
'accept': [
|
|
286
|
-
'
|
|
287
|
-
'application/json',
|
|
288
|
-
'text/json'
|
|
270
|
+
'application/json'
|
|
289
271
|
],
|
|
290
272
|
'content_type': [
|
|
291
|
-
'application/json
|
|
292
|
-
'application/json',
|
|
293
|
-
'text/json',
|
|
294
|
-
'application/*+json'
|
|
273
|
+
'application/json'
|
|
295
274
|
]
|
|
296
275
|
},
|
|
297
276
|
api_client=api_client
|
|
@@ -341,15 +320,10 @@ class AudienceApi(object):
|
|
|
341
320
|
},
|
|
342
321
|
headers_map={
|
|
343
322
|
'accept': [
|
|
344
|
-
'
|
|
345
|
-
'application/json',
|
|
346
|
-
'text/json'
|
|
323
|
+
'application/json'
|
|
347
324
|
],
|
|
348
325
|
'content_type': [
|
|
349
|
-
'application/json
|
|
350
|
-
'application/json',
|
|
351
|
-
'text/json',
|
|
352
|
-
'application/*+json'
|
|
326
|
+
'application/json'
|
|
353
327
|
]
|
|
354
328
|
},
|
|
355
329
|
api_client=api_client
|
|
@@ -399,15 +373,10 @@ class AudienceApi(object):
|
|
|
399
373
|
},
|
|
400
374
|
headers_map={
|
|
401
375
|
'accept': [
|
|
402
|
-
'
|
|
403
|
-
'application/json',
|
|
404
|
-
'text/json'
|
|
376
|
+
'application/json'
|
|
405
377
|
],
|
|
406
378
|
'content_type': [
|
|
407
|
-
'application/json
|
|
408
|
-
'application/json',
|
|
409
|
-
'text/json',
|
|
410
|
-
'application/*+json'
|
|
379
|
+
'application/json'
|
|
411
380
|
]
|
|
412
381
|
},
|
|
413
382
|
api_client=api_client
|
|
@@ -457,15 +426,10 @@ class AudienceApi(object):
|
|
|
457
426
|
},
|
|
458
427
|
headers_map={
|
|
459
428
|
'accept': [
|
|
460
|
-
'
|
|
461
|
-
'application/json',
|
|
462
|
-
'text/json'
|
|
429
|
+
'application/json'
|
|
463
430
|
],
|
|
464
431
|
'content_type': [
|
|
465
|
-
'application/json
|
|
466
|
-
'application/json',
|
|
467
|
-
'text/json',
|
|
468
|
-
'application/*+json'
|
|
432
|
+
'application/json'
|
|
469
433
|
]
|
|
470
434
|
},
|
|
471
435
|
api_client=api_client
|
|
@@ -515,15 +479,10 @@ class AudienceApi(object):
|
|
|
515
479
|
},
|
|
516
480
|
headers_map={
|
|
517
481
|
'accept': [
|
|
518
|
-
'
|
|
519
|
-
'application/json',
|
|
520
|
-
'text/json'
|
|
482
|
+
'application/json'
|
|
521
483
|
],
|
|
522
484
|
'content_type': [
|
|
523
|
-
'application/json
|
|
524
|
-
'application/json',
|
|
525
|
-
'text/json',
|
|
526
|
-
'application/*+json'
|
|
485
|
+
'application/json'
|
|
527
486
|
]
|
|
528
487
|
},
|
|
529
488
|
api_client=api_client
|
|
@@ -573,15 +532,10 @@ class AudienceApi(object):
|
|
|
573
532
|
},
|
|
574
533
|
headers_map={
|
|
575
534
|
'accept': [
|
|
576
|
-
'
|
|
577
|
-
'application/json',
|
|
578
|
-
'text/json'
|
|
535
|
+
'application/json'
|
|
579
536
|
],
|
|
580
537
|
'content_type': [
|
|
581
|
-
'application/json
|
|
582
|
-
'application/json',
|
|
583
|
-
'text/json',
|
|
584
|
-
'application/*+json'
|
|
538
|
+
'application/json'
|
|
585
539
|
]
|
|
586
540
|
},
|
|
587
541
|
api_client=api_client
|
|
@@ -631,15 +585,10 @@ class AudienceApi(object):
|
|
|
631
585
|
},
|
|
632
586
|
headers_map={
|
|
633
587
|
'accept': [
|
|
634
|
-
'
|
|
635
|
-
'application/json',
|
|
636
|
-
'text/json'
|
|
588
|
+
'application/json'
|
|
637
589
|
],
|
|
638
590
|
'content_type': [
|
|
639
|
-
'application/json
|
|
640
|
-
'application/json',
|
|
641
|
-
'text/json',
|
|
642
|
-
'application/*+json'
|
|
591
|
+
'application/json'
|
|
643
592
|
]
|
|
644
593
|
},
|
|
645
594
|
api_client=api_client
|
|
@@ -690,9 +639,7 @@ class AudienceApi(object):
|
|
|
690
639
|
},
|
|
691
640
|
headers_map={
|
|
692
641
|
'accept': [
|
|
693
|
-
'
|
|
694
|
-
'application/json',
|
|
695
|
-
'text/json'
|
|
642
|
+
'application/json'
|
|
696
643
|
],
|
|
697
644
|
'content_type': [],
|
|
698
645
|
},
|
|
@@ -750,9 +697,7 @@ class AudienceApi(object):
|
|
|
750
697
|
},
|
|
751
698
|
headers_map={
|
|
752
699
|
'accept': [
|
|
753
|
-
'
|
|
754
|
-
'application/json',
|
|
755
|
-
'text/json'
|
|
700
|
+
'application/json'
|
|
756
701
|
],
|
|
757
702
|
'content_type': [],
|
|
758
703
|
},
|
|
@@ -810,9 +755,7 @@ class AudienceApi(object):
|
|
|
810
755
|
},
|
|
811
756
|
headers_map={
|
|
812
757
|
'accept': [
|
|
813
|
-
'
|
|
814
|
-
'application/json',
|
|
815
|
-
'text/json'
|
|
758
|
+
'application/json'
|
|
816
759
|
],
|
|
817
760
|
'content_type': [],
|
|
818
761
|
},
|
|
@@ -1049,15 +992,10 @@ class AudienceApi(object):
|
|
|
1049
992
|
},
|
|
1050
993
|
headers_map={
|
|
1051
994
|
'accept': [
|
|
1052
|
-
'
|
|
1053
|
-
'application/json',
|
|
1054
|
-
'text/json'
|
|
995
|
+
'application/json'
|
|
1055
996
|
],
|
|
1056
997
|
'content_type': [
|
|
1057
|
-
'application/json
|
|
1058
|
-
'application/json',
|
|
1059
|
-
'text/json',
|
|
1060
|
-
'application/*+json'
|
|
998
|
+
'application/json'
|
|
1061
999
|
]
|
|
1062
1000
|
},
|
|
1063
1001
|
api_client=api_client
|
|
@@ -1123,15 +1061,10 @@ class AudienceApi(object):
|
|
|
1123
1061
|
},
|
|
1124
1062
|
headers_map={
|
|
1125
1063
|
'accept': [
|
|
1126
|
-
'
|
|
1127
|
-
'application/json',
|
|
1128
|
-
'text/json'
|
|
1064
|
+
'application/json'
|
|
1129
1065
|
],
|
|
1130
1066
|
'content_type': [
|
|
1131
|
-
'application/json
|
|
1132
|
-
'application/json',
|
|
1133
|
-
'text/json',
|
|
1134
|
-
'application/*+json'
|
|
1067
|
+
'application/json'
|
|
1135
1068
|
]
|
|
1136
1069
|
},
|
|
1137
1070
|
api_client=api_client
|