Google_GanService.php
59.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
<?php
/*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
/**
* The "advertisers" collection of methods.
* Typical usage is:
* <code>
* $ganService = new Google_GanService(...);
* $advertisers = $ganService->advertisers;
* </code>
*/
class Google_AdvertisersServiceResource extends Google_ServiceResource {
/**
* Retrieves data about all advertisers that the requesting advertiser/publisher has access to.
* (advertisers.list)
*
* @param string $role The role of the requester. Valid values: 'advertisers' or 'publishers'.
* @param string $roleId The ID of the requesting advertiser or publisher.
* @param array $optParams Optional parameters.
*
* @opt_param string relationshipStatus Filters out all advertisers for which do not have the given relationship status with the requesting publisher.
* @opt_param double minSevenDayEpc Filters out all advertisers that have a seven day EPC average lower than the given value (inclusive). Min value: 0.0. Optional.
* @opt_param string advertiserCategory Caret(^) delimted list of advertiser categories. Valid categories are defined here: http://www.google.com/support/affiliatenetwork/advertiser/bin/answer.py?hl=en=107581. Filters out all advertisers not in one of the given advertiser categories. Optional.
* @opt_param double minNinetyDayEpc Filters out all advertisers that have a ninety day EPC average lower than the given value (inclusive). Min value: 0.0. Optional.
* @opt_param string pageToken The value of 'nextPageToken' from the previous page. Optional.
* @opt_param string maxResults Max number of items to return in this page. Optional. Defaults to 20.
* @opt_param int minPayoutRank A value between 1 and 4, where 1 represents the quartile of advertisers with the lowest ranks and 4 represents the quartile of advertisers with the highest ranks. Filters out all advertisers with a lower rank than the given quartile. For example if a 2 was given only advertisers with a payout rank of 25 or higher would be included. Optional.
* @return Google_Advertisers
*/
public function listAdvertisers($role, $roleId, $optParams = array()) {
$params = array('role' => $role, 'roleId' => $roleId);
$params = array_merge($params, $optParams);
$data = $this->__call('list', array($params));
if ($this->useObjects()) {
return new Google_Advertisers($data);
} else {
return $data;
}
}
/**
* Retrieves data about a single advertiser if that the requesting advertiser/publisher has access
* to it. Only publishers can lookup advertisers. Advertisers can request information about
* themselves by omitting the advertiserId query parameter. (advertisers.get)
*
* @param string $role The role of the requester. Valid values: 'advertisers' or 'publishers'.
* @param string $roleId The ID of the requesting advertiser or publisher.
* @param array $optParams Optional parameters.
*
* @opt_param string advertiserId The ID of the advertiser to look up. Optional.
* @return Google_Advertiser
*/
public function get($role, $roleId, $optParams = array()) {
$params = array('role' => $role, 'roleId' => $roleId);
$params = array_merge($params, $optParams);
$data = $this->__call('get', array($params));
if ($this->useObjects()) {
return new Google_Advertiser($data);
} else {
return $data;
}
}
}
/**
* The "ccOffers" collection of methods.
* Typical usage is:
* <code>
* $ganService = new Google_GanService(...);
* $ccOffers = $ganService->ccOffers;
* </code>
*/
class Google_CcOffersServiceResource extends Google_ServiceResource {
/**
* Retrieves credit card offers for the given publisher. (ccOffers.list)
*
* @param string $publisher The ID of the publisher in question.
* @param array $optParams Optional parameters.
*
* @opt_param string advertiser The advertiser ID of a card issuer whose offers to include. Optional, may be repeated.
* @opt_param string projection The set of fields to return.
* @return Google_CcOffers
*/
public function listCcOffers($publisher, $optParams = array()) {
$params = array('publisher' => $publisher);
$params = array_merge($params, $optParams);
$data = $this->__call('list', array($params));
if ($this->useObjects()) {
return new Google_CcOffers($data);
} else {
return $data;
}
}
}
/**
* The "events" collection of methods.
* Typical usage is:
* <code>
* $ganService = new Google_GanService(...);
* $events = $ganService->events;
* </code>
*/
class Google_EventsServiceResource extends Google_ServiceResource {
/**
* Retrieves event data for a given advertiser/publisher. (events.list)
*
* @param string $role The role of the requester. Valid values: 'advertisers' or 'publishers'.
* @param string $roleId The ID of the requesting advertiser or publisher.
* @param array $optParams Optional parameters.
*
* @opt_param string orderId Caret(^) delimited list of order IDs. Filters out all events that do not reference one of the given order IDs. Optional.
* @opt_param string sku Caret(^) delimited list of SKUs. Filters out all events that do not reference one of the given SKU. Optional.
* @opt_param string eventDateMax Filters out all events later than given date. Optional. Defaults to 24 hours after eventMin.
* @opt_param string type Filters out all events that are not of the given type. Valid values: 'action', 'transaction', 'charge'. Optional.
* @opt_param string linkId Caret(^) delimited list of link IDs. Filters out all events that do not reference one of the given link IDs. Optional.
* @opt_param string modifyDateMin Filters out all events modified earlier than given date. Optional. Defaults to 24 hours before the current modifyDateMax, if modifyDateMax is explicitly set.
* @opt_param string eventDateMin Filters out all events earlier than given date. Optional. Defaults to 24 hours from current date/time.
* @opt_param string memberId Caret(^) delimited list of member IDs. Filters out all events that do not reference one of the given member IDs. Optional.
* @opt_param string maxResults Max number of offers to return in this page. Optional. Defaults to 20.
* @opt_param string advertiserId Caret(^) delimited list of advertiser IDs. Filters out all events that do not reference one of the given advertiser IDs. Only used when under publishers role. Optional.
* @opt_param string pageToken The value of 'nextPageToken' from the previous page. Optional.
* @opt_param string productCategory Caret(^) delimited list of product categories. Filters out all events that do not reference a product in one of the given product categories. Optional.
* @opt_param string chargeType Filters out all charge events that are not of the given charge type. Valid values: 'other', 'slotting_fee', 'monthly_minimum', 'tier_bonus', 'credit', 'debit'. Optional.
* @opt_param string modifyDateMax Filters out all events modified later than given date. Optional. Defaults to 24 hours after modifyDateMin, if modifyDateMin is explicitly set.
* @opt_param string status Filters out all events that do not have the given status. Valid values: 'active', 'canceled'. Optional.
* @opt_param string publisherId Caret(^) delimited list of publisher IDs. Filters out all events that do not reference one of the given publishers IDs. Only used when under advertiser role. Optional.
* @return Google_Events
*/
public function listEvents($role, $roleId, $optParams = array()) {
$params = array('role' => $role, 'roleId' => $roleId);
$params = array_merge($params, $optParams);
$data = $this->__call('list', array($params));
if ($this->useObjects()) {
return new Google_Events($data);
} else {
return $data;
}
}
}
/**
* The "links" collection of methods.
* Typical usage is:
* <code>
* $ganService = new Google_GanService(...);
* $links = $ganService->links;
* </code>
*/
class Google_LinksServiceResource extends Google_ServiceResource {
/**
* Inserts a new link. (links.insert)
*
* @param string $role The role of the requester. Valid values: 'advertisers' or 'publishers'.
* @param string $roleId The ID of the requesting advertiser or publisher.
* @param Google_Link $postBody
* @param array $optParams Optional parameters.
* @return Google_Link
*/
public function insert($role, $roleId, Google_Link $postBody, $optParams = array()) {
$params = array('role' => $role, 'roleId' => $roleId, 'postBody' => $postBody);
$params = array_merge($params, $optParams);
$data = $this->__call('insert', array($params));
if ($this->useObjects()) {
return new Google_Link($data);
} else {
return $data;
}
}
/**
* Retrieves all links that match the query parameters. (links.list)
*
* @param string $role The role of the requester. Valid values: 'advertisers' or 'publishers'.
* @param string $roleId The ID of the requesting advertiser or publisher.
* @param array $optParams Optional parameters.
*
* @opt_param string linkType The type of the link.
* @opt_param string startDateMin The beginning of the start date range.
* @opt_param string assetSize The size of the given asset.
* @opt_param string relationshipStatus The status of the relationship.
* @opt_param string advertiserCategory The advertiser's primary vertical.
* @opt_param string maxResults Max number of items to return in this page. Optional. Defaults to 20.
* @opt_param string advertiserId Limits the resulting links to the ones belonging to the listed advertisers.
* @opt_param string pageToken The value of 'nextPageToken' from the previous page. Optional.
* @opt_param string startDateMax The end of the start date range.
* @opt_param string promotionType The promotion type.
* @opt_param string authorship The role of the author of the link.
* @return Google_Links
*/
public function listLinks($role, $roleId, $optParams = array()) {
$params = array('role' => $role, 'roleId' => $roleId);
$params = array_merge($params, $optParams);
$data = $this->__call('list', array($params));
if ($this->useObjects()) {
return new Google_Links($data);
} else {
return $data;
}
}
/**
* Retrieves data about a single link if the requesting advertiser/publisher has access to it.
* Advertisers can look up their own links. Publishers can look up visible links or links belonging
* to advertisers they are in a relationship with. (links.get)
*
* @param string $role The role of the requester. Valid values: 'advertisers' or 'publishers'.
* @param string $roleId The ID of the requesting advertiser or publisher.
* @param string $linkId The ID of the link to look up.
* @param array $optParams Optional parameters.
* @return Google_Link
*/
public function get($role, $roleId, $linkId, $optParams = array()) {
$params = array('role' => $role, 'roleId' => $roleId, 'linkId' => $linkId);
$params = array_merge($params, $optParams);
$data = $this->__call('get', array($params));
if ($this->useObjects()) {
return new Google_Link($data);
} else {
return $data;
}
}
}
/**
* The "publishers" collection of methods.
* Typical usage is:
* <code>
* $ganService = new Google_GanService(...);
* $publishers = $ganService->publishers;
* </code>
*/
class Google_PublishersServiceResource extends Google_ServiceResource {
/**
* Retrieves data about all publishers that the requesting advertiser/publisher has access to.
* (publishers.list)
*
* @param string $role The role of the requester. Valid values: 'advertisers' or 'publishers'.
* @param string $roleId The ID of the requesting advertiser or publisher.
* @param array $optParams Optional parameters.
*
* @opt_param string publisherCategory Caret(^) delimted list of publisher categories. Valid categories: (unclassified|community_and_content|shopping_and_promotion|loyalty_and_rewards|network|search_specialist|comparison_shopping|email). Filters out all publishers not in one of the given advertiser categories. Optional.
* @opt_param string relationshipStatus Filters out all publishers for which do not have the given relationship status with the requesting publisher.
* @opt_param double minSevenDayEpc Filters out all publishers that have a seven day EPC average lower than the given value (inclusive). Min value 0.0. Optional.
* @opt_param double minNinetyDayEpc Filters out all publishers that have a ninety day EPC average lower than the given value (inclusive). Min value: 0.0. Optional.
* @opt_param string pageToken The value of 'nextPageToken' from the previous page. Optional.
* @opt_param string maxResults Max number of items to return in this page. Optional. Defaults to 20.
* @opt_param int minPayoutRank A value between 1 and 4, where 1 represents the quartile of publishers with the lowest ranks and 4 represents the quartile of publishers with the highest ranks. Filters out all publishers with a lower rank than the given quartile. For example if a 2 was given only publishers with a payout rank of 25 or higher would be included. Optional.
* @return Google_Publishers
*/
public function listPublishers($role, $roleId, $optParams = array()) {
$params = array('role' => $role, 'roleId' => $roleId);
$params = array_merge($params, $optParams);
$data = $this->__call('list', array($params));
if ($this->useObjects()) {
return new Google_Publishers($data);
} else {
return $data;
}
}
/**
* Retrieves data about a single advertiser if that the requesting advertiser/publisher has access
* to it. Only advertisers can look up publishers. Publishers can request information about
* themselves by omitting the publisherId query parameter. (publishers.get)
*
* @param string $role The role of the requester. Valid values: 'advertisers' or 'publishers'.
* @param string $roleId The ID of the requesting advertiser or publisher.
* @param array $optParams Optional parameters.
*
* @opt_param string publisherId The ID of the publisher to look up. Optional.
* @return Google_Publisher
*/
public function get($role, $roleId, $optParams = array()) {
$params = array('role' => $role, 'roleId' => $roleId);
$params = array_merge($params, $optParams);
$data = $this->__call('get', array($params));
if ($this->useObjects()) {
return new Google_Publisher($data);
} else {
return $data;
}
}
}
/**
* Service definition for Google_Gan (v1beta1).
*
* <p>
* Lets you have programmatic access to your Google Affiliate Network data.
* </p>
*
* <p>
* For more information about this service, see the
* <a href="https://code.google.com/apis/gan/" target="_blank">API Documentation</a>
* </p>
*
* @author Google, Inc.
*/
class Google_GanService extends Google_Service {
public $advertisers;
public $ccOffers;
public $events;
public $links;
public $publishers;
/**
* Constructs the internal representation of the Gan service.
*
* @param Google_Client $client
*/
public function __construct(Google_Client $client) {
$this->servicePath = 'gan/v1beta1/';
$this->version = 'v1beta1';
$this->serviceName = 'gan';
$client->addService($this->serviceName, $this->version);
$this->advertisers = new Google_AdvertisersServiceResource($this, $this->serviceName, 'advertisers', json_decode('{"methods": {"list": {"scopes": ["https://www.googleapis.com/auth/gan", "https://www.googleapis.com/auth/gan.readonly"], "parameters": {"relationshipStatus": {"enum": ["approved", "available", "deactivated", "declined", "pending"], "type": "string", "location": "query"}, "minSevenDayEpc": {"type": "number", "location": "query", "format": "double"}, "advertiserCategory": {"type": "string", "location": "query"}, "minNinetyDayEpc": {"type": "number", "location": "query", "format": "double"}, "pageToken": {"type": "string", "location": "query"}, "role": {"required": true, "type": "string", "location": "path", "enum": ["advertisers", "publishers"]}, "maxResults": {"location": "query", "minimum": "0", "type": "integer", "maximum": "100", "format": "uint32"}, "roleId": {"required": true, "type": "string", "location": "path"}, "minPayoutRank": {"location": "query", "minimum": "1", "type": "integer", "maximum": "4", "format": "int32"}}, "id": "gan.advertisers.list", "httpMethod": "GET", "path": "{role}/{roleId}/advertisers", "response": {"$ref": "Advertisers"}}, "get": {"scopes": ["https://www.googleapis.com/auth/gan", "https://www.googleapis.com/auth/gan.readonly"], "parameters": {"advertiserId": {"type": "string", "location": "query"}, "roleId": {"required": true, "type": "string", "location": "path"}, "role": {"required": true, "type": "string", "location": "path", "enum": ["advertisers", "publishers"]}}, "id": "gan.advertisers.get", "httpMethod": "GET", "path": "{role}/{roleId}/advertiser", "response": {"$ref": "Advertiser"}}}}', true));
$this->ccOffers = new Google_CcOffersServiceResource($this, $this->serviceName, 'ccOffers', json_decode('{"methods": {"list": {"scopes": ["https://www.googleapis.com/auth/gan", "https://www.googleapis.com/auth/gan.readonly"], "parameters": {"advertiser": {"repeated": true, "type": "string", "location": "query"}, "projection": {"enum": ["full", "summary"], "type": "string", "location": "query"}, "publisher": {"required": true, "type": "string", "location": "path"}}, "id": "gan.ccOffers.list", "httpMethod": "GET", "path": "publishers/{publisher}/ccOffers", "response": {"$ref": "CcOffers"}}}}', true));
$this->events = new Google_EventsServiceResource($this, $this->serviceName, 'events', json_decode('{"methods": {"list": {"scopes": ["https://www.googleapis.com/auth/gan", "https://www.googleapis.com/auth/gan.readonly"], "parameters": {"orderId": {"type": "string", "location": "query"}, "sku": {"type": "string", "location": "query"}, "eventDateMax": {"type": "string", "location": "query"}, "type": {"enum": ["action", "charge", "transaction"], "type": "string", "location": "query"}, "roleId": {"required": true, "type": "string", "location": "path"}, "linkId": {"type": "string", "location": "query"}, "status": {"enum": ["active", "canceled"], "type": "string", "location": "query"}, "eventDateMin": {"type": "string", "location": "query"}, "memberId": {"type": "string", "location": "query"}, "maxResults": {"location": "query", "minimum": "0", "type": "integer", "maximum": "100", "format": "uint32"}, "advertiserId": {"type": "string", "location": "query"}, "pageToken": {"type": "string", "location": "query"}, "role": {"required": true, "type": "string", "location": "path", "enum": ["advertisers", "publishers"]}, "productCategory": {"type": "string", "location": "query"}, "chargeType": {"enum": ["credit", "debit", "monthly_minimum", "other", "slotting_fee", "tier_bonus"], "type": "string", "location": "query"}, "modifyDateMin": {"type": "string", "location": "query"}, "modifyDateMax": {"type": "string", "location": "query"}, "publisherId": {"type": "string", "location": "query"}}, "id": "gan.events.list", "httpMethod": "GET", "path": "{role}/{roleId}/events", "response": {"$ref": "Events"}}}}', true));
$this->links = new Google_LinksServiceResource($this, $this->serviceName, 'links', json_decode('{"methods": {"insert": {"scopes": ["https://www.googleapis.com/auth/gan"], "parameters": {"roleId": {"required": true, "type": "string", "location": "path"}, "role": {"required": true, "type": "string", "location": "path", "enum": ["advertisers", "publishers"]}}, "request": {"$ref": "Link"}, "response": {"$ref": "Link"}, "httpMethod": "POST", "path": "{role}/{roleId}/link", "id": "gan.links.insert"}, "list": {"scopes": ["https://www.googleapis.com/auth/gan", "https://www.googleapis.com/auth/gan.readonly"], "parameters": {"linkType": {"enum": ["banner", "text"], "type": "string", "location": "query"}, "startDateMin": {"type": "string", "location": "query"}, "assetSize": {"repeated": true, "type": "string", "location": "query"}, "roleId": {"required": true, "type": "string", "location": "path"}, "relationshipStatus": {"enum": ["approved", "available"], "type": "string", "location": "query"}, "maxResults": {"location": "query", "minimum": "0", "type": "integer", "maximum": "100", "format": "uint32"}, "advertiserCategory": {"repeated": true, "enum": ["apparel_accessories", "appliances_electronics", "auto_dealer", "automotive", "babies_kids", "blogs_personal_sites", "books_magazines", "computers", "dating", "department_stores", "education", "employment", "financial_credit_cards", "financial_other", "flowers_gifts", "grocery", "health_beauty", "home_garden", "hosting_domain", "internet_providers", "legal", "media_entertainment", "medical", "movies_games", "music", "nonprofit", "office_supplies", "online_games", "outdoor", "pets", "real_estate", "restaurants", "sport_fitness", "telecom", "ticketing", "toys_hobbies", "travel", "utilities", "wholesale_relationship", "wine_spirits"], "type": "string", "location": "query"}, "advertiserId": {"repeated": true, "type": "string", "location": "query", "format": "int64"}, "pageToken": {"type": "string", "location": "query"}, "role": {"required": true, "type": "string", "location": "path", "enum": ["advertisers", "publishers"]}, "startDateMax": {"type": "string", "location": "query"}, "promotionType": {"repeated": true, "enum": ["buy_get", "coupon", "free_gift", "free_gift_wrap", "free_shipping", "none", "ongoing", "percent_off", "price_cut", "product_promotion", "sale", "sweepstakes"], "type": "string", "location": "query"}, "authorship": {"enum": ["advertiser", "publisher"], "type": "string", "location": "query"}}, "id": "gan.links.list", "httpMethod": "GET", "path": "{role}/{roleId}/links", "response": {"$ref": "Links"}}, "get": {"scopes": ["https://www.googleapis.com/auth/gan", "https://www.googleapis.com/auth/gan.readonly"], "parameters": {"linkId": {"required": true, "type": "string", "location": "path", "format": "int64"}, "role": {"required": true, "type": "string", "location": "path", "enum": ["advertisers", "publishers"]}, "roleId": {"required": true, "type": "string", "location": "path"}}, "id": "gan.links.get", "httpMethod": "GET", "path": "{role}/{roleId}/link/{linkId}", "response": {"$ref": "Link"}}}}', true));
$this->publishers = new Google_PublishersServiceResource($this, $this->serviceName, 'publishers', json_decode('{"methods": {"list": {"scopes": ["https://www.googleapis.com/auth/gan", "https://www.googleapis.com/auth/gan.readonly"], "parameters": {"publisherCategory": {"type": "string", "location": "query"}, "relationshipStatus": {"enum": ["approved", "available", "deactivated", "declined", "pending"], "type": "string", "location": "query"}, "minSevenDayEpc": {"type": "number", "location": "query", "format": "double"}, "minNinetyDayEpc": {"type": "number", "location": "query", "format": "double"}, "pageToken": {"type": "string", "location": "query"}, "role": {"required": true, "type": "string", "location": "path", "enum": ["advertisers", "publishers"]}, "maxResults": {"location": "query", "minimum": "0", "type": "integer", "maximum": "100", "format": "uint32"}, "roleId": {"required": true, "type": "string", "location": "path"}, "minPayoutRank": {"location": "query", "minimum": "1", "type": "integer", "maximum": "4", "format": "int32"}}, "id": "gan.publishers.list", "httpMethod": "GET", "path": "{role}/{roleId}/publishers", "response": {"$ref": "Publishers"}}, "get": {"scopes": ["https://www.googleapis.com/auth/gan", "https://www.googleapis.com/auth/gan.readonly"], "parameters": {"role": {"required": true, "type": "string", "location": "path", "enum": ["advertisers", "publishers"]}, "publisherId": {"type": "string", "location": "query"}, "roleId": {"required": true, "type": "string", "location": "path"}}, "id": "gan.publishers.get", "httpMethod": "GET", "path": "{role}/{roleId}/publisher", "response": {"$ref": "Publisher"}}}}', true));
}
}
class Google_Advertiser extends Google_Model {
public $category;
public $contactEmail;
public $kind;
public $siteUrl;
public $contactPhone;
public $description;
public $payoutRank;
public $defaultLinkId;
protected $__epcSevenDayAverageType = 'Google_Money';
protected $__epcSevenDayAverageDataType = '';
public $epcSevenDayAverage;
public $commissionDuration;
public $status;
protected $__epcNinetyDayAverageType = 'Google_Money';
protected $__epcNinetyDayAverageDataType = '';
public $epcNinetyDayAverage;
public $allowPublisherCreatedLinks;
protected $__itemType = 'Google_Advertiser';
protected $__itemDataType = '';
public $item;
public $joinDate;
public $logoUrl;
public $id;
public $productFeedsEnabled;
public $name;
public function setCategory($category) {
$this->category = $category;
}
public function getCategory() {
return $this->category;
}
public function setContactEmail($contactEmail) {
$this->contactEmail = $contactEmail;
}
public function getContactEmail() {
return $this->contactEmail;
}
public function setKind($kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setSiteUrl($siteUrl) {
$this->siteUrl = $siteUrl;
}
public function getSiteUrl() {
return $this->siteUrl;
}
public function setContactPhone($contactPhone) {
$this->contactPhone = $contactPhone;
}
public function getContactPhone() {
return $this->contactPhone;
}
public function setDescription($description) {
$this->description = $description;
}
public function getDescription() {
return $this->description;
}
public function setPayoutRank($payoutRank) {
$this->payoutRank = $payoutRank;
}
public function getPayoutRank() {
return $this->payoutRank;
}
public function setDefaultLinkId($defaultLinkId) {
$this->defaultLinkId = $defaultLinkId;
}
public function getDefaultLinkId() {
return $this->defaultLinkId;
}
public function setEpcSevenDayAverage(Google_Money $epcSevenDayAverage) {
$this->epcSevenDayAverage = $epcSevenDayAverage;
}
public function getEpcSevenDayAverage() {
return $this->epcSevenDayAverage;
}
public function setCommissionDuration($commissionDuration) {
$this->commissionDuration = $commissionDuration;
}
public function getCommissionDuration() {
return $this->commissionDuration;
}
public function setStatus($status) {
$this->status = $status;
}
public function getStatus() {
return $this->status;
}
public function setEpcNinetyDayAverage(Google_Money $epcNinetyDayAverage) {
$this->epcNinetyDayAverage = $epcNinetyDayAverage;
}
public function getEpcNinetyDayAverage() {
return $this->epcNinetyDayAverage;
}
public function setAllowPublisherCreatedLinks($allowPublisherCreatedLinks) {
$this->allowPublisherCreatedLinks = $allowPublisherCreatedLinks;
}
public function getAllowPublisherCreatedLinks() {
return $this->allowPublisherCreatedLinks;
}
public function setItem(Google_Advertiser $item) {
$this->item = $item;
}
public function getItem() {
return $this->item;
}
public function setJoinDate($joinDate) {
$this->joinDate = $joinDate;
}
public function getJoinDate() {
return $this->joinDate;
}
public function setLogoUrl($logoUrl) {
$this->logoUrl = $logoUrl;
}
public function getLogoUrl() {
return $this->logoUrl;
}
public function setId($id) {
$this->id = $id;
}
public function getId() {
return $this->id;
}
public function setProductFeedsEnabled($productFeedsEnabled) {
$this->productFeedsEnabled = $productFeedsEnabled;
}
public function getProductFeedsEnabled() {
return $this->productFeedsEnabled;
}
public function setName($name) {
$this->name = $name;
}
public function getName() {
return $this->name;
}
}
class Google_Advertisers extends Google_Model {
public $nextPageToken;
protected $__itemsType = 'Google_Advertiser';
protected $__itemsDataType = 'array';
public $items;
public $kind;
public function setNextPageToken($nextPageToken) {
$this->nextPageToken = $nextPageToken;
}
public function getNextPageToken() {
return $this->nextPageToken;
}
public function setItems($items) {
$this->assertIsArray($items, 'Google_Advertiser', __METHOD__);
$this->items = $items;
}
public function getItems() {
return $this->items;
}
public function setKind($kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
}
class Google_CcOffer extends Google_Model {
public $luggageInsurance;
public $creditLimitMin;
public $cardName;
public $creditLimitMax;
public $gracePeriodDisplay;
public $offerId;
public $rewardUnit;
public $minPurchaseRate;
public $cardBenefits;
protected $__rewardsType = 'Google_CcOfferRewards';
protected $__rewardsDataType = 'array';
public $rewards;
public $offersImmediateCashReward;
public $travelInsurance;
public $returnedPaymentFee;
public $kind;
public $issuer;
public $maxPurchaseRate;
public $minimumFinanceCharge;
public $existingCustomerOnly;
public $annualFeeDisplay;
public $initialSetupAndProcessingFee;
public $issuerId;
public $purchaseRateAdditionalDetails;
public $prohibitedCategories;
public $fraudLiability;
public $cashAdvanceTerms;
public $landingPageUrl;
public $introCashAdvanceTerms;
public $rewardsExpire;
public $introPurchaseTerms;
protected $__defaultFeesType = 'Google_CcOfferDefaultFees';
protected $__defaultFeesDataType = 'array';
public $defaultFees;
public $extendedWarranty;
public $emergencyInsurance;
public $firstYearAnnualFee;
public $trackingUrl;
public $latePaymentFee;
public $overLimitFee;
public $cardType;
public $approvedCategories;
public $rewardPartner;
public $introBalanceTransferTerms;
public $foreignCurrencyTransactionFee;
public $annualFee;
public $issuerWebsite;
public $variableRatesUpdateFrequency;
public $carRentalInsurance;
public $additionalCardBenefits;
public $ageMinimum;
public $balanceComputationMethod;
public $aprDisplay;
public $additionalCardHolderFee;
public $variableRatesLastUpdated;
public $network;
public $purchaseRateType;
public $statementCopyFee;
public $rewardsHaveBlackoutDates;
public $creditRatingDisplay;
public $flightAccidentInsurance;
public $annualRewardMaximum;
public $balanceTransferTerms;
protected $__bonusRewardsType = 'Google_CcOfferBonusRewards';
protected $__bonusRewardsDataType = 'array';
public $bonusRewards;
public $imageUrl;
public $ageMinimumDetails;
public $disclaimer;
public function setLuggageInsurance($luggageInsurance) {
$this->luggageInsurance = $luggageInsurance;
}
public function getLuggageInsurance() {
return $this->luggageInsurance;
}
public function setCreditLimitMin($creditLimitMin) {
$this->creditLimitMin = $creditLimitMin;
}
public function getCreditLimitMin() {
return $this->creditLimitMin;
}
public function setCardName($cardName) {
$this->cardName = $cardName;
}
public function getCardName() {
return $this->cardName;
}
public function setCreditLimitMax($creditLimitMax) {
$this->creditLimitMax = $creditLimitMax;
}
public function getCreditLimitMax() {
return $this->creditLimitMax;
}
public function setGracePeriodDisplay($gracePeriodDisplay) {
$this->gracePeriodDisplay = $gracePeriodDisplay;
}
public function getGracePeriodDisplay() {
return $this->gracePeriodDisplay;
}
public function setOfferId($offerId) {
$this->offerId = $offerId;
}
public function getOfferId() {
return $this->offerId;
}
public function setRewardUnit($rewardUnit) {
$this->rewardUnit = $rewardUnit;
}
public function getRewardUnit() {
return $this->rewardUnit;
}
public function setMinPurchaseRate($minPurchaseRate) {
$this->minPurchaseRate = $minPurchaseRate;
}
public function getMinPurchaseRate() {
return $this->minPurchaseRate;
}
public function setCardBenefits($cardBenefits) {
$this->cardBenefits = $cardBenefits;
}
public function getCardBenefits() {
return $this->cardBenefits;
}
public function setRewards($rewards) {
$this->assertIsArray($rewards, 'Google_CcOfferRewards', __METHOD__);
$this->rewards = $rewards;
}
public function getRewards() {
return $this->rewards;
}
public function setOffersImmediateCashReward($offersImmediateCashReward) {
$this->offersImmediateCashReward = $offersImmediateCashReward;
}
public function getOffersImmediateCashReward() {
return $this->offersImmediateCashReward;
}
public function setTravelInsurance($travelInsurance) {
$this->travelInsurance = $travelInsurance;
}
public function getTravelInsurance() {
return $this->travelInsurance;
}
public function setReturnedPaymentFee($returnedPaymentFee) {
$this->returnedPaymentFee = $returnedPaymentFee;
}
public function getReturnedPaymentFee() {
return $this->returnedPaymentFee;
}
public function setKind($kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setIssuer($issuer) {
$this->issuer = $issuer;
}
public function getIssuer() {
return $this->issuer;
}
public function setMaxPurchaseRate($maxPurchaseRate) {
$this->maxPurchaseRate = $maxPurchaseRate;
}
public function getMaxPurchaseRate() {
return $this->maxPurchaseRate;
}
public function setMinimumFinanceCharge($minimumFinanceCharge) {
$this->minimumFinanceCharge = $minimumFinanceCharge;
}
public function getMinimumFinanceCharge() {
return $this->minimumFinanceCharge;
}
public function setExistingCustomerOnly($existingCustomerOnly) {
$this->existingCustomerOnly = $existingCustomerOnly;
}
public function getExistingCustomerOnly() {
return $this->existingCustomerOnly;
}
public function setAnnualFeeDisplay($annualFeeDisplay) {
$this->annualFeeDisplay = $annualFeeDisplay;
}
public function getAnnualFeeDisplay() {
return $this->annualFeeDisplay;
}
public function setInitialSetupAndProcessingFee($initialSetupAndProcessingFee) {
$this->initialSetupAndProcessingFee = $initialSetupAndProcessingFee;
}
public function getInitialSetupAndProcessingFee() {
return $this->initialSetupAndProcessingFee;
}
public function setIssuerId($issuerId) {
$this->issuerId = $issuerId;
}
public function getIssuerId() {
return $this->issuerId;
}
public function setPurchaseRateAdditionalDetails($purchaseRateAdditionalDetails) {
$this->purchaseRateAdditionalDetails = $purchaseRateAdditionalDetails;
}
public function getPurchaseRateAdditionalDetails() {
return $this->purchaseRateAdditionalDetails;
}
public function setProhibitedCategories($prohibitedCategories) {
$this->prohibitedCategories = $prohibitedCategories;
}
public function getProhibitedCategories() {
return $this->prohibitedCategories;
}
public function setFraudLiability($fraudLiability) {
$this->fraudLiability = $fraudLiability;
}
public function getFraudLiability() {
return $this->fraudLiability;
}
public function setCashAdvanceTerms($cashAdvanceTerms) {
$this->cashAdvanceTerms = $cashAdvanceTerms;
}
public function getCashAdvanceTerms() {
return $this->cashAdvanceTerms;
}
public function setLandingPageUrl($landingPageUrl) {
$this->landingPageUrl = $landingPageUrl;
}
public function getLandingPageUrl() {
return $this->landingPageUrl;
}
public function setIntroCashAdvanceTerms($introCashAdvanceTerms) {
$this->introCashAdvanceTerms = $introCashAdvanceTerms;
}
public function getIntroCashAdvanceTerms() {
return $this->introCashAdvanceTerms;
}
public function setRewardsExpire($rewardsExpire) {
$this->rewardsExpire = $rewardsExpire;
}
public function getRewardsExpire() {
return $this->rewardsExpire;
}
public function setIntroPurchaseTerms($introPurchaseTerms) {
$this->introPurchaseTerms = $introPurchaseTerms;
}
public function getIntroPurchaseTerms() {
return $this->introPurchaseTerms;
}
public function setDefaultFees($defaultFees) {
$this->assertIsArray($defaultFees, 'Google_CcOfferDefaultFees', __METHOD__);
$this->defaultFees = $defaultFees;
}
public function getDefaultFees() {
return $this->defaultFees;
}
public function setExtendedWarranty($extendedWarranty) {
$this->extendedWarranty = $extendedWarranty;
}
public function getExtendedWarranty() {
return $this->extendedWarranty;
}
public function setEmergencyInsurance($emergencyInsurance) {
$this->emergencyInsurance = $emergencyInsurance;
}
public function getEmergencyInsurance() {
return $this->emergencyInsurance;
}
public function setFirstYearAnnualFee($firstYearAnnualFee) {
$this->firstYearAnnualFee = $firstYearAnnualFee;
}
public function getFirstYearAnnualFee() {
return $this->firstYearAnnualFee;
}
public function setTrackingUrl($trackingUrl) {
$this->trackingUrl = $trackingUrl;
}
public function getTrackingUrl() {
return $this->trackingUrl;
}
public function setLatePaymentFee($latePaymentFee) {
$this->latePaymentFee = $latePaymentFee;
}
public function getLatePaymentFee() {
return $this->latePaymentFee;
}
public function setOverLimitFee($overLimitFee) {
$this->overLimitFee = $overLimitFee;
}
public function getOverLimitFee() {
return $this->overLimitFee;
}
public function setCardType($cardType) {
$this->cardType = $cardType;
}
public function getCardType() {
return $this->cardType;
}
public function setApprovedCategories($approvedCategories) {
$this->approvedCategories = $approvedCategories;
}
public function getApprovedCategories() {
return $this->approvedCategories;
}
public function setRewardPartner($rewardPartner) {
$this->rewardPartner = $rewardPartner;
}
public function getRewardPartner() {
return $this->rewardPartner;
}
public function setIntroBalanceTransferTerms($introBalanceTransferTerms) {
$this->introBalanceTransferTerms = $introBalanceTransferTerms;
}
public function getIntroBalanceTransferTerms() {
return $this->introBalanceTransferTerms;
}
public function setForeignCurrencyTransactionFee($foreignCurrencyTransactionFee) {
$this->foreignCurrencyTransactionFee = $foreignCurrencyTransactionFee;
}
public function getForeignCurrencyTransactionFee() {
return $this->foreignCurrencyTransactionFee;
}
public function setAnnualFee($annualFee) {
$this->annualFee = $annualFee;
}
public function getAnnualFee() {
return $this->annualFee;
}
public function setIssuerWebsite($issuerWebsite) {
$this->issuerWebsite = $issuerWebsite;
}
public function getIssuerWebsite() {
return $this->issuerWebsite;
}
public function setVariableRatesUpdateFrequency($variableRatesUpdateFrequency) {
$this->variableRatesUpdateFrequency = $variableRatesUpdateFrequency;
}
public function getVariableRatesUpdateFrequency() {
return $this->variableRatesUpdateFrequency;
}
public function setCarRentalInsurance($carRentalInsurance) {
$this->carRentalInsurance = $carRentalInsurance;
}
public function getCarRentalInsurance() {
return $this->carRentalInsurance;
}
public function setAdditionalCardBenefits($additionalCardBenefits) {
$this->additionalCardBenefits = $additionalCardBenefits;
}
public function getAdditionalCardBenefits() {
return $this->additionalCardBenefits;
}
public function setAgeMinimum($ageMinimum) {
$this->ageMinimum = $ageMinimum;
}
public function getAgeMinimum() {
return $this->ageMinimum;
}
public function setBalanceComputationMethod($balanceComputationMethod) {
$this->balanceComputationMethod = $balanceComputationMethod;
}
public function getBalanceComputationMethod() {
return $this->balanceComputationMethod;
}
public function setAprDisplay($aprDisplay) {
$this->aprDisplay = $aprDisplay;
}
public function getAprDisplay() {
return $this->aprDisplay;
}
public function setAdditionalCardHolderFee($additionalCardHolderFee) {
$this->additionalCardHolderFee = $additionalCardHolderFee;
}
public function getAdditionalCardHolderFee() {
return $this->additionalCardHolderFee;
}
public function setVariableRatesLastUpdated($variableRatesLastUpdated) {
$this->variableRatesLastUpdated = $variableRatesLastUpdated;
}
public function getVariableRatesLastUpdated() {
return $this->variableRatesLastUpdated;
}
public function setNetwork($network) {
$this->network = $network;
}
public function getNetwork() {
return $this->network;
}
public function setPurchaseRateType($purchaseRateType) {
$this->purchaseRateType = $purchaseRateType;
}
public function getPurchaseRateType() {
return $this->purchaseRateType;
}
public function setStatementCopyFee($statementCopyFee) {
$this->statementCopyFee = $statementCopyFee;
}
public function getStatementCopyFee() {
return $this->statementCopyFee;
}
public function setRewardsHaveBlackoutDates($rewardsHaveBlackoutDates) {
$this->rewardsHaveBlackoutDates = $rewardsHaveBlackoutDates;
}
public function getRewardsHaveBlackoutDates() {
return $this->rewardsHaveBlackoutDates;
}
public function setCreditRatingDisplay($creditRatingDisplay) {
$this->creditRatingDisplay = $creditRatingDisplay;
}
public function getCreditRatingDisplay() {
return $this->creditRatingDisplay;
}
public function setFlightAccidentInsurance($flightAccidentInsurance) {
$this->flightAccidentInsurance = $flightAccidentInsurance;
}
public function getFlightAccidentInsurance() {
return $this->flightAccidentInsurance;
}
public function setAnnualRewardMaximum($annualRewardMaximum) {
$this->annualRewardMaximum = $annualRewardMaximum;
}
public function getAnnualRewardMaximum() {
return $this->annualRewardMaximum;
}
public function setBalanceTransferTerms($balanceTransferTerms) {
$this->balanceTransferTerms = $balanceTransferTerms;
}
public function getBalanceTransferTerms() {
return $this->balanceTransferTerms;
}
public function setBonusRewards($bonusRewards) {
$this->assertIsArray($bonusRewards, 'Google_CcOfferBonusRewards', __METHOD__);
$this->bonusRewards = $bonusRewards;
}
public function getBonusRewards() {
return $this->bonusRewards;
}
public function setImageUrl($imageUrl) {
$this->imageUrl = $imageUrl;
}
public function getImageUrl() {
return $this->imageUrl;
}
public function setAgeMinimumDetails($ageMinimumDetails) {
$this->ageMinimumDetails = $ageMinimumDetails;
}
public function getAgeMinimumDetails() {
return $this->ageMinimumDetails;
}
public function setDisclaimer($disclaimer) {
$this->disclaimer = $disclaimer;
}
public function getDisclaimer() {
return $this->disclaimer;
}
}
class Google_CcOfferBonusRewards extends Google_Model {
public $amount;
public $details;
public function setAmount($amount) {
$this->amount = $amount;
}
public function getAmount() {
return $this->amount;
}
public function setDetails($details) {
$this->details = $details;
}
public function getDetails() {
return $this->details;
}
}
class Google_CcOfferDefaultFees extends Google_Model {
public $category;
public $maxRate;
public $minRate;
public $rateType;
public function setCategory($category) {
$this->category = $category;
}
public function getCategory() {
return $this->category;
}
public function setMaxRate($maxRate) {
$this->maxRate = $maxRate;
}
public function getMaxRate() {
return $this->maxRate;
}
public function setMinRate($minRate) {
$this->minRate = $minRate;
}
public function getMinRate() {
return $this->minRate;
}
public function setRateType($rateType) {
$this->rateType = $rateType;
}
public function getRateType() {
return $this->rateType;
}
}
class Google_CcOfferRewards extends Google_Model {
public $category;
public $minRewardTier;
public $maxRewardTier;
public $expirationMonths;
public $amount;
public $additionalDetails;
public function setCategory($category) {
$this->category = $category;
}
public function getCategory() {
return $this->category;
}
public function setMinRewardTier($minRewardTier) {
$this->minRewardTier = $minRewardTier;
}
public function getMinRewardTier() {
return $this->minRewardTier;
}
public function setMaxRewardTier($maxRewardTier) {
$this->maxRewardTier = $maxRewardTier;
}
public function getMaxRewardTier() {
return $this->maxRewardTier;
}
public function setExpirationMonths($expirationMonths) {
$this->expirationMonths = $expirationMonths;
}
public function getExpirationMonths() {
return $this->expirationMonths;
}
public function setAmount($amount) {
$this->amount = $amount;
}
public function getAmount() {
return $this->amount;
}
public function setAdditionalDetails($additionalDetails) {
$this->additionalDetails = $additionalDetails;
}
public function getAdditionalDetails() {
return $this->additionalDetails;
}
}
class Google_CcOffers extends Google_Model {
protected $__itemsType = 'Google_CcOffer';
protected $__itemsDataType = 'array';
public $items;
public $kind;
public function setItems($items) {
$this->assertIsArray($items, 'Google_CcOffer', __METHOD__);
$this->items = $items;
}
public function getItems() {
return $this->items;
}
public function setKind($kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
}
class Google_Event extends Google_Model {
protected $__networkFeeType = 'Google_Money';
protected $__networkFeeDataType = '';
public $networkFee;
public $advertiserName;
public $kind;
public $modifyDate;
public $type;
public $orderId;
public $publisherName;
public $memberId;
public $advertiserId;
public $status;
public $chargeId;
protected $__productsType = 'Google_EventProducts';
protected $__productsDataType = 'array';
public $products;
protected $__earningsType = 'Google_Money';
protected $__earningsDataType = '';
public $earnings;
public $chargeType;
protected $__publisherFeeType = 'Google_Money';
protected $__publisherFeeDataType = '';
public $publisherFee;
protected $__commissionableSalesType = 'Google_Money';
protected $__commissionableSalesDataType = '';
public $commissionableSales;
public $publisherId;
public $eventDate;
public function setNetworkFee(Google_Money $networkFee) {
$this->networkFee = $networkFee;
}
public function getNetworkFee() {
return $this->networkFee;
}
public function setAdvertiserName($advertiserName) {
$this->advertiserName = $advertiserName;
}
public function getAdvertiserName() {
return $this->advertiserName;
}
public function setKind($kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setModifyDate($modifyDate) {
$this->modifyDate = $modifyDate;
}
public function getModifyDate() {
return $this->modifyDate;
}
public function setType($type) {
$this->type = $type;
}
public function getType() {
return $this->type;
}
public function setOrderId($orderId) {
$this->orderId = $orderId;
}
public function getOrderId() {
return $this->orderId;
}
public function setPublisherName($publisherName) {
$this->publisherName = $publisherName;
}
public function getPublisherName() {
return $this->publisherName;
}
public function setMemberId($memberId) {
$this->memberId = $memberId;
}
public function getMemberId() {
return $this->memberId;
}
public function setAdvertiserId($advertiserId) {
$this->advertiserId = $advertiserId;
}
public function getAdvertiserId() {
return $this->advertiserId;
}
public function setStatus($status) {
$this->status = $status;
}
public function getStatus() {
return $this->status;
}
public function setChargeId($chargeId) {
$this->chargeId = $chargeId;
}
public function getChargeId() {
return $this->chargeId;
}
public function setProducts($products) {
$this->assertIsArray($products, 'Google_EventProducts', __METHOD__);
$this->products = $products;
}
public function getProducts() {
return $this->products;
}
public function setEarnings(Google_Money $earnings) {
$this->earnings = $earnings;
}
public function getEarnings() {
return $this->earnings;
}
public function setChargeType($chargeType) {
$this->chargeType = $chargeType;
}
public function getChargeType() {
return $this->chargeType;
}
public function setPublisherFee(Google_Money $publisherFee) {
$this->publisherFee = $publisherFee;
}
public function getPublisherFee() {
return $this->publisherFee;
}
public function setCommissionableSales(Google_Money $commissionableSales) {
$this->commissionableSales = $commissionableSales;
}
public function getCommissionableSales() {
return $this->commissionableSales;
}
public function setPublisherId($publisherId) {
$this->publisherId = $publisherId;
}
public function getPublisherId() {
return $this->publisherId;
}
public function setEventDate($eventDate) {
$this->eventDate = $eventDate;
}
public function getEventDate() {
return $this->eventDate;
}
}
class Google_EventProducts extends Google_Model {
protected $__networkFeeType = 'Google_Money';
protected $__networkFeeDataType = '';
public $networkFee;
public $sku;
public $categoryName;
public $skuName;
protected $__publisherFeeType = 'Google_Money';
protected $__publisherFeeDataType = '';
public $publisherFee;
protected $__earningsType = 'Google_Money';
protected $__earningsDataType = '';
public $earnings;
protected $__unitPriceType = 'Google_Money';
protected $__unitPriceDataType = '';
public $unitPrice;
public $categoryId;
public $quantity;
public function setNetworkFee(Google_Money $networkFee) {
$this->networkFee = $networkFee;
}
public function getNetworkFee() {
return $this->networkFee;
}
public function setSku($sku) {
$this->sku = $sku;
}
public function getSku() {
return $this->sku;
}
public function setCategoryName($categoryName) {
$this->categoryName = $categoryName;
}
public function getCategoryName() {
return $this->categoryName;
}
public function setSkuName($skuName) {
$this->skuName = $skuName;
}
public function getSkuName() {
return $this->skuName;
}
public function setPublisherFee(Google_Money $publisherFee) {
$this->publisherFee = $publisherFee;
}
public function getPublisherFee() {
return $this->publisherFee;
}
public function setEarnings(Google_Money $earnings) {
$this->earnings = $earnings;
}
public function getEarnings() {
return $this->earnings;
}
public function setUnitPrice(Google_Money $unitPrice) {
$this->unitPrice = $unitPrice;
}
public function getUnitPrice() {
return $this->unitPrice;
}
public function setCategoryId($categoryId) {
$this->categoryId = $categoryId;
}
public function getCategoryId() {
return $this->categoryId;
}
public function setQuantity($quantity) {
$this->quantity = $quantity;
}
public function getQuantity() {
return $this->quantity;
}
}
class Google_Events extends Google_Model {
public $nextPageToken;
protected $__itemsType = 'Google_Event';
protected $__itemsDataType = 'array';
public $items;
public $kind;
public function setNextPageToken($nextPageToken) {
$this->nextPageToken = $nextPageToken;
}
public function getNextPageToken() {
return $this->nextPageToken;
}
public function setItems($items) {
$this->assertIsArray($items, 'Google_Event', __METHOD__);
$this->items = $items;
}
public function getItems() {
return $this->items;
}
public function setKind($kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
}
class Google_Link extends Google_Model {
public $isActive;
public $linkType;
public $kind;
public $endDate;
public $description;
public $name;
public $startDate;
public $createDate;
public $imageAltText;
public $id;
public $advertiserId;
public $impressionTrackingUrl;
public $promotionType;
public $duration;
public $authorship;
public $availability;
public $clickTrackingUrl;
public $destinationUrl;
public function setIsActive($isActive) {
$this->isActive = $isActive;
}
public function getIsActive() {
return $this->isActive;
}
public function setLinkType($linkType) {
$this->linkType = $linkType;
}
public function getLinkType() {
return $this->linkType;
}
public function setKind($kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setEndDate($endDate) {
$this->endDate = $endDate;
}
public function getEndDate() {
return $this->endDate;
}
public function setDescription($description) {
$this->description = $description;
}
public function getDescription() {
return $this->description;
}
public function setName($name) {
$this->name = $name;
}
public function getName() {
return $this->name;
}
public function setStartDate($startDate) {
$this->startDate = $startDate;
}
public function getStartDate() {
return $this->startDate;
}
public function setCreateDate($createDate) {
$this->createDate = $createDate;
}
public function getCreateDate() {
return $this->createDate;
}
public function setImageAltText($imageAltText) {
$this->imageAltText = $imageAltText;
}
public function getImageAltText() {
return $this->imageAltText;
}
public function setId($id) {
$this->id = $id;
}
public function getId() {
return $this->id;
}
public function setAdvertiserId($advertiserId) {
$this->advertiserId = $advertiserId;
}
public function getAdvertiserId() {
return $this->advertiserId;
}
public function setImpressionTrackingUrl($impressionTrackingUrl) {
$this->impressionTrackingUrl = $impressionTrackingUrl;
}
public function getImpressionTrackingUrl() {
return $this->impressionTrackingUrl;
}
public function setPromotionType($promotionType) {
$this->promotionType = $promotionType;
}
public function getPromotionType() {
return $this->promotionType;
}
public function setDuration($duration) {
$this->duration = $duration;
}
public function getDuration() {
return $this->duration;
}
public function setAuthorship($authorship) {
$this->authorship = $authorship;
}
public function getAuthorship() {
return $this->authorship;
}
public function setAvailability($availability) {
$this->availability = $availability;
}
public function getAvailability() {
return $this->availability;
}
public function setClickTrackingUrl($clickTrackingUrl) {
$this->clickTrackingUrl = $clickTrackingUrl;
}
public function getClickTrackingUrl() {
return $this->clickTrackingUrl;
}
public function setDestinationUrl($destinationUrl) {
$this->destinationUrl = $destinationUrl;
}
public function getDestinationUrl() {
return $this->destinationUrl;
}
}
class Google_Links extends Google_Model {
public $nextPageToken;
protected $__itemsType = 'Google_Link';
protected $__itemsDataType = 'array';
public $items;
public $kind;
public function setNextPageToken($nextPageToken) {
$this->nextPageToken = $nextPageToken;
}
public function getNextPageToken() {
return $this->nextPageToken;
}
public function setItems($items) {
$this->assertIsArray($items, 'Google_Link', __METHOD__);
$this->items = $items;
}
public function getItems() {
return $this->items;
}
public function setKind($kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
}
class Google_Money extends Google_Model {
public $amount;
public $currencyCode;
public function setAmount($amount) {
$this->amount = $amount;
}
public function getAmount() {
return $this->amount;
}
public function setCurrencyCode($currencyCode) {
$this->currencyCode = $currencyCode;
}
public function getCurrencyCode() {
return $this->currencyCode;
}
}
class Google_Publisher extends Google_Model {
public $status;
public $kind;
public $name;
public $classification;
protected $__epcSevenDayAverageType = 'Google_Money';
protected $__epcSevenDayAverageDataType = '';
public $epcSevenDayAverage;
public $payoutRank;
protected $__epcNinetyDayAverageType = 'Google_Money';
protected $__epcNinetyDayAverageDataType = '';
public $epcNinetyDayAverage;
protected $__itemType = 'Google_Publisher';
protected $__itemDataType = '';
public $item;
public $joinDate;
public $sites;
public $id;
public function setStatus($status) {
$this->status = $status;
}
public function getStatus() {
return $this->status;
}
public function setKind($kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setName($name) {
$this->name = $name;
}
public function getName() {
return $this->name;
}
public function setClassification($classification) {
$this->classification = $classification;
}
public function getClassification() {
return $this->classification;
}
public function setEpcSevenDayAverage(Google_Money $epcSevenDayAverage) {
$this->epcSevenDayAverage = $epcSevenDayAverage;
}
public function getEpcSevenDayAverage() {
return $this->epcSevenDayAverage;
}
public function setPayoutRank($payoutRank) {
$this->payoutRank = $payoutRank;
}
public function getPayoutRank() {
return $this->payoutRank;
}
public function setEpcNinetyDayAverage(Google_Money $epcNinetyDayAverage) {
$this->epcNinetyDayAverage = $epcNinetyDayAverage;
}
public function getEpcNinetyDayAverage() {
return $this->epcNinetyDayAverage;
}
public function setItem(Google_Publisher $item) {
$this->item = $item;
}
public function getItem() {
return $this->item;
}
public function setJoinDate($joinDate) {
$this->joinDate = $joinDate;
}
public function getJoinDate() {
return $this->joinDate;
}
public function setSites($sites) {
$this->sites = $sites;
}
public function getSites() {
return $this->sites;
}
public function setId($id) {
$this->id = $id;
}
public function getId() {
return $this->id;
}
}
class Google_Publishers extends Google_Model {
public $nextPageToken;
protected $__itemsType = 'Google_Publisher';
protected $__itemsDataType = 'array';
public $items;
public $kind;
public function setNextPageToken($nextPageToken) {
$this->nextPageToken = $nextPageToken;
}
public function getNextPageToken() {
return $this->nextPageToken;
}
public function setItems($items) {
$this->assertIsArray($items, 'Google_Publisher', __METHOD__);
$this->items = $items;
}
public function getItems() {
return $this->items;
}
public function setKind($kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
}