liverails_api 0.0.3
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.
- checksums.yaml +7 -0
- data/lib/api/live_rail.rb +1795 -0
- data/lib/liverails_api.rb +1408 -0
- metadata +105 -0
|
@@ -0,0 +1,1408 @@
|
|
|
1
|
+
|
|
2
|
+
require 'singleton'
|
|
3
|
+
require 'api/live_rail'
|
|
4
|
+
|
|
5
|
+
class LiverailsApi
|
|
6
|
+
include Singleton
|
|
7
|
+
|
|
8
|
+
def initialize
|
|
9
|
+
@api = LiveRail.new({env:ENV['LIVE_RAIL_ENVIRONMENT']})
|
|
10
|
+
end
|
|
11
|
+
|
|
12
|
+
def config(config)
|
|
13
|
+
@api.config config
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
def login(username=nil, password=nil)
|
|
17
|
+
if username.nil? || password.nil?
|
|
18
|
+
@api.login
|
|
19
|
+
else
|
|
20
|
+
@api.credentials(username, password)
|
|
21
|
+
@api.login
|
|
22
|
+
end
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
def logout
|
|
26
|
+
@api.logout
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
def set_entity(args={})
|
|
30
|
+
@api.set_entity args
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
def unset_entity
|
|
34
|
+
@api.unset_entity
|
|
35
|
+
end
|
|
36
|
+
|
|
37
|
+
def entity_add(args={})
|
|
38
|
+
@api.entity_add args
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
def entity_edit(args={})
|
|
42
|
+
@api.entity_edit args
|
|
43
|
+
end
|
|
44
|
+
|
|
45
|
+
def entity_delete(args={})
|
|
46
|
+
@api.entity_delete args
|
|
47
|
+
end
|
|
48
|
+
|
|
49
|
+
def entity_list(args = {})
|
|
50
|
+
@api.entity_list args
|
|
51
|
+
end
|
|
52
|
+
|
|
53
|
+
def entity_list_bychar(args={})
|
|
54
|
+
@api.entity_list_bychar args
|
|
55
|
+
end
|
|
56
|
+
|
|
57
|
+
def entity_resolve_name(args={})
|
|
58
|
+
@api.entity_resolve_name args
|
|
59
|
+
end
|
|
60
|
+
|
|
61
|
+
def entity_integration_get(args={})
|
|
62
|
+
@api.entity_integration_get args
|
|
63
|
+
end
|
|
64
|
+
|
|
65
|
+
def entity_exchange_list(args={})
|
|
66
|
+
@api.entity_exchange_list args
|
|
67
|
+
end
|
|
68
|
+
|
|
69
|
+
def entity_network_type_list(args={})
|
|
70
|
+
@api.entity_network_type_list args
|
|
71
|
+
end
|
|
72
|
+
|
|
73
|
+
def entity_network_type_parameter_list(args={})
|
|
74
|
+
@api.entity_network_type_parameter_list args
|
|
75
|
+
end
|
|
76
|
+
|
|
77
|
+
def entity_quick_list(args={})
|
|
78
|
+
@api.entity_quick_list args
|
|
79
|
+
end
|
|
80
|
+
|
|
81
|
+
def entity_ldb_list(args={})
|
|
82
|
+
@api.entity_ldb_list args
|
|
83
|
+
end
|
|
84
|
+
|
|
85
|
+
def entity_category_domain_list(args={})
|
|
86
|
+
@api.entity_category_domain_list args
|
|
87
|
+
end
|
|
88
|
+
|
|
89
|
+
def entity_category_domain_add(args={})
|
|
90
|
+
@api.entity_category_domain_add args
|
|
91
|
+
end
|
|
92
|
+
|
|
93
|
+
def entity_category_domain_edit(args={})
|
|
94
|
+
@api.entity_category_domain_edit args
|
|
95
|
+
end
|
|
96
|
+
|
|
97
|
+
def entity_category_domain_performance_list(args={})
|
|
98
|
+
@api.entity_category_domain_performance_list args
|
|
99
|
+
end
|
|
100
|
+
|
|
101
|
+
def entity_category_domain_quick_list(args={})
|
|
102
|
+
@api.entity_category_domain_quick_list args
|
|
103
|
+
end
|
|
104
|
+
|
|
105
|
+
def entity_domain_frequency_list(args={})
|
|
106
|
+
@api.entity_domain_frequency_list args
|
|
107
|
+
end
|
|
108
|
+
|
|
109
|
+
def entity_domain_geo_list(args={})
|
|
110
|
+
@api.entity_domain_geo_list args
|
|
111
|
+
end
|
|
112
|
+
|
|
113
|
+
def entity_domain_geo_extended_list(args={})
|
|
114
|
+
@api.entity_domain_geo_extended_list args
|
|
115
|
+
end
|
|
116
|
+
|
|
117
|
+
def entity_domain_geo_extended_split_list(args={})
|
|
118
|
+
@api.entity_domain_geo_extended_split_list args
|
|
119
|
+
end
|
|
120
|
+
|
|
121
|
+
def entity_domain_geo_extended_split_sum_per_domain_list(args={})
|
|
122
|
+
@api.entity_domain_geo_extended_split_sum_per_domain_list args
|
|
123
|
+
end
|
|
124
|
+
|
|
125
|
+
def entity_domain_geo_distinct_vertical_list(args={})
|
|
126
|
+
@api.entity_domain_geo_distinct_vertical_list args
|
|
127
|
+
end
|
|
128
|
+
|
|
129
|
+
def entity_domain_list_add(args={})
|
|
130
|
+
@api.entity_domain_list_add args
|
|
131
|
+
end
|
|
132
|
+
|
|
133
|
+
def entity_domain_list_edit(args={})
|
|
134
|
+
@api.entity_domain_list_edit args
|
|
135
|
+
end
|
|
136
|
+
|
|
137
|
+
def entity_domain_list_list(args={})
|
|
138
|
+
@api.entity_domain_list_list args
|
|
139
|
+
end
|
|
140
|
+
|
|
141
|
+
def entity_domain_list_delete(args={})
|
|
142
|
+
@api.entity_domain_list_delete args
|
|
143
|
+
end
|
|
144
|
+
|
|
145
|
+
def entity_domain_list_resolve_name(args={})
|
|
146
|
+
@api.entity_domain_list_resolve_name args
|
|
147
|
+
end
|
|
148
|
+
|
|
149
|
+
def entity_domain_list_clear_list(args={})
|
|
150
|
+
@api.entity_domain_list_clear_list args
|
|
151
|
+
end
|
|
152
|
+
|
|
153
|
+
def entity_domain_list_duplicate_list(args={})
|
|
154
|
+
@api.entity_domain_list_duplicate_list args
|
|
155
|
+
end
|
|
156
|
+
|
|
157
|
+
def entity_domain_list_check_rule_access(args={})
|
|
158
|
+
@api.entity_domain_list_check_rule_access args
|
|
159
|
+
end
|
|
160
|
+
|
|
161
|
+
def entity_domain_list_domain_add(args={})
|
|
162
|
+
@api.entity_domain_list_domain_add args
|
|
163
|
+
end
|
|
164
|
+
|
|
165
|
+
def entity_domain_list_domain_delete(args={})
|
|
166
|
+
@api.entity_domain_list_domain_delete args
|
|
167
|
+
end
|
|
168
|
+
|
|
169
|
+
def entity_domain_list_domain_list(args={})
|
|
170
|
+
@api.entity_domain_list_domain_list args
|
|
171
|
+
end
|
|
172
|
+
|
|
173
|
+
def entity_domain_audience_list(args={})
|
|
174
|
+
@api.entity_domain_audience_list args
|
|
175
|
+
end
|
|
176
|
+
|
|
177
|
+
def entity_marketplace_list(args={})
|
|
178
|
+
@api.entity_marketplace_list args
|
|
179
|
+
end
|
|
180
|
+
|
|
181
|
+
def entity_marketplace_parameter_list(args={})
|
|
182
|
+
@api.entity_marketplace_parameter_list args
|
|
183
|
+
end
|
|
184
|
+
|
|
185
|
+
def entity_vertical_add(args={})
|
|
186
|
+
@api.entity_vertical_add args
|
|
187
|
+
end
|
|
188
|
+
|
|
189
|
+
def entity_vertical_delete(args={})
|
|
190
|
+
@api.entity_vertical_delete args
|
|
191
|
+
end
|
|
192
|
+
|
|
193
|
+
def entity_vertical_resolve_name(args={})
|
|
194
|
+
@api.entity_vertical_resolve_name args
|
|
195
|
+
end
|
|
196
|
+
|
|
197
|
+
def entity_vertical_list(args={})
|
|
198
|
+
@api.entity_vertical_list args
|
|
199
|
+
end
|
|
200
|
+
|
|
201
|
+
def entity_vertical_publisher_list(args={})
|
|
202
|
+
@api.entity_vertical_publisher_list args
|
|
203
|
+
end
|
|
204
|
+
|
|
205
|
+
def entity_vertical_available(args={})
|
|
206
|
+
@api.entity_vertical_available args
|
|
207
|
+
end
|
|
208
|
+
|
|
209
|
+
def entity_vertical_check_rule_access(args={})
|
|
210
|
+
@api.entity_vertical_check_rule_access args
|
|
211
|
+
end
|
|
212
|
+
|
|
213
|
+
def entity_contact_add(args={})
|
|
214
|
+
@api.entity_contact_add args
|
|
215
|
+
end
|
|
216
|
+
|
|
217
|
+
def entity_contact_edit(args={})
|
|
218
|
+
@api.entity_contact_edit args
|
|
219
|
+
end
|
|
220
|
+
|
|
221
|
+
def entity_contact_delete(args={})
|
|
222
|
+
@api.entity_contact_delete args
|
|
223
|
+
end
|
|
224
|
+
|
|
225
|
+
def entity_contact_list(args={})
|
|
226
|
+
@api.entity_contact_list args
|
|
227
|
+
end
|
|
228
|
+
|
|
229
|
+
def entity_tracker_add(args={})
|
|
230
|
+
@api.entity_tracker_add args
|
|
231
|
+
end
|
|
232
|
+
|
|
233
|
+
def entity_tracker_edit(args={})
|
|
234
|
+
@api.entity_tracker_edit args
|
|
235
|
+
end
|
|
236
|
+
|
|
237
|
+
def entity_tracker_delete(args={})
|
|
238
|
+
@api.entity_tracker_delete args
|
|
239
|
+
end
|
|
240
|
+
|
|
241
|
+
def entity_tracker_list(args={})
|
|
242
|
+
@api.entity_tracker_list args
|
|
243
|
+
end
|
|
244
|
+
|
|
245
|
+
def entity_domain_control_add(args={})
|
|
246
|
+
@api.entity_domain_control_add args
|
|
247
|
+
end
|
|
248
|
+
|
|
249
|
+
def entity_domain_control_delete(args={})
|
|
250
|
+
@api.entity_domain_control_delete args
|
|
251
|
+
end
|
|
252
|
+
|
|
253
|
+
def entity_domain_control_list(args={})
|
|
254
|
+
@api.entity_domain_control_list args
|
|
255
|
+
end
|
|
256
|
+
|
|
257
|
+
def entity_audience_provider_list(args={})
|
|
258
|
+
@api.entity_audience_provider_list args
|
|
259
|
+
end
|
|
260
|
+
|
|
261
|
+
def entity_audience_segment_list(args={})
|
|
262
|
+
@api.entity_audience_segment_list args
|
|
263
|
+
end
|
|
264
|
+
|
|
265
|
+
def entity_buyer_list(args={})
|
|
266
|
+
@api.entity_buyer_list args
|
|
267
|
+
end
|
|
268
|
+
|
|
269
|
+
def entity_buyer_resolve_name(args={})
|
|
270
|
+
@api.entity_buyer_resolve_name args
|
|
271
|
+
end
|
|
272
|
+
|
|
273
|
+
def audience_provider_add(args={})
|
|
274
|
+
@api.audience_provider_add args
|
|
275
|
+
end
|
|
276
|
+
|
|
277
|
+
def audience_provider_edit(args={})
|
|
278
|
+
@api.audience_provider_edit args
|
|
279
|
+
end
|
|
280
|
+
|
|
281
|
+
def audience_provider_delete(args={})
|
|
282
|
+
@api.audience_provider_delete args
|
|
283
|
+
end
|
|
284
|
+
|
|
285
|
+
def audience_provider_list(args={})
|
|
286
|
+
@api.audience_provider_list args
|
|
287
|
+
end
|
|
288
|
+
|
|
289
|
+
def audience_provider_resolve_name(args={})
|
|
290
|
+
@api.audience_provider_resolve_name args
|
|
291
|
+
end
|
|
292
|
+
|
|
293
|
+
def audience_provider_entity_set(args={})
|
|
294
|
+
@api.audience_provider_entity_set args
|
|
295
|
+
end
|
|
296
|
+
|
|
297
|
+
def audience_provider_entity_delete(args={})
|
|
298
|
+
@api.audience_provider_entity_delete args
|
|
299
|
+
end
|
|
300
|
+
|
|
301
|
+
def audience_provider_entity_list(args={})
|
|
302
|
+
@api.audience_provider_entity_list args
|
|
303
|
+
end
|
|
304
|
+
|
|
305
|
+
def audience_segment_add(args={})
|
|
306
|
+
@api.audience_segment_add args
|
|
307
|
+
end
|
|
308
|
+
|
|
309
|
+
def audience_segment_edit(args={})
|
|
310
|
+
@api.audience_segment_edit args
|
|
311
|
+
end
|
|
312
|
+
|
|
313
|
+
def audience_segment_list(args={})
|
|
314
|
+
@api.audience_segment_list args
|
|
315
|
+
end
|
|
316
|
+
|
|
317
|
+
def audience_segment_delete(args={})
|
|
318
|
+
@api.audience_segment_delete args
|
|
319
|
+
end
|
|
320
|
+
|
|
321
|
+
def audience_segment_resolve_name(args={})
|
|
322
|
+
@api.audience_segment_resolve_name args
|
|
323
|
+
end
|
|
324
|
+
|
|
325
|
+
def audience_segment_available(args={})
|
|
326
|
+
@api.audience_segment_available args
|
|
327
|
+
end
|
|
328
|
+
|
|
329
|
+
def audience_segment_check_rule_access(args={})
|
|
330
|
+
@api.audience_segment_check_rule_access args
|
|
331
|
+
end
|
|
332
|
+
|
|
333
|
+
def category_list(args={})
|
|
334
|
+
@api.category_list args
|
|
335
|
+
end
|
|
336
|
+
|
|
337
|
+
def category_resolve_name(args={})
|
|
338
|
+
@api.category_resolve_name args
|
|
339
|
+
end
|
|
340
|
+
|
|
341
|
+
def proximic_data_list(args={})
|
|
342
|
+
@api.proximic_data_list args
|
|
343
|
+
end
|
|
344
|
+
|
|
345
|
+
def user_add(args={})
|
|
346
|
+
@api.user_add args
|
|
347
|
+
end
|
|
348
|
+
|
|
349
|
+
def user_edit(args={})
|
|
350
|
+
@api.user_edit args
|
|
351
|
+
end
|
|
352
|
+
|
|
353
|
+
def user_delete(args={})
|
|
354
|
+
@api.user_delete args
|
|
355
|
+
end
|
|
356
|
+
|
|
357
|
+
def user_list(args={})
|
|
358
|
+
@api.user_list args
|
|
359
|
+
end
|
|
360
|
+
|
|
361
|
+
def user_settings_get(args={})
|
|
362
|
+
@api.user_settings_get args
|
|
363
|
+
end
|
|
364
|
+
|
|
365
|
+
def user_settings_set(args={})
|
|
366
|
+
@api.user_settings_set args
|
|
367
|
+
end
|
|
368
|
+
|
|
369
|
+
def user_recover_init(args={})
|
|
370
|
+
@api.user_recover_init args
|
|
371
|
+
end
|
|
372
|
+
|
|
373
|
+
def user_recover(args={})
|
|
374
|
+
@api.user_recover args
|
|
375
|
+
end
|
|
376
|
+
|
|
377
|
+
def user_entity_tree(args={})
|
|
378
|
+
@api.user_entity_tree args
|
|
379
|
+
end
|
|
380
|
+
|
|
381
|
+
def entity_user_list(args={})
|
|
382
|
+
@api.entity_user_list args
|
|
383
|
+
end
|
|
384
|
+
|
|
385
|
+
def user_attach(args={})
|
|
386
|
+
@api.user_attach args
|
|
387
|
+
end
|
|
388
|
+
|
|
389
|
+
def user_detach(args={})
|
|
390
|
+
@api.user_detach args
|
|
391
|
+
end
|
|
392
|
+
|
|
393
|
+
def partner_available(args={})
|
|
394
|
+
@api.partner_available args
|
|
395
|
+
end
|
|
396
|
+
|
|
397
|
+
def partner_add(args={})
|
|
398
|
+
@api.partner_add args
|
|
399
|
+
end
|
|
400
|
+
|
|
401
|
+
def partner_delete(args={})
|
|
402
|
+
@api.partner_delete args
|
|
403
|
+
end
|
|
404
|
+
|
|
405
|
+
def partner_edit(args={})
|
|
406
|
+
@api.partner_edit args
|
|
407
|
+
end
|
|
408
|
+
|
|
409
|
+
def partner_list(args = {})
|
|
410
|
+
@api.partner_list args
|
|
411
|
+
end
|
|
412
|
+
|
|
413
|
+
def partner_list_by_char(args={})
|
|
414
|
+
@api.partner_list_by_char args
|
|
415
|
+
end
|
|
416
|
+
|
|
417
|
+
def partner_resolve_name(args={})
|
|
418
|
+
@api.partner_resolve_name args
|
|
419
|
+
end
|
|
420
|
+
|
|
421
|
+
def partner_resolve_id(args={})
|
|
422
|
+
@api.partner_resolve_id args
|
|
423
|
+
end
|
|
424
|
+
|
|
425
|
+
def partner_check_rule_access(args={})
|
|
426
|
+
@api.partner_check_rule_access args
|
|
427
|
+
end
|
|
428
|
+
|
|
429
|
+
def revenue_share_list(args={})
|
|
430
|
+
@api.revenue_share_list args
|
|
431
|
+
end
|
|
432
|
+
|
|
433
|
+
def revenue_share_add(args={})
|
|
434
|
+
@api.revenue_share_add args
|
|
435
|
+
end
|
|
436
|
+
|
|
437
|
+
def revenue_share_edit(args={})
|
|
438
|
+
@api.revenue_share_edit args
|
|
439
|
+
end
|
|
440
|
+
|
|
441
|
+
def revenue_share_delete(args={})
|
|
442
|
+
@api.revenue_share_delete args
|
|
443
|
+
end
|
|
444
|
+
|
|
445
|
+
def creative_campaign_add(args={})
|
|
446
|
+
@api.creative_campaign_add args
|
|
447
|
+
end
|
|
448
|
+
|
|
449
|
+
def creative_campaign_edit(args={})
|
|
450
|
+
@api.creative_campaign_edit args
|
|
451
|
+
end
|
|
452
|
+
|
|
453
|
+
def creative_campaign_delete(args={})
|
|
454
|
+
@api.creative_campaign_delete args
|
|
455
|
+
end
|
|
456
|
+
|
|
457
|
+
def creative_campaign_list(args={})
|
|
458
|
+
@api.creative_campaign_list args
|
|
459
|
+
end
|
|
460
|
+
|
|
461
|
+
def creative_campaign_resolve_name(args={})
|
|
462
|
+
@api.creative_campaign_resolve_name args
|
|
463
|
+
end
|
|
464
|
+
|
|
465
|
+
def creative_campaign_advertiser_add(args={})
|
|
466
|
+
@api.creative_campaign_advertiser_add args
|
|
467
|
+
end
|
|
468
|
+
|
|
469
|
+
def creative_campaign_advertiser_delete(args={})
|
|
470
|
+
@api.creative_campaign_advertiser_delete args
|
|
471
|
+
end
|
|
472
|
+
|
|
473
|
+
def creative_campaign_advertiser_list(args={})
|
|
474
|
+
@api.creative_campaign_advertiser_list args
|
|
475
|
+
end
|
|
476
|
+
|
|
477
|
+
def creative_add(args={})
|
|
478
|
+
@api.creative_add args
|
|
479
|
+
end
|
|
480
|
+
|
|
481
|
+
def creative_edit(args={})
|
|
482
|
+
@api.creative_edit args
|
|
483
|
+
end
|
|
484
|
+
|
|
485
|
+
def creative_duplicate(args={})
|
|
486
|
+
@api.creative_duplicate args
|
|
487
|
+
end
|
|
488
|
+
|
|
489
|
+
def creative_delete(args={})
|
|
490
|
+
@api.creative_delete args
|
|
491
|
+
end
|
|
492
|
+
|
|
493
|
+
def creative_list(args={})
|
|
494
|
+
@api.creative_list args
|
|
495
|
+
end
|
|
496
|
+
|
|
497
|
+
def creative_list_owned_orders(args={})
|
|
498
|
+
@api.creative_list_owned_orders args
|
|
499
|
+
end
|
|
500
|
+
|
|
501
|
+
def creative_resolve_name(args={})
|
|
502
|
+
@api.creative_resolve_name args
|
|
503
|
+
end
|
|
504
|
+
|
|
505
|
+
def creative_set_archived(args={})
|
|
506
|
+
@api.creative_set_archived args
|
|
507
|
+
end
|
|
508
|
+
|
|
509
|
+
def creative_video_add(args={})
|
|
510
|
+
@api.creative_video_add args
|
|
511
|
+
end
|
|
512
|
+
|
|
513
|
+
def creative_video_edit(args={})
|
|
514
|
+
@api.creative_video_edit args
|
|
515
|
+
end
|
|
516
|
+
|
|
517
|
+
def creative_video_delete(args={})
|
|
518
|
+
@api.creative_video_delete args
|
|
519
|
+
end
|
|
520
|
+
|
|
521
|
+
def creative_video_list(args={})
|
|
522
|
+
@api.creative_video_list args
|
|
523
|
+
end
|
|
524
|
+
|
|
525
|
+
def creative_video_set(args={})
|
|
526
|
+
@api.creative_video_set args
|
|
527
|
+
end
|
|
528
|
+
|
|
529
|
+
def creative_video_upload(args={})
|
|
530
|
+
@api.creative_video_upload args
|
|
531
|
+
end
|
|
532
|
+
|
|
533
|
+
def creative_overlay_add(args={})
|
|
534
|
+
@api.creative_overlay_add args
|
|
535
|
+
end
|
|
536
|
+
|
|
537
|
+
def creative_overlay_edit(args={})
|
|
538
|
+
@api.creative_overlay_edit args
|
|
539
|
+
end
|
|
540
|
+
|
|
541
|
+
def creative_overlay_delete(args={})
|
|
542
|
+
@api.creative_overlay_delete args
|
|
543
|
+
end
|
|
544
|
+
|
|
545
|
+
def creative_overlay_list(args={})
|
|
546
|
+
@api.creative_overlay_list args
|
|
547
|
+
end
|
|
548
|
+
|
|
549
|
+
def creative_overlay_upload(args={})
|
|
550
|
+
@api.creative_overlay_upload args
|
|
551
|
+
end
|
|
552
|
+
|
|
553
|
+
def creative_companion_add(args={})
|
|
554
|
+
@api.creative_companion_add args
|
|
555
|
+
end
|
|
556
|
+
|
|
557
|
+
def creative_companion_edit(args={})
|
|
558
|
+
@api.creative_companion_edit args
|
|
559
|
+
end
|
|
560
|
+
|
|
561
|
+
def creative_companion_delete(args={})
|
|
562
|
+
@api.creative_companion_delete args
|
|
563
|
+
end
|
|
564
|
+
|
|
565
|
+
def creative_companion_list(args={})
|
|
566
|
+
@api.creative_companion_list args
|
|
567
|
+
end
|
|
568
|
+
|
|
569
|
+
def creative_companion_upload(args={})
|
|
570
|
+
@api.creative_companion_upload args
|
|
571
|
+
end
|
|
572
|
+
|
|
573
|
+
def creative_advertiser_add(args={})
|
|
574
|
+
@api.creative_advertiser_add args
|
|
575
|
+
end
|
|
576
|
+
|
|
577
|
+
def creative_advertiser_delete(args={})
|
|
578
|
+
@api.creative_advertiser_delete args
|
|
579
|
+
end
|
|
580
|
+
|
|
581
|
+
def creative_advertiser_list(args={})
|
|
582
|
+
@api.creative_advertiser_list args
|
|
583
|
+
end
|
|
584
|
+
|
|
585
|
+
def creative_advertising_category_add(args={})
|
|
586
|
+
@api.creative_advertising_category_add args
|
|
587
|
+
end
|
|
588
|
+
|
|
589
|
+
def creative_advertising_category_delete(args={})
|
|
590
|
+
@api.creative_advertising_category_delete args
|
|
591
|
+
end
|
|
592
|
+
|
|
593
|
+
def creative_advertising_category_list(args={})
|
|
594
|
+
@api.creative_advertising_category_list args
|
|
595
|
+
end
|
|
596
|
+
|
|
597
|
+
def creative_tracker_add(args={})
|
|
598
|
+
@api.creative_tracker_add args
|
|
599
|
+
end
|
|
600
|
+
|
|
601
|
+
def creative_tracker_edit(args={})
|
|
602
|
+
@api.creative_tracker_edit args
|
|
603
|
+
end
|
|
604
|
+
|
|
605
|
+
def creative_tracker_delete(args={})
|
|
606
|
+
@api.creative_tracker_delete args
|
|
607
|
+
end
|
|
608
|
+
|
|
609
|
+
def creative_tracker_list(args={})
|
|
610
|
+
@api.creative_tracker_list args
|
|
611
|
+
end
|
|
612
|
+
|
|
613
|
+
def order_number_list(args={})
|
|
614
|
+
@api.order_number_list args
|
|
615
|
+
end
|
|
616
|
+
|
|
617
|
+
def order_number_resolve_name(args={})
|
|
618
|
+
@api.order_number_resolve_name args
|
|
619
|
+
end
|
|
620
|
+
|
|
621
|
+
def order_number_resolve_name_from_order(args={})
|
|
622
|
+
@api.order_number_resolve_name_from_order args
|
|
623
|
+
end
|
|
624
|
+
|
|
625
|
+
def order_package_add(args={})
|
|
626
|
+
@api.order_package_add args
|
|
627
|
+
end
|
|
628
|
+
|
|
629
|
+
def order_package_edit(args={})
|
|
630
|
+
@api.order_package_edit args
|
|
631
|
+
end
|
|
632
|
+
|
|
633
|
+
def order_package_delete(args={})
|
|
634
|
+
@api.order_package_delete args
|
|
635
|
+
end
|
|
636
|
+
|
|
637
|
+
def order_package_list(args={})
|
|
638
|
+
@api.order_package_list args
|
|
639
|
+
end
|
|
640
|
+
|
|
641
|
+
def order_package_list_stop(args={})
|
|
642
|
+
@api.order_package_list_stop args
|
|
643
|
+
end
|
|
644
|
+
|
|
645
|
+
def order_package_archive(args={})
|
|
646
|
+
@api.order_package_archive args
|
|
647
|
+
end
|
|
648
|
+
|
|
649
|
+
def order_package_staging(args={})
|
|
650
|
+
@api.order_package_staging args
|
|
651
|
+
end
|
|
652
|
+
|
|
653
|
+
def order_package_integration_list(args={})
|
|
654
|
+
@api.order_package_integration_list args
|
|
655
|
+
end
|
|
656
|
+
|
|
657
|
+
def order_package_resolve_name(args={})
|
|
658
|
+
@api.order_package_resolve_name args
|
|
659
|
+
end
|
|
660
|
+
|
|
661
|
+
def order_package_get_vast(args={})
|
|
662
|
+
@api.order_package_get_vast args
|
|
663
|
+
end
|
|
664
|
+
|
|
665
|
+
def order_package_quick_list(args={})
|
|
666
|
+
@api.order_package_quick_list args
|
|
667
|
+
end
|
|
668
|
+
|
|
669
|
+
def order_package_frequency_set(args={})
|
|
670
|
+
@api.order_package_frequency_set args
|
|
671
|
+
end
|
|
672
|
+
|
|
673
|
+
def order_package_frequency_list(args={})
|
|
674
|
+
@api.order_package_frequency_list args
|
|
675
|
+
end
|
|
676
|
+
|
|
677
|
+
def order_package_frequency_delete(args={})
|
|
678
|
+
@api.order_package_frequency_delete args
|
|
679
|
+
end
|
|
680
|
+
|
|
681
|
+
def order_line_add(args={})
|
|
682
|
+
@api.order_line_add args
|
|
683
|
+
end
|
|
684
|
+
|
|
685
|
+
def order_line_edit(args={})
|
|
686
|
+
@api.order_line_edit args
|
|
687
|
+
end
|
|
688
|
+
|
|
689
|
+
def order_line_delete(args={})
|
|
690
|
+
@api.order_line_delete args
|
|
691
|
+
end
|
|
692
|
+
|
|
693
|
+
def order_line_list(args={})
|
|
694
|
+
@api.order_line_list args
|
|
695
|
+
end
|
|
696
|
+
|
|
697
|
+
def order_line_integration_list(args={})
|
|
698
|
+
@api.order_line_integration_list args
|
|
699
|
+
end
|
|
700
|
+
|
|
701
|
+
def order_line_publisher_list(args={})
|
|
702
|
+
@api.order_line_publisher_list args
|
|
703
|
+
end
|
|
704
|
+
|
|
705
|
+
def order_line_publisher_detached_list(args={})
|
|
706
|
+
@api.order_line_publisher_detached_list args
|
|
707
|
+
end
|
|
708
|
+
|
|
709
|
+
def order_line_staging(args={})
|
|
710
|
+
@api.order_line_staging args
|
|
711
|
+
end
|
|
712
|
+
|
|
713
|
+
def order_line_network_status_set(args={})
|
|
714
|
+
@api.order_line_network_status_set args
|
|
715
|
+
end
|
|
716
|
+
|
|
717
|
+
def order_line_publisher_status_set(args={})
|
|
718
|
+
@api.order_line_publisher_status_set args
|
|
719
|
+
end
|
|
720
|
+
|
|
721
|
+
def order_line_resolve_name(args={})
|
|
722
|
+
@api.order_line_resolve_name args
|
|
723
|
+
end
|
|
724
|
+
|
|
725
|
+
def order_line_list_min_start_date(args={})
|
|
726
|
+
@api.order_line_list_min_start_date args
|
|
727
|
+
end
|
|
728
|
+
|
|
729
|
+
def order_line_list_max_end_date(args={})
|
|
730
|
+
@api.order_line_list_max_end_date args
|
|
731
|
+
end
|
|
732
|
+
|
|
733
|
+
def order_line_list_stop(args={})
|
|
734
|
+
@api.order_line_list_stop args
|
|
735
|
+
end
|
|
736
|
+
|
|
737
|
+
def order_line_quick_list(args={})
|
|
738
|
+
@api.order_line_quick_list args
|
|
739
|
+
end
|
|
740
|
+
|
|
741
|
+
def order_line_creative_list(args={})
|
|
742
|
+
@api.order_line_creative_list args
|
|
743
|
+
end
|
|
744
|
+
|
|
745
|
+
def order_line_creative_attach(args={})
|
|
746
|
+
@api.order_line_creative_attach args
|
|
747
|
+
end
|
|
748
|
+
|
|
749
|
+
def order_line_creative_detach(args={})
|
|
750
|
+
@api.order_line_creative_detach args
|
|
751
|
+
end
|
|
752
|
+
|
|
753
|
+
def order_line_site_attach(args={})
|
|
754
|
+
@api.order_line_site_attach args
|
|
755
|
+
end
|
|
756
|
+
|
|
757
|
+
def order_line_site_attach_multi(args={})
|
|
758
|
+
@api.order_line_site_attach_multi args
|
|
759
|
+
end
|
|
760
|
+
|
|
761
|
+
def order_line_marketplace_attach(args={})
|
|
762
|
+
@api.order_line_marketplace_attach args
|
|
763
|
+
end
|
|
764
|
+
|
|
765
|
+
def order_line_marketplace_attach_multi(args={})
|
|
766
|
+
@api.order_line_marketplace_attach_multi args
|
|
767
|
+
end
|
|
768
|
+
|
|
769
|
+
def order_line_site_detach(args={})
|
|
770
|
+
@api.order_line_site_detach args
|
|
771
|
+
end
|
|
772
|
+
|
|
773
|
+
def order_line_site_detach_multi(args={})
|
|
774
|
+
@api.order_line_site_detach_multi args
|
|
775
|
+
end
|
|
776
|
+
|
|
777
|
+
def order_line_targeting_set(args={})
|
|
778
|
+
@api.order_line_targeting_set args
|
|
779
|
+
end
|
|
780
|
+
|
|
781
|
+
def order_line_targeting_delete(args={})
|
|
782
|
+
@api.order_line_targeting_delete args
|
|
783
|
+
end
|
|
784
|
+
|
|
785
|
+
def order_line_targeting_list(args={})
|
|
786
|
+
@api.order_line_targeting_list args
|
|
787
|
+
end
|
|
788
|
+
|
|
789
|
+
def order_line_marketplace_targeting_set(args={})
|
|
790
|
+
@api.order_line_marketplace_targeting_set args
|
|
791
|
+
end
|
|
792
|
+
|
|
793
|
+
def order_line_marketplace_targeting_delete(args={})
|
|
794
|
+
@api.order_line_marketplace_targeting_delete args
|
|
795
|
+
end
|
|
796
|
+
|
|
797
|
+
def order_line_marketplace_targeting_list(args={})
|
|
798
|
+
@api.order_line_marketplace_targeting_list args
|
|
799
|
+
end
|
|
800
|
+
|
|
801
|
+
def order_line_frequency_set(args={})
|
|
802
|
+
@api.order_line_frequency_set args
|
|
803
|
+
end
|
|
804
|
+
|
|
805
|
+
def order_line_frequency_list(args={})
|
|
806
|
+
@api.order_line_frequency_list args
|
|
807
|
+
end
|
|
808
|
+
|
|
809
|
+
def order_line_frequency_delete(args={})
|
|
810
|
+
@api.order_line_frequency_delete args
|
|
811
|
+
end
|
|
812
|
+
|
|
813
|
+
def order_line_template_set(args={})
|
|
814
|
+
@api.order_line_template_set args
|
|
815
|
+
end
|
|
816
|
+
|
|
817
|
+
def order_line_template_list(args={})
|
|
818
|
+
@api.order_line_template_list args
|
|
819
|
+
end
|
|
820
|
+
|
|
821
|
+
def order_line_template_delete(args={})
|
|
822
|
+
@api.order_line_template_delete args
|
|
823
|
+
end
|
|
824
|
+
|
|
825
|
+
def order_line_entity_tracker_disabled_set(args={})
|
|
826
|
+
@api.order_line_entity_tracker_disabled_set args
|
|
827
|
+
end
|
|
828
|
+
|
|
829
|
+
def order_line_entity_tracker_disabled_delete(args={})
|
|
830
|
+
@api.order_line_entity_tracker_disabled_delete args
|
|
831
|
+
end
|
|
832
|
+
|
|
833
|
+
def order_line_entity_tracker_disabled_list(args={})
|
|
834
|
+
@api.order_line_entity_tracker_disabled_list args
|
|
835
|
+
end
|
|
836
|
+
|
|
837
|
+
def order_line_tracker_add(args={})
|
|
838
|
+
@api.order_line_tracker_add args
|
|
839
|
+
end
|
|
840
|
+
|
|
841
|
+
def order_line_tracker_edit(args={})
|
|
842
|
+
@api.order_line_tracker_edit args
|
|
843
|
+
end
|
|
844
|
+
|
|
845
|
+
def order_line_tracker_list(args={})
|
|
846
|
+
@api.order_line_tracker_list args
|
|
847
|
+
end
|
|
848
|
+
|
|
849
|
+
def order_line_tracker_delete(args={})
|
|
850
|
+
@api.order_line_tracker_delete args
|
|
851
|
+
end
|
|
852
|
+
|
|
853
|
+
def advertiser_add(args={})
|
|
854
|
+
@api.advertiser_add args
|
|
855
|
+
end
|
|
856
|
+
|
|
857
|
+
def advertiser_list(args={})
|
|
858
|
+
@api.advertiser_list args
|
|
859
|
+
end
|
|
860
|
+
|
|
861
|
+
def advertiser_resolve_name(args={})
|
|
862
|
+
@api.advertiser_resolve_name args
|
|
863
|
+
end
|
|
864
|
+
|
|
865
|
+
def advertiser_resolve_name_from_creative(args={})
|
|
866
|
+
@api.advertiser_resolve_name_from_creative args
|
|
867
|
+
end
|
|
868
|
+
|
|
869
|
+
def advertiser_creative_list(args={})
|
|
870
|
+
@api.advertiser_creative_list args
|
|
871
|
+
end
|
|
872
|
+
|
|
873
|
+
def advertising_category_list(args={})
|
|
874
|
+
@api.advertising_category_list args
|
|
875
|
+
end
|
|
876
|
+
|
|
877
|
+
def advertising_category_resolve_name(args={})
|
|
878
|
+
@api.advertising_category_resolve_name args
|
|
879
|
+
end
|
|
880
|
+
|
|
881
|
+
def advertising_category_resolve_name_from_creative(args={})
|
|
882
|
+
@api.advertising_category_resolve_name_from_creative args
|
|
883
|
+
end
|
|
884
|
+
|
|
885
|
+
def advertising_category_creative_list(args={})
|
|
886
|
+
@api.advertising_category_creative_list args
|
|
887
|
+
end
|
|
888
|
+
|
|
889
|
+
def advertising_category_check_rule_access(args={})
|
|
890
|
+
@api.advertising_category_check_rule_access args
|
|
891
|
+
end
|
|
892
|
+
|
|
893
|
+
def connection_add(args={})
|
|
894
|
+
@api.connection_add args
|
|
895
|
+
end
|
|
896
|
+
|
|
897
|
+
def connection_edit(args={})
|
|
898
|
+
@api.connection_edit args
|
|
899
|
+
end
|
|
900
|
+
|
|
901
|
+
def connection_delete(args={})
|
|
902
|
+
@api.connection_delete args
|
|
903
|
+
end
|
|
904
|
+
|
|
905
|
+
def connection_list(args={})
|
|
906
|
+
@api.connection_list args
|
|
907
|
+
end
|
|
908
|
+
|
|
909
|
+
def connection_resolve_name(args={})
|
|
910
|
+
@api.connection_resolve_name args
|
|
911
|
+
end
|
|
912
|
+
|
|
913
|
+
def connection_set_archived(args={})
|
|
914
|
+
@api.connection_set_archived args
|
|
915
|
+
end
|
|
916
|
+
|
|
917
|
+
def connection_check_rule_access(args={})
|
|
918
|
+
@api.connection_check_rule_access args
|
|
919
|
+
end
|
|
920
|
+
|
|
921
|
+
def connection_tracker_add(args={})
|
|
922
|
+
@api.connection_tracker_add args
|
|
923
|
+
end
|
|
924
|
+
|
|
925
|
+
def connection_tracker_edit(args={})
|
|
926
|
+
@api.connection_tracker_edit args
|
|
927
|
+
end
|
|
928
|
+
|
|
929
|
+
def connection_tracker_delete(args={})
|
|
930
|
+
@api.connection_tracker_delete args
|
|
931
|
+
end
|
|
932
|
+
|
|
933
|
+
def connection_tracker_list(args={})
|
|
934
|
+
@api.connection_tracker_list args
|
|
935
|
+
end
|
|
936
|
+
|
|
937
|
+
def connection_frequency_add(args={})
|
|
938
|
+
@api.connection_frequency_add args
|
|
939
|
+
end
|
|
940
|
+
|
|
941
|
+
def connection_frequency_edit(args={})
|
|
942
|
+
@api.connection_frequency_edit args
|
|
943
|
+
end
|
|
944
|
+
|
|
945
|
+
def connection_frequency_delete(args={})
|
|
946
|
+
@api.connection_frequency_delete args
|
|
947
|
+
end
|
|
948
|
+
|
|
949
|
+
def connection_frequency_list(args={})
|
|
950
|
+
@api.connection_frequency_list args
|
|
951
|
+
end
|
|
952
|
+
|
|
953
|
+
def connection_deal_attach(args={})
|
|
954
|
+
@api.connection_deal_attach args
|
|
955
|
+
end
|
|
956
|
+
|
|
957
|
+
def connection_deal_detach(args={})
|
|
958
|
+
@api.connection_deal_detach args
|
|
959
|
+
end
|
|
960
|
+
|
|
961
|
+
def connection_deal_list(args={})
|
|
962
|
+
@api.connection_deal_list args
|
|
963
|
+
end
|
|
964
|
+
|
|
965
|
+
def site_settings_list(args={})
|
|
966
|
+
@api.site_settings_list args
|
|
967
|
+
end
|
|
968
|
+
|
|
969
|
+
def site_settings_set(args={})
|
|
970
|
+
@api.site_settings_set args
|
|
971
|
+
end
|
|
972
|
+
|
|
973
|
+
def pricing_floor_rule_add(args={})
|
|
974
|
+
@api.pricing_floor_rule_add args
|
|
975
|
+
end
|
|
976
|
+
|
|
977
|
+
def pricing_floor_rule_edit(args={})
|
|
978
|
+
@api.pricing_floor_rule_edit args
|
|
979
|
+
end
|
|
980
|
+
|
|
981
|
+
def pricing_floor_rule_list(args={})
|
|
982
|
+
@api.pricing_floor_rule_list args
|
|
983
|
+
end
|
|
984
|
+
|
|
985
|
+
def pricing_floor_rule_delete(args={})
|
|
986
|
+
@api.pricing_floor_rule_delete args
|
|
987
|
+
end
|
|
988
|
+
|
|
989
|
+
def publisher_tag_available(args={})
|
|
990
|
+
@api.publisher_tag_available args
|
|
991
|
+
end
|
|
992
|
+
|
|
993
|
+
def publisher_tag_add(args={})
|
|
994
|
+
@api.publisher_tag_add args
|
|
995
|
+
end
|
|
996
|
+
|
|
997
|
+
def publisher_tag_delete(args={})
|
|
998
|
+
@api.publisher_tag_delete args
|
|
999
|
+
end
|
|
1000
|
+
|
|
1001
|
+
def publisher_tag_list(args={})
|
|
1002
|
+
@api.publisher_tag_list args
|
|
1003
|
+
end
|
|
1004
|
+
|
|
1005
|
+
def publisher_tag_check_rule_access(args={})
|
|
1006
|
+
@api.publisher_tag_check_rule_access args
|
|
1007
|
+
end
|
|
1008
|
+
|
|
1009
|
+
def publisher_frequency_add(args={})
|
|
1010
|
+
@api.publisher_frequency_add args
|
|
1011
|
+
end
|
|
1012
|
+
|
|
1013
|
+
def publisher_frequency_delete(args={})
|
|
1014
|
+
@api.publisher_frequency_delete args
|
|
1015
|
+
end
|
|
1016
|
+
|
|
1017
|
+
def publisher_frequency_list(args={})
|
|
1018
|
+
@api.publisher_frequency_list args
|
|
1019
|
+
end
|
|
1020
|
+
|
|
1021
|
+
def publisher_check_rule_access(args={})
|
|
1022
|
+
@api.publisher_check_rule_access args
|
|
1023
|
+
end
|
|
1024
|
+
|
|
1025
|
+
def allocation_add(args={})
|
|
1026
|
+
@api.allocation_add args
|
|
1027
|
+
end
|
|
1028
|
+
|
|
1029
|
+
def allocation_edit(args={})
|
|
1030
|
+
@api.allocation_edit args
|
|
1031
|
+
end
|
|
1032
|
+
|
|
1033
|
+
def allocation_delete(args={})
|
|
1034
|
+
@api.allocation_delete args
|
|
1035
|
+
end
|
|
1036
|
+
|
|
1037
|
+
def allocation_list(args={})
|
|
1038
|
+
@api.allocation_list args
|
|
1039
|
+
end
|
|
1040
|
+
|
|
1041
|
+
def allocation_duplicate(args={})
|
|
1042
|
+
@api.allocation_duplicate args
|
|
1043
|
+
end
|
|
1044
|
+
|
|
1045
|
+
def allocation_group_add(args={})
|
|
1046
|
+
@api.allocation_group_add args
|
|
1047
|
+
end
|
|
1048
|
+
|
|
1049
|
+
def allocation_group_edit(args={})
|
|
1050
|
+
@api.allocation_group_edit args
|
|
1051
|
+
end
|
|
1052
|
+
|
|
1053
|
+
def allocation_group_delete(args={})
|
|
1054
|
+
@api.allocation_group_delete args
|
|
1055
|
+
end
|
|
1056
|
+
|
|
1057
|
+
def allocation_group_list(args={})
|
|
1058
|
+
@api.allocation_group_list args
|
|
1059
|
+
end
|
|
1060
|
+
|
|
1061
|
+
def allocation_source_add(args={})
|
|
1062
|
+
@api.allocation_source_add args
|
|
1063
|
+
end
|
|
1064
|
+
|
|
1065
|
+
def allocation_source_edit(args={})
|
|
1066
|
+
@api.allocation_source_edit args
|
|
1067
|
+
end
|
|
1068
|
+
|
|
1069
|
+
def allocation_source_delete(args={})
|
|
1070
|
+
@api.allocation_source_delete args
|
|
1071
|
+
end
|
|
1072
|
+
|
|
1073
|
+
def allocation_source_list(args={})
|
|
1074
|
+
@api.allocation_source_list args
|
|
1075
|
+
end
|
|
1076
|
+
|
|
1077
|
+
def allocation_update_position(args={})
|
|
1078
|
+
@api.allocation_update_position args
|
|
1079
|
+
end
|
|
1080
|
+
|
|
1081
|
+
def allocation_resolve_name(args={})
|
|
1082
|
+
@api.allocation_resolve_name args
|
|
1083
|
+
end
|
|
1084
|
+
|
|
1085
|
+
def allocation_set_archived(args={})
|
|
1086
|
+
@api.allocation_set_archived args
|
|
1087
|
+
end
|
|
1088
|
+
|
|
1089
|
+
def reports_portfolio_add(args={})
|
|
1090
|
+
@api.reports_portfolio_add args
|
|
1091
|
+
end
|
|
1092
|
+
|
|
1093
|
+
def reports_portfolio_edit(args={})
|
|
1094
|
+
@api.reports_portfolio_edit args
|
|
1095
|
+
end
|
|
1096
|
+
|
|
1097
|
+
def reports_portfolio_delete(args={})
|
|
1098
|
+
@api.reports_portfolio_delete args
|
|
1099
|
+
end
|
|
1100
|
+
|
|
1101
|
+
def reports_portfolio_list(args={})
|
|
1102
|
+
@api.reports_portfolio_list args
|
|
1103
|
+
end
|
|
1104
|
+
|
|
1105
|
+
def reports_portfolio_schedule_add(args={})
|
|
1106
|
+
@api.reports_portfolio_schedule_add args
|
|
1107
|
+
end
|
|
1108
|
+
|
|
1109
|
+
def reports_portfolio_schedule_edit(args={})
|
|
1110
|
+
@api.reports_portfolio_schedule_edit args
|
|
1111
|
+
end
|
|
1112
|
+
|
|
1113
|
+
def reports_portfolio_schedule_delete(args={})
|
|
1114
|
+
@api.reports_portfolio_schedule_delete args
|
|
1115
|
+
end
|
|
1116
|
+
|
|
1117
|
+
def reports_portfolio_schedule_list(args={})
|
|
1118
|
+
@api.reports_portfolio_schedule_list args
|
|
1119
|
+
end
|
|
1120
|
+
|
|
1121
|
+
def custom_macro_list(args={})
|
|
1122
|
+
@api.custom_macro_list args
|
|
1123
|
+
end
|
|
1124
|
+
|
|
1125
|
+
def custom_macro_add(args={})
|
|
1126
|
+
@api.custom_macro_add args
|
|
1127
|
+
end
|
|
1128
|
+
|
|
1129
|
+
def custom_macro_edit(args={})
|
|
1130
|
+
@api.custom_macro_edit args
|
|
1131
|
+
end
|
|
1132
|
+
|
|
1133
|
+
def custom_macro_delete(args={})
|
|
1134
|
+
@api.custom_macro_delete args
|
|
1135
|
+
end
|
|
1136
|
+
|
|
1137
|
+
def custom_macro_attach(args={})
|
|
1138
|
+
@api.custom_macro_attach args
|
|
1139
|
+
end
|
|
1140
|
+
|
|
1141
|
+
def custom_macro_detach(args={})
|
|
1142
|
+
@api.custom_macro_detach args
|
|
1143
|
+
end
|
|
1144
|
+
|
|
1145
|
+
def custom_macro_edit_attach(args={})
|
|
1146
|
+
@api.custom_macro_edit_attach args
|
|
1147
|
+
end
|
|
1148
|
+
|
|
1149
|
+
def location_list(args={})
|
|
1150
|
+
@api.location_list args
|
|
1151
|
+
end
|
|
1152
|
+
|
|
1153
|
+
def location_check_rule_access(args={})
|
|
1154
|
+
@api.location_check_rule_access args
|
|
1155
|
+
end
|
|
1156
|
+
|
|
1157
|
+
def location_list_add(args={})
|
|
1158
|
+
@api.location_list_add args
|
|
1159
|
+
end
|
|
1160
|
+
|
|
1161
|
+
def location_list_edit(args={})
|
|
1162
|
+
@api.location_list_edit args
|
|
1163
|
+
end
|
|
1164
|
+
|
|
1165
|
+
def location_list_delete(args={})
|
|
1166
|
+
@api.location_list_delete args
|
|
1167
|
+
end
|
|
1168
|
+
|
|
1169
|
+
def location_list_list(args={})
|
|
1170
|
+
@api.location_list_list args
|
|
1171
|
+
end
|
|
1172
|
+
|
|
1173
|
+
def location_list_resolve_name(args={})
|
|
1174
|
+
@api.location_list_resolve_name args
|
|
1175
|
+
end
|
|
1176
|
+
|
|
1177
|
+
def location_list_check_rule_access(args={})
|
|
1178
|
+
@api.location_list_check_rule_access args
|
|
1179
|
+
end
|
|
1180
|
+
|
|
1181
|
+
def location_list_location_add(args={})
|
|
1182
|
+
@api.location_list_location_add args
|
|
1183
|
+
end
|
|
1184
|
+
|
|
1185
|
+
def location_list_location_delete(args={})
|
|
1186
|
+
@api.location_list_location_delete args
|
|
1187
|
+
end
|
|
1188
|
+
|
|
1189
|
+
def location_list_location_list(args={})
|
|
1190
|
+
@api.location_list_location_list args
|
|
1191
|
+
end
|
|
1192
|
+
|
|
1193
|
+
def statistics(args={})
|
|
1194
|
+
@api.statistics args
|
|
1195
|
+
end
|
|
1196
|
+
|
|
1197
|
+
def statistics_aggregated(args={})
|
|
1198
|
+
@api.statistics_aggregated args
|
|
1199
|
+
end
|
|
1200
|
+
|
|
1201
|
+
def summary_domain_list(args={})
|
|
1202
|
+
@api.summary_domain_list args
|
|
1203
|
+
end
|
|
1204
|
+
|
|
1205
|
+
def summary_fingerprint_list(args={})
|
|
1206
|
+
@api.summary_fingerprint_list args
|
|
1207
|
+
end
|
|
1208
|
+
|
|
1209
|
+
def summary_media_list(args={})
|
|
1210
|
+
@api.summary_media_list args
|
|
1211
|
+
end
|
|
1212
|
+
|
|
1213
|
+
def summary_partner_list(args={})
|
|
1214
|
+
@api.summary_partner_list args
|
|
1215
|
+
end
|
|
1216
|
+
|
|
1217
|
+
def summary_tag_list(args={})
|
|
1218
|
+
@api.summary_tag_list args
|
|
1219
|
+
end
|
|
1220
|
+
|
|
1221
|
+
def summary_vertical_list(args={})
|
|
1222
|
+
@api.summary_vertical_list args
|
|
1223
|
+
end
|
|
1224
|
+
|
|
1225
|
+
def summary_order_list(args={})
|
|
1226
|
+
@api.summary_order_list args
|
|
1227
|
+
end
|
|
1228
|
+
|
|
1229
|
+
def summary_order_line_list(args={})
|
|
1230
|
+
@api.summary_order_line_list args
|
|
1231
|
+
end
|
|
1232
|
+
|
|
1233
|
+
def summary_creative_list(args={})
|
|
1234
|
+
@api.summary_creative_list args
|
|
1235
|
+
end
|
|
1236
|
+
|
|
1237
|
+
def summary_creative_campaign_list(args={})
|
|
1238
|
+
@api.summary_creative_campaign_list args
|
|
1239
|
+
end
|
|
1240
|
+
|
|
1241
|
+
def summary_mobile_carrier_list(args={})
|
|
1242
|
+
@api.summary_mobile_carrier_list args
|
|
1243
|
+
end
|
|
1244
|
+
|
|
1245
|
+
def summary_mobile_make_list(args={})
|
|
1246
|
+
@api.summary_mobile_make_list args
|
|
1247
|
+
end
|
|
1248
|
+
|
|
1249
|
+
def site_list_add(args={})
|
|
1250
|
+
@api.site_list_add args
|
|
1251
|
+
end
|
|
1252
|
+
|
|
1253
|
+
def site_list_edit(args={})
|
|
1254
|
+
@api.site_list_edit args
|
|
1255
|
+
end
|
|
1256
|
+
|
|
1257
|
+
def site_list_delete(args={})
|
|
1258
|
+
@api.site_list_delete args
|
|
1259
|
+
end
|
|
1260
|
+
|
|
1261
|
+
def site_list_list(args={})
|
|
1262
|
+
@api.site_list_list args
|
|
1263
|
+
end
|
|
1264
|
+
|
|
1265
|
+
def site_list_site_add(args={})
|
|
1266
|
+
@api.site_list_site_add args
|
|
1267
|
+
end
|
|
1268
|
+
|
|
1269
|
+
def site_list_site_delete(args={})
|
|
1270
|
+
@api.site_list_site_delete args
|
|
1271
|
+
end
|
|
1272
|
+
|
|
1273
|
+
def site_list_site_list(args={})
|
|
1274
|
+
@api.site_list_site_list args
|
|
1275
|
+
end
|
|
1276
|
+
|
|
1277
|
+
def site_list_check_rule_access(args={})
|
|
1278
|
+
@api.site_list_check_rule_access args
|
|
1279
|
+
end
|
|
1280
|
+
|
|
1281
|
+
def site_list_resolve_name(args={})
|
|
1282
|
+
@api.site_list_resolve_name args
|
|
1283
|
+
end
|
|
1284
|
+
|
|
1285
|
+
def comscore_target_list(args={})
|
|
1286
|
+
@api.comscore_target_list args
|
|
1287
|
+
end
|
|
1288
|
+
|
|
1289
|
+
def comscore_domain_list(args={})
|
|
1290
|
+
@api.comscore_domain_list args
|
|
1291
|
+
end
|
|
1292
|
+
|
|
1293
|
+
def viewable_check_rule_access(args={})
|
|
1294
|
+
@api.viewable_check_rule_access args
|
|
1295
|
+
end
|
|
1296
|
+
|
|
1297
|
+
def nielsen_demographic_list(args={})
|
|
1298
|
+
@api.nielsen_demographic_list args
|
|
1299
|
+
end
|
|
1300
|
+
|
|
1301
|
+
def nielsen_campaign_placement_exposure_list(args={})
|
|
1302
|
+
@api.nielsen_campaign_placement_exposure_list args
|
|
1303
|
+
end
|
|
1304
|
+
|
|
1305
|
+
def nielsen_ocr_campaign_list(args={})
|
|
1306
|
+
@api.nielsen_ocr_campaign_list args
|
|
1307
|
+
end
|
|
1308
|
+
|
|
1309
|
+
def contextual_segments_get(args={})
|
|
1310
|
+
@api.contextual_segments_get args
|
|
1311
|
+
end
|
|
1312
|
+
|
|
1313
|
+
def contextual_segments_resolve_name(args={})
|
|
1314
|
+
@api.contextual_segments_resolve_name args
|
|
1315
|
+
end
|
|
1316
|
+
|
|
1317
|
+
def contextual_segment_check_rule_access(args={})
|
|
1318
|
+
@api.contextual_segment_check_rule_access args
|
|
1319
|
+
end
|
|
1320
|
+
|
|
1321
|
+
def qc_advertiser_list(args={})
|
|
1322
|
+
@api.qc_advertiser_list args
|
|
1323
|
+
end
|
|
1324
|
+
|
|
1325
|
+
def qc_advertiser_check_rule_access(args={})
|
|
1326
|
+
@api.qc_advertiser_check_rule_access args
|
|
1327
|
+
end
|
|
1328
|
+
|
|
1329
|
+
def qc_advertiser_resolve_name(args={})
|
|
1330
|
+
@api.qc_advertiser_resolve_name args
|
|
1331
|
+
end
|
|
1332
|
+
|
|
1333
|
+
def deal_add(args={})
|
|
1334
|
+
@api.deal_add args
|
|
1335
|
+
end
|
|
1336
|
+
|
|
1337
|
+
def deal_edit(args={})
|
|
1338
|
+
@api.deal_edit args
|
|
1339
|
+
end
|
|
1340
|
+
|
|
1341
|
+
def deal_list(args={})
|
|
1342
|
+
@api.deal_list args
|
|
1343
|
+
end
|
|
1344
|
+
|
|
1345
|
+
def deal_delete(args={})
|
|
1346
|
+
@api.deal_delete args
|
|
1347
|
+
end
|
|
1348
|
+
|
|
1349
|
+
def deal_resolve_name(args={})
|
|
1350
|
+
@api.deal_resolve_name args
|
|
1351
|
+
end
|
|
1352
|
+
|
|
1353
|
+
def deal_check_rule_access(args={})
|
|
1354
|
+
@api.deal_check_rule_access args
|
|
1355
|
+
end
|
|
1356
|
+
|
|
1357
|
+
def blocklist_add(args={})
|
|
1358
|
+
@api.blocklist_add args
|
|
1359
|
+
end
|
|
1360
|
+
|
|
1361
|
+
def blocklist_edit(args={})
|
|
1362
|
+
@api.blocklist_edit args
|
|
1363
|
+
end
|
|
1364
|
+
|
|
1365
|
+
def blocklist_list(args={})
|
|
1366
|
+
@api.blocklist_list args
|
|
1367
|
+
end
|
|
1368
|
+
|
|
1369
|
+
def blocklist_delete(args={})
|
|
1370
|
+
@api.blocklist_delete args
|
|
1371
|
+
end
|
|
1372
|
+
|
|
1373
|
+
def blocklist_advertiser_add(args={})
|
|
1374
|
+
@api.blocklist_advertiser_add args
|
|
1375
|
+
end
|
|
1376
|
+
|
|
1377
|
+
def blocklist_advertiser_delete(args={})
|
|
1378
|
+
@api.blocklist_advertiser_delete args
|
|
1379
|
+
end
|
|
1380
|
+
|
|
1381
|
+
def blocklist_advertiser_list(args={})
|
|
1382
|
+
@api.blocklist_advertiser_list args
|
|
1383
|
+
end
|
|
1384
|
+
|
|
1385
|
+
def blocklist_category_add(args={})
|
|
1386
|
+
@api.blocklist_category_add args
|
|
1387
|
+
end
|
|
1388
|
+
|
|
1389
|
+
def blocklist_category_delete(args={})
|
|
1390
|
+
@api.blocklist_category_delete args
|
|
1391
|
+
end
|
|
1392
|
+
|
|
1393
|
+
def blocklist_category_list(args={})
|
|
1394
|
+
@api.blocklist_category_list args
|
|
1395
|
+
end
|
|
1396
|
+
|
|
1397
|
+
def mobile_connection_type_check_rule_access(args={})
|
|
1398
|
+
@api.mobile_connection_type_check_rule_access args
|
|
1399
|
+
end
|
|
1400
|
+
|
|
1401
|
+
def mobile_carrier_check_rule_access(args={})
|
|
1402
|
+
@api.mobile_carrier_check_rule_access args
|
|
1403
|
+
end
|
|
1404
|
+
|
|
1405
|
+
def mobile_make_check_rule_access(args={})
|
|
1406
|
+
@api.mobile_make_check_rule_access args
|
|
1407
|
+
end
|
|
1408
|
+
end
|