apiBooksService.php 39.7 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
<?php
/*
 * Copyright (c) 2010 Google Inc.
 *
 * 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.
 */

require_once 'service/apiModel.php';
require_once 'service/apiService.php';
require_once 'service/apiServiceRequest.php';


  /**
   * The "bookshelves" collection of methods.
   * Typical usage is:
   *  <code>
   *   $booksService = new apiBooksService(...);
   *   $bookshelves = $booksService->bookshelves;
   *  </code>
   */
  class BookshelvesServiceResource extends apiServiceResource {


    /**
     * Retrieves a list of public bookshelves for the specified user. (bookshelves.list)
     *
     * @param string $userId Id of user for whom to retrieve bookshelves.
     * @param array $optParams Optional parameters. Valid optional parameters are listed below.
     *
     * @opt_param string country ISO-3166-1 code to override the IP-based location.
     * @opt_param string source String to identify the originator of this request.
     * @return Bookshelves
     */
    public function listBookshelves($userId, $optParams = array()) {
      $params = array('userId' => $userId);
      $params = array_merge($params, $optParams);
      $data = $this->__call('list', array($params));
      if ($this->useObjects()) {
        return new Bookshelves($data);
      } else {
        return $data;
      }
    }
    /**
     * Retrieves a specific bookshelf for the specified user. (bookshelves.get)
     *
     * @param string $userId Id of user for whom to retrieve bookshelves.
     * @param string $shelf Id of bookshelf to retrieve.
     * @param array $optParams Optional parameters. Valid optional parameters are listed below.
     *
     * @opt_param string country ISO-3166-1 code to override the IP-based location.
     * @opt_param string source String to identify the originator of this request.
     * @return Bookshelf
     */
    public function get($userId, $shelf, $optParams = array()) {
      $params = array('userId' => $userId, 'shelf' => $shelf);
      $params = array_merge($params, $optParams);
      $data = $this->__call('get', array($params));
      if ($this->useObjects()) {
        return new Bookshelf($data);
      } else {
        return $data;
      }
    }
  }


  /**
   * The "volumes" collection of methods.
   * Typical usage is:
   *  <code>
   *   $booksService = new apiBooksService(...);
   *   $volumes = $booksService->volumes;
   *  </code>
   */
  class BookshelvesVolumesServiceResource extends apiServiceResource {


    /**
     * Retrieves volumes in a specific bookshelf for the specified user. (volumes.list)
     *
     * @param string $userId Id of user for whom to retrieve bookshelf volumes.
     * @param string $shelf Id of bookshelf to retrieve volumes.
     * @param array $optParams Optional parameters. Valid optional parameters are listed below.
     *
     * @opt_param string country ISO-3166-1 code to override the IP-based location.
     * @opt_param string source String to identify the originator of this request.
     * @return Volumes
     */
    public function listBookshelvesVolumes($userId, $shelf, $optParams = array()) {
      $params = array('userId' => $userId, 'shelf' => $shelf);
      $params = array_merge($params, $optParams);
      $data = $this->__call('list', array($params));
      if ($this->useObjects()) {
        return new Volumes($data);
      } else {
        return $data;
      }
    }
  }

  /**
   * The "volumes" collection of methods.
   * Typical usage is:
   *  <code>
   *   $booksService = new apiBooksService(...);
   *   $volumes = $booksService->volumes;
   *  </code>
   */
  class VolumesServiceResource extends apiServiceResource {


    /**
     * Performs a book search. (volumes.list)
     *
     * @param string $q Full-text search query string.
     * @param array $optParams Optional parameters. Valid optional parameters are listed below.
     *
     * @opt_param string orderBy Sort search results.
     * @opt_param string projection Restrict information returned to a set of selected fields.
     * @opt_param string libraryRestrict Restrict search to this user's library.
     * @opt_param string langRestrict Restrict results to books with this language code.
     * @opt_param string country ISO-3166-1 code to override the IP-based location.
     * @opt_param string printType Restrict to books or magazines.
     * @opt_param string maxResults Maximum number of results to return.
     * @opt_param string filter Filter search results.
     * @opt_param string source String to identify the originator of this request.
     * @opt_param string startIndex Index of the first result to return (starts at 0)
     * @opt_param string download Restrict to volumes by download availability.
     * @opt_param string partner Identifier of partner for whom to restrict and brand results.
     * @return Volumes
     */
    public function listVolumes($q, $optParams = array()) {
      $params = array('q' => $q);
      $params = array_merge($params, $optParams);
      $data = $this->__call('list', array($params));
      if ($this->useObjects()) {
        return new Volumes($data);
      } else {
        return $data;
      }
    }
    /**
     * Gets volume information for a single volume. (volumes.get)
     *
     * @param string $volumeId Id of volume to retrieve.
     * @param array $optParams Optional parameters. Valid optional parameters are listed below.
     *
     * @opt_param string source String to identify the originator of this request.
     * @opt_param string country ISO-3166-1 code to override the IP-based location.
     * @opt_param string projection Restrict information returned to a set of selected fields.
     * @opt_param string partner Identifier of partner for whom to brand results.
     * @return Volume
     */
    public function get($volumeId, $optParams = array()) {
      $params = array('volumeId' => $volumeId);
      $params = array_merge($params, $optParams);
      $data = $this->__call('get', array($params));
      if ($this->useObjects()) {
        return new Volume($data);
      } else {
        return $data;
      }
    }
  }

  /**
   * The "mylibrary" collection of methods.
   * Typical usage is:
   *  <code>
   *   $booksService = new apiBooksService(...);
   *   $mylibrary = $booksService->mylibrary;
   *  </code>
   */
  class MylibraryServiceResource extends apiServiceResource {


  }


  /**
   * The "bookshelves" collection of methods.
   * Typical usage is:
   *  <code>
   *   $booksService = new apiBooksService(...);
   *   $bookshelves = $booksService->bookshelves;
   *  </code>
   */
  class MylibraryBookshelvesServiceResource extends apiServiceResource {


    /**
     * Clears all volumes from a bookshelf. (bookshelves.clearVolumes)
     *
     * @param string $shelf Id of bookshelf from which to remove a volume.
     * @param array $optParams Optional parameters. Valid optional parameters are listed below.
     *
     * @opt_param string country ISO-3166-1 code to override the IP-based location.
     * @opt_param string source String to identify the originator of this request.
     */
    public function clearVolumes($shelf, $optParams = array()) {
      $params = array('shelf' => $shelf);
      $params = array_merge($params, $optParams);
      $data = $this->__call('clearVolumes', array($params));
      return $data;
    }
    /**
     * Removes a volume from a bookshelf. (bookshelves.removeVolume)
     *
     * @param string $shelf Id of bookshelf from which to remove a volume.
     * @param string $volumeId Id of volume to remove.
     * @param array $optParams Optional parameters. Valid optional parameters are listed below.
     *
     * @opt_param string country ISO-3166-1 code to override the IP-based location.
     * @opt_param string source String to identify the originator of this request.
     */
    public function removeVolume($shelf, $volumeId, $optParams = array()) {
      $params = array('shelf' => $shelf, 'volumeId' => $volumeId);
      $params = array_merge($params, $optParams);
      $data = $this->__call('removeVolume', array($params));
      return $data;
    }
    /**
     * Retrieves a list of bookshelves belonging to the authenticated user. (bookshelves.list)
     *
     * @param array $optParams Optional parameters. Valid optional parameters are listed below.
     *
     * @opt_param string country ISO-3166-1 code to override the IP-based location.
     * @opt_param string source String to identify the originator of this request.
     * @return Bookshelves
     */
    public function listMylibraryBookshelves($optParams = array()) {
      $params = array();
      $params = array_merge($params, $optParams);
      $data = $this->__call('list', array($params));
      if ($this->useObjects()) {
        return new Bookshelves($data);
      } else {
        return $data;
      }
    }
    /**
     * Adds a volume to a bookshelf. (bookshelves.addVolume)
     *
     * @param string $shelf Id of bookshelf to which to add a volume.
     * @param string $volumeId Id of volume to add.
     * @param array $optParams Optional parameters. Valid optional parameters are listed below.
     *
     * @opt_param string country ISO-3166-1 code to override the IP-based location.
     * @opt_param string source String to identify the originator of this request.
     */
    public function addVolume($shelf, $volumeId, $optParams = array()) {
      $params = array('shelf' => $shelf, 'volumeId' => $volumeId);
      $params = array_merge($params, $optParams);
      $data = $this->__call('addVolume', array($params));
      return $data;
    }
    /**
     * Retrieves a specific bookshelf belonging to the authenticated user. (bookshelves.get)
     *
     * @param string $shelf Id of bookshelf to retrieve.
     * @param array $optParams Optional parameters. Valid optional parameters are listed below.
     *
     * @opt_param string country ISO-3166-1 code to override the IP-based location.
     * @opt_param string source String to identify the originator of this request.
     * @return Bookshelf
     */
    public function get($shelf, $optParams = array()) {
      $params = array('shelf' => $shelf);
      $params = array_merge($params, $optParams);
      $data = $this->__call('get', array($params));
      if ($this->useObjects()) {
        return new Bookshelf($data);
      } else {
        return $data;
      }
    }
  }


  /**
   * The "volumes" collection of methods.
   * Typical usage is:
   *  <code>
   *   $booksService = new apiBooksService(...);
   *   $volumes = $booksService->volumes;
   *  </code>
   */
  class MylibraryBookshelvesVolumesServiceResource extends apiServiceResource {


    /**
     * Gets volume information for volumes on a bookshelf. (volumes.list)
     *
     * @param array $optParams Optional parameters. Valid optional parameters are listed below.
     *
     * @opt_param string shelf The bookshelf id or name retrieve volumes for.
     * @opt_param string projection Restrict information returned to a set of selected fields.
     * @opt_param string country ISO-3166-1 code to override the IP-based location.
     * @opt_param string maxResults Maximum number of results to return
     * @opt_param string q Full-text search query string in this bookshelf.
     * @opt_param string source String to identify the originator of this request.
     * @opt_param string startIndex Index of the first element to return (starts at 0)
     * @return Volumes
     */
    public function listMylibraryBookshelvesVolumes($optParams = array()) {
      $params = array();
      $params = array_merge($params, $optParams);
      $data = $this->__call('list', array($params));
      if ($this->useObjects()) {
        return new Volumes($data);
      } else {
        return $data;
      }
    }
  }



/**
 * Service definition for Books (v1).
 *
 * <p>
 * Lets you search for books and manage your Google Books library.
 * </p>
 *
 * <p>
 * For more information about this service, see the
 * <a href="https://code.google.com/apis/books/docs/v1/getting_started.html" target="_blank">API Documentation</a>
 * </p>
 *
 * @author Google, Inc.
 */
class apiBooksService extends apiService {
  public $bookshelves;
  public $volumes;
  public $mylibrary;
  /**
   * Constructs the internal representation of the Books service.
   *
   * @param apiClient apiClient
   */
  public function __construct(apiClient $apiClient) {
    $this->rpcPath = '/rpc';
    $this->restBasePath = '/books/v1/';
    $this->version = 'v1';
    $this->serviceName = 'books';
    $this->io = $apiClient->getIo();

    $apiClient->addService($this->serviceName, $this->version);
    $this->bookshelves = new BookshelvesServiceResource($this, $this->serviceName, 'bookshelves', json_decode('{"methods": {"list": {"scopes": ["https://www.googleapis.com/auth/books"], "parameters": {"country": {"type": "string", "location": "query"}, "userId": {"required": true, "type": "string", "location": "path"}, "source": {"type": "string", "location": "query"}}, "id": "books.bookshelves.list", "httpMethod": "GET", "path": "users/{userId}/bookshelves", "response": {"$ref": "Bookshelves"}}, "get": {"scopes": ["https://www.googleapis.com/auth/books"], "parameters": {"country": {"type": "string", "location": "query"}, "userId": {"required": true, "type": "string", "location": "path"}, "shelf": {"required": true, "type": "string", "location": "path"}, "source": {"type": "string", "location": "query"}}, "id": "books.bookshelves.get", "httpMethod": "GET", "path": "users/{userId}/bookshelves/{shelf}", "response": {"$ref": "Bookshelf"}}}, "resources": {"volumes": {"methods": {"list": {"scopes": ["https://www.googleapis.com/auth/books"], "parameters": {"country": {"type": "string", "location": "query"}, "userId": {"required": true, "type": "string", "location": "path"}, "shelf": {"required": true, "type": "string", "location": "path"}, "source": {"type": "string", "location": "query"}}, "id": "books.bookshelves.volumes.list", "httpMethod": "GET", "path": "users/{userId}/bookshelves/{shelf}/volumes", "response": {"$ref": "Volumes"}}}}}}', true));
    $this->volumes = new VolumesServiceResource($this, $this->serviceName, 'volumes', json_decode('{"methods": {"list": {"scopes": ["https://www.googleapis.com/auth/books"], "parameters": {"orderBy": {"enum": ["newest", "relevance"], "type": "string", "location": "query"}, "filter": {"enum": ["ebooks", "free-ebooks", "full", "paid-ebooks", "partial"], "type": "string", "location": "query"}, "projection": {"enum": ["full", "lite"], "type": "string", "location": "query"}, "libraryRestrict": {"enum": ["my-library", "no-restrict"], "type": "string", "location": "query"}, "langRestrict": {"type": "string", "location": "query"}, "country": {"type": "string", "location": "query"}, "printType": {"enum": ["all", "books", "magazines"], "type": "string", "location": "query"}, "maxResults": {"format": "uint32", "maximum": "40", "minimum": "0", "location": "query", "type": "integer"}, "q": {"required": true, "type": "string", "location": "query"}, "source": {"type": "string", "location": "query"}, "startIndex": {"format": "uint32", "minimum": "0", "type": "integer", "location": "query"}, "download": {"enum": ["epub"], "type": "string", "location": "query"}, "partner": {"type": "string", "location": "query"}}, "id": "books.volumes.list", "httpMethod": "GET", "path": "volumes", "response": {"$ref": "Volumes"}}, "get": {"scopes": ["https://www.googleapis.com/auth/books"], "parameters": {"partner": {"type": "string", "location": "query"}, "source": {"type": "string", "location": "query"}, "projection": {"enum": ["full", "lite"], "type": "string", "location": "query"}, "volumeId": {"required": true, "type": "string", "location": "path"}, "country": {"type": "string", "location": "query"}}, "id": "books.volumes.get", "httpMethod": "GET", "path": "volumes/{volumeId}", "response": {"$ref": "Volume"}}}}', true));
    $this->mylibrary = new MylibraryServiceResource($this, $this->serviceName, 'mylibrary', json_decode('{"resources": {"bookshelves": {"methods": {"clearVolumes": {"scopes": ["https://www.googleapis.com/auth/books"], "parameters": {"country": {"type": "string", "location": "query"}, "shelf": {"required": true, "type": "string", "location": "path"}, "source": {"type": "string", "location": "query"}}, "httpMethod": "POST", "path": "mylibrary/bookshelves/{shelf}/clearVolumes", "id": "books.mylibrary.bookshelves.clearVolumes"}, "removeVolume": {"scopes": ["https://www.googleapis.com/auth/books"], "parameters": {"country": {"type": "string", "location": "query"}, "volumeId": {"required": true, "type": "string", "location": "query"}, "shelf": {"required": true, "type": "string", "location": "path"}, "source": {"type": "string", "location": "query"}}, "httpMethod": "POST", "path": "mylibrary/bookshelves/{shelf}/removeVolume", "id": "books.mylibrary.bookshelves.removeVolume"}, "list": {"scopes": ["https://www.googleapis.com/auth/books"], "parameters": {"country": {"type": "string", "location": "query"}, "source": {"type": "string", "location": "query"}}, "response": {"$ref": "Bookshelves"}, "httpMethod": "GET", "path": "mylibrary/bookshelves", "id": "books.mylibrary.bookshelves.list"}, "addVolume": {"scopes": ["https://www.googleapis.com/auth/books"], "parameters": {"country": {"type": "string", "location": "query"}, "volumeId": {"required": true, "type": "string", "location": "query"}, "shelf": {"required": true, "type": "string", "location": "path"}, "source": {"type": "string", "location": "query"}}, "httpMethod": "POST", "path": "mylibrary/bookshelves/{shelf}/addVolume", "id": "books.mylibrary.bookshelves.addVolume"}, "get": {"scopes": ["https://www.googleapis.com/auth/books"], "parameters": {"country": {"type": "string", "location": "query"}, "shelf": {"required": true, "type": "string", "location": "path"}, "source": {"type": "string", "location": "query"}}, "id": "books.mylibrary.bookshelves.get", "httpMethod": "GET", "path": "mylibrary/bookshelves/{shelf}", "response": {"$ref": "Bookshelf"}}}, "resources": {"volumes": {"methods": {"list": {"scopes": ["https://www.googleapis.com/auth/books"], "parameters": {"projection": {"enum": ["full", "lite"], "type": "string", "location": "query"}, "country": {"type": "string", "location": "query"}, "maxResults": {"format": "uint32", "minimum": "0", "type": "integer", "location": "query"}, "q": {"type": "string", "location": "query"}, "source": {"type": "string", "location": "query"}, "startIndex": {"format": "uint32", "minimum": "0", "type": "integer", "location": "query"}, "shelf": {"type": "string", "location": "path"}}, "id": "books.mylibrary.bookshelves.volumes.list", "httpMethod": "GET", "path": "mylibrary/bookshelves/{shelf}/volumes", "response": {"$ref": "Volumes"}}}}}}}}', true));
  }
}

class Volumes extends apiModel {

  public $totalItems;
  public $items;
  public $kind;

  public function setTotalItems($totalItems) {
    $this->totalItems = $totalItems;
  }

  public function getTotalItems() {
    return $this->totalItems;
  }
  
  public function setItems(Volume $items) {
    $this->items = $items;
  }

  public function getItems() {
    return $this->items;
  }
  
  public function setKind($kind) {
    $this->kind = $kind;
  }

  public function getKind() {
    return $this->kind;
  }
  
}


class VolumeAccessInfoPdf extends apiModel {

  public $downloadLink;
  public $acsTokenLink;

  public function setDownloadLink($downloadLink) {
    $this->downloadLink = $downloadLink;
  }

  public function getDownloadLink() {
    return $this->downloadLink;
  }
  
  public function setAcsTokenLink($acsTokenLink) {
    $this->acsTokenLink = $acsTokenLink;
  }

  public function getAcsTokenLink() {
    return $this->acsTokenLink;
  }
  
}


class Volume extends apiModel {

  public $kind;
  public $accessInfo;
  public $saleInfo;
  public $etag;
  public $userInfo;
  public $volumeInfo;
  public $id;
  public $selfLink;

  public function setKind($kind) {
    $this->kind = $kind;
  }

  public function getKind() {
    return $this->kind;
  }
  
  public function setAccessInfo(VolumeAccessInfo $accessInfo) {
    $this->accessInfo = $accessInfo;
  }

  public function getAccessInfo() {
    return $this->accessInfo;
  }
  
  public function setSaleInfo(VolumeSaleInfo $saleInfo) {
    $this->saleInfo = $saleInfo;
  }

  public function getSaleInfo() {
    return $this->saleInfo;
  }
  
  public function setEtag($etag) {
    $this->etag = $etag;
  }

  public function getEtag() {
    return $this->etag;
  }
  
  public function setUserInfo(VolumeUserInfo $userInfo) {
    $this->userInfo = $userInfo;
  }

  public function getUserInfo() {
    return $this->userInfo;
  }
  
  public function setVolumeInfo(VolumeVolumeInfo $volumeInfo) {
    $this->volumeInfo = $volumeInfo;
  }

  public function getVolumeInfo() {
    return $this->volumeInfo;
  }
  
  public function setId($id) {
    $this->id = $id;
  }

  public function getId() {
    return $this->id;
  }
  
  public function setSelfLink($selfLink) {
    $this->selfLink = $selfLink;
  }

  public function getSelfLink() {
    return $this->selfLink;
  }
  
}


class Bookshelf extends apiModel {

  public $kind;
  public $description;
  public $created;
  public $volumeCount;
  public $title;
  public $updated;
  public $access;
  public $volumesLastUpdated;
  public $id;
  public $selfLink;

  public function setKind($kind) {
    $this->kind = $kind;
  }

  public function getKind() {
    return $this->kind;
  }
  
  public function setDescription($description) {
    $this->description = $description;
  }

  public function getDescription() {
    return $this->description;
  }
  
  public function setCreated($created) {
    $this->created = $created;
  }

  public function getCreated() {
    return $this->created;
  }
  
  public function setVolumeCount($volumeCount) {
    $this->volumeCount = $volumeCount;
  }

  public function getVolumeCount() {
    return $this->volumeCount;
  }
  
  public function setTitle($title) {
    $this->title = $title;
  }

  public function getTitle() {
    return $this->title;
  }
  
  public function setUpdated($updated) {
    $this->updated = $updated;
  }

  public function getUpdated() {
    return $this->updated;
  }
  
  public function setAccess($access) {
    $this->access = $access;
  }

  public function getAccess() {
    return $this->access;
  }
  
  public function setVolumesLastUpdated($volumesLastUpdated) {
    $this->volumesLastUpdated = $volumesLastUpdated;
  }

  public function getVolumesLastUpdated() {
    return $this->volumesLastUpdated;
  }
  
  public function setId($id) {
    $this->id = $id;
  }

  public function getId() {
    return $this->id;
  }
  
  public function setSelfLink($selfLink) {
    $this->selfLink = $selfLink;
  }

  public function getSelfLink() {
    return $this->selfLink;
  }
  
}


class DownloadAccessRestriction extends apiModel {

  public $nonce;
  public $kind;
  public $justAcquired;
  public $maxDownloadDevices;
  public $downloadsAcquired;
  public $signature;
  public $volumeId;
  public $deviceAllowed;
  public $source;
  public $restricted;
  public $reasonCode;
  public $message;

  public function setNonce($nonce) {
    $this->nonce = $nonce;
  }

  public function getNonce() {
    return $this->nonce;
  }
  
  public function setKind($kind) {
    $this->kind = $kind;
  }

  public function getKind() {
    return $this->kind;
  }
  
  public function setJustAcquired($justAcquired) {
    $this->justAcquired = $justAcquired;
  }

  public function getJustAcquired() {
    return $this->justAcquired;
  }
  
  public function setMaxDownloadDevices($maxDownloadDevices) {
    $this->maxDownloadDevices = $maxDownloadDevices;
  }

  public function getMaxDownloadDevices() {
    return $this->maxDownloadDevices;
  }
  
  public function setDownloadsAcquired($downloadsAcquired) {
    $this->downloadsAcquired = $downloadsAcquired;
  }

  public function getDownloadsAcquired() {
    return $this->downloadsAcquired;
  }
  
  public function setSignature($signature) {
    $this->signature = $signature;
  }

  public function getSignature() {
    return $this->signature;
  }
  
  public function setVolumeId($volumeId) {
    $this->volumeId = $volumeId;
  }

  public function getVolumeId() {
    return $this->volumeId;
  }
  
  public function setDeviceAllowed($deviceAllowed) {
    $this->deviceAllowed = $deviceAllowed;
  }

  public function getDeviceAllowed() {
    return $this->deviceAllowed;
  }
  
  public function setSource($source) {
    $this->source = $source;
  }

  public function getSource() {
    return $this->source;
  }
  
  public function setRestricted($restricted) {
    $this->restricted = $restricted;
  }

  public function getRestricted() {
    return $this->restricted;
  }
  
  public function setReasonCode($reasonCode) {
    $this->reasonCode = $reasonCode;
  }

  public function getReasonCode() {
    return $this->reasonCode;
  }
  
  public function setMessage($message) {
    $this->message = $message;
  }

  public function getMessage() {
    return $this->message;
  }
  
}


class ReviewSource extends apiModel {

  public $extraDescription;
  public $url;
  public $description;

  public function setExtraDescription($extraDescription) {
    $this->extraDescription = $extraDescription;
  }

  public function getExtraDescription() {
    return $this->extraDescription;
  }
  
  public function setUrl($url) {
    $this->url = $url;
  }

  public function getUrl() {
    return $this->url;
  }
  
  public function setDescription($description) {
    $this->description = $description;
  }

  public function getDescription() {
    return $this->description;
  }
  
}


class ReviewAuthor extends apiModel {

  public $displayName;

  public function setDisplayName($displayName) {
    $this->displayName = $displayName;
  }

  public function getDisplayName() {
    return $this->displayName;
  }
  
}


class Review extends apiModel {

  public $rating;
  public $kind;
  public $author;
  public $title;
  public $volumeId;
  public $content;
  public $source;
  public $date;
  public $type;
  public $fullTextUrl;

  public function setRating($rating) {
    $this->rating = $rating;
  }

  public function getRating() {
    return $this->rating;
  }
  
  public function setKind($kind) {
    $this->kind = $kind;
  }

  public function getKind() {
    return $this->kind;
  }
  
  public function setAuthor(ReviewAuthor $author) {
    $this->author = $author;
  }

  public function getAuthor() {
    return $this->author;
  }
  
  public function setTitle($title) {
    $this->title = $title;
  }

  public function getTitle() {
    return $this->title;
  }
  
  public function setVolumeId($volumeId) {
    $this->volumeId = $volumeId;
  }

  public function getVolumeId() {
    return $this->volumeId;
  }
  
  public function setContent($content) {
    $this->content = $content;
  }

  public function getContent() {
    return $this->content;
  }
  
  public function setSource(ReviewSource $source) {
    $this->source = $source;
  }

  public function getSource() {
    return $this->source;
  }
  
  public function setDate($date) {
    $this->date = $date;
  }

  public function getDate() {
    return $this->date;
  }
  
  public function setType($type) {
    $this->type = $type;
  }

  public function getType() {
    return $this->type;
  }
  
  public function setFullTextUrl($fullTextUrl) {
    $this->fullTextUrl = $fullTextUrl;
  }

  public function getFullTextUrl() {
    return $this->fullTextUrl;
  }
  
}


class VolumeSaleInfo extends apiModel {

  public $country;
  public $retailPrice;
  public $isEbook;
  public $saleability;
  public $buyLink;
  public $listPrice;

  public function setCountry($country) {
    $this->country = $country;
  }

  public function getCountry() {
    return $this->country;
  }
  
  public function setRetailPrice(VolumeSaleInfoRetailPrice $retailPrice) {
    $this->retailPrice = $retailPrice;
  }

  public function getRetailPrice() {
    return $this->retailPrice;
  }
  
  public function setIsEbook($isEbook) {
    $this->isEbook = $isEbook;
  }

  public function getIsEbook() {
    return $this->isEbook;
  }
  
  public function setSaleability($saleability) {
    $this->saleability = $saleability;
  }

  public function getSaleability() {
    return $this->saleability;
  }
  
  public function setBuyLink($buyLink) {
    $this->buyLink = $buyLink;
  }

  public function getBuyLink() {
    return $this->buyLink;
  }
  
  public function setListPrice(VolumeSaleInfoListPrice $listPrice) {
    $this->listPrice = $listPrice;
  }

  public function getListPrice() {
    return $this->listPrice;
  }
  
}


class VolumeVolumeInfoDimensions extends apiModel {

  public $width;
  public $thickness;
  public $height;

  public function setWidth($width) {
    $this->width = $width;
  }

  public function getWidth() {
    return $this->width;
  }
  
  public function setThickness($thickness) {
    $this->thickness = $thickness;
  }

  public function getThickness() {
    return $this->thickness;
  }
  
  public function setHeight($height) {
    $this->height = $height;
  }

  public function getHeight() {
    return $this->height;
  }
  
}


class VolumeVolumeInfoImageLinks extends apiModel {

  public $medium;
  public $smallThumbnail;
  public $large;
  public $extraLarge;
  public $small;
  public $thumbnail;

  public function setMedium($medium) {
    $this->medium = $medium;
  }

  public function getMedium() {
    return $this->medium;
  }
  
  public function setSmallThumbnail($smallThumbnail) {
    $this->smallThumbnail = $smallThumbnail;
  }

  public function getSmallThumbnail() {
    return $this->smallThumbnail;
  }
  
  public function setLarge($large) {
    $this->large = $large;
  }

  public function getLarge() {
    return $this->large;
  }
  
  public function setExtraLarge($extraLarge) {
    $this->extraLarge = $extraLarge;
  }

  public function getExtraLarge() {
    return $this->extraLarge;
  }
  
  public function setSmall($small) {
    $this->small = $small;
  }

  public function getSmall() {
    return $this->small;
  }
  
  public function setThumbnail($thumbnail) {
    $this->thumbnail = $thumbnail;
  }

  public function getThumbnail() {
    return $this->thumbnail;
  }
  
}


class VolumeVolumeInfo extends apiModel {

  public $publishedDate;
  public $subtitle;
  public $dimensions;
  public $language;
  public $pageCount;
  public $imageLinks;
  public $description;
  public $previewLink;
  public $printType;
  public $mainCategory;
  public $contentVersion;
  public $industryIdentifiers;
  public $authors;
  public $publisher;
  public $title;
  public $ratingsCount;
  public $infoLink;
  public $categories;
  public $averageRating;

  public function setPublishedDate($publishedDate) {
    $this->publishedDate = $publishedDate;
  }

  public function getPublishedDate() {
    return $this->publishedDate;
  }
  
  public function setSubtitle($subtitle) {
    $this->subtitle = $subtitle;
  }

  public function getSubtitle() {
    return $this->subtitle;
  }
  
  public function setDimensions(VolumeVolumeInfoDimensions $dimensions) {
    $this->dimensions = $dimensions;
  }

  public function getDimensions() {
    return $this->dimensions;
  }
  
  public function setLanguage($language) {
    $this->language = $language;
  }

  public function getLanguage() {
    return $this->language;
  }
  
  public function setPageCount($pageCount) {
    $this->pageCount = $pageCount;
  }

  public function getPageCount() {
    return $this->pageCount;
  }
  
  public function setImageLinks(VolumeVolumeInfoImageLinks $imageLinks) {
    $this->imageLinks = $imageLinks;
  }

  public function getImageLinks() {
    return $this->imageLinks;
  }
  
  public function setDescription($description) {
    $this->description = $description;
  }

  public function getDescription() {
    return $this->description;
  }
  
  public function setPreviewLink($previewLink) {
    $this->previewLink = $previewLink;
  }

  public function getPreviewLink() {
    return $this->previewLink;
  }
  
  public function setPrintType($printType) {
    $this->printType = $printType;
  }

  public function getPrintType() {
    return $this->printType;
  }
  
  public function setMainCategory($mainCategory) {
    $this->mainCategory = $mainCategory;
  }

  public function getMainCategory() {
    return $this->mainCategory;
  }
  
  public function setContentVersion($contentVersion) {
    $this->contentVersion = $contentVersion;
  }

  public function getContentVersion() {
    return $this->contentVersion;
  }
  
  public function setIndustryIdentifiers(VolumeVolumeInfoIndustryIdentifiers $industryIdentifiers) {
    $this->industryIdentifiers = $industryIdentifiers;
  }

  public function getIndustryIdentifiers() {
    return $this->industryIdentifiers;
  }
  
  public function setAuthors($authors) {
    $this->authors = $authors;
  }

  public function getAuthors() {
    return $this->authors;
  }
  
  public function setPublisher($publisher) {
    $this->publisher = $publisher;
  }

  public function getPublisher() {
    return $this->publisher;
  }
  
  public function setTitle($title) {
    $this->title = $title;
  }

  public function getTitle() {
    return $this->title;
  }
  
  public function setRatingsCount($ratingsCount) {
    $this->ratingsCount = $ratingsCount;
  }

  public function getRatingsCount() {
    return $this->ratingsCount;
  }
  
  public function setInfoLink($infoLink) {
    $this->infoLink = $infoLink;
  }

  public function getInfoLink() {
    return $this->infoLink;
  }
  
  public function setCategories($categories) {
    $this->categories = $categories;
  }

  public function getCategories() {
    return $this->categories;
  }
  
  public function setAverageRating($averageRating) {
    $this->averageRating = $averageRating;
  }

  public function getAverageRating() {
    return $this->averageRating;
  }
  
}


class ReadingPosition extends apiModel {

  public $kind;
  public $gbImagePosition;
  public $epubCfiPosition;
  public $updated;
  public $volumeId;
  public $pdfPosition;
  public $gbTextPosition;

  public function setKind($kind) {
    $this->kind = $kind;
  }

  public function getKind() {
    return $this->kind;
  }
  
  public function setGbImagePosition($gbImagePosition) {
    $this->gbImagePosition = $gbImagePosition;
  }

  public function getGbImagePosition() {
    return $this->gbImagePosition;
  }
  
  public function setEpubCfiPosition($epubCfiPosition) {
    $this->epubCfiPosition = $epubCfiPosition;
  }

  public function getEpubCfiPosition() {
    return $this->epubCfiPosition;
  }
  
  public function setUpdated($updated) {
    $this->updated = $updated;
  }

  public function getUpdated() {
    return $this->updated;
  }
  
  public function setVolumeId($volumeId) {
    $this->volumeId = $volumeId;
  }

  public function getVolumeId() {
    return $this->volumeId;
  }
  
  public function setPdfPosition($pdfPosition) {
    $this->pdfPosition = $pdfPosition;
  }

  public function getPdfPosition() {
    return $this->pdfPosition;
  }
  
  public function setGbTextPosition($gbTextPosition) {
    $this->gbTextPosition = $gbTextPosition;
  }

  public function getGbTextPosition() {
    return $this->gbTextPosition;
  }
  
}


class VolumeVolumeInfoIndustryIdentifiers extends apiModel {

  public $identifier;
  public $type;

  public function setIdentifier($identifier) {
    $this->identifier = $identifier;
  }

  public function getIdentifier() {
    return $this->identifier;
  }
  
  public function setType($type) {
    $this->type = $type;
  }

  public function getType() {
    return $this->type;
  }
  
}


class VolumeAccessInfoEpub extends apiModel {

  public $downloadLink;
  public $acsTokenLink;

  public function setDownloadLink($downloadLink) {
    $this->downloadLink = $downloadLink;
  }

  public function getDownloadLink() {
    return $this->downloadLink;
  }
  
  public function setAcsTokenLink($acsTokenLink) {
    $this->acsTokenLink = $acsTokenLink;
  }

  public function getAcsTokenLink() {
    return $this->acsTokenLink;
  }
  
}


class VolumeSaleInfoListPrice extends apiModel {

  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 VolumeAccessInfo extends apiModel {

  public $publicDomain;
  public $embeddable;
  public $downloadAccess;
  public $country;
  public $textToSpeechPermission;
  public $pdf;
  public $viewability;
  public $epub;
  public $accessViewStatus;

  public function setPublicDomain($publicDomain) {
    $this->publicDomain = $publicDomain;
  }

  public function getPublicDomain() {
    return $this->publicDomain;
  }
  
  public function setEmbeddable($embeddable) {
    $this->embeddable = $embeddable;
  }

  public function getEmbeddable() {
    return $this->embeddable;
  }
  
  public function setDownloadAccess(DownloadAccessRestriction $downloadAccess) {
    $this->downloadAccess = $downloadAccess;
  }

  public function getDownloadAccess() {
    return $this->downloadAccess;
  }
  
  public function setCountry($country) {
    $this->country = $country;
  }

  public function getCountry() {
    return $this->country;
  }
  
  public function setTextToSpeechPermission($textToSpeechPermission) {
    $this->textToSpeechPermission = $textToSpeechPermission;
  }

  public function getTextToSpeechPermission() {
    return $this->textToSpeechPermission;
  }
  
  public function setPdf(VolumeAccessInfoPdf $pdf) {
    $this->pdf = $pdf;
  }

  public function getPdf() {
    return $this->pdf;
  }
  
  public function setViewability($viewability) {
    $this->viewability = $viewability;
  }

  public function getViewability() {
    return $this->viewability;
  }
  
  public function setEpub(VolumeAccessInfoEpub $epub) {
    $this->epub = $epub;
  }

  public function getEpub() {
    return $this->epub;
  }
  
  public function setAccessViewStatus($accessViewStatus) {
    $this->accessViewStatus = $accessViewStatus;
  }

  public function getAccessViewStatus() {
    return $this->accessViewStatus;
  }
  
}


class VolumeUserInfo extends apiModel {

  public $updated;
  public $readingPosition;
  public $isPurchased;
  public $review;

  public function setUpdated($updated) {
    $this->updated = $updated;
  }

  public function getUpdated() {
    return $this->updated;
  }
  
  public function setReadingPosition(ReadingPosition $readingPosition) {
    $this->readingPosition = $readingPosition;
  }

  public function getReadingPosition() {
    return $this->readingPosition;
  }
  
  public function setIsPurchased($isPurchased) {
    $this->isPurchased = $isPurchased;
  }

  public function getIsPurchased() {
    return $this->isPurchased;
  }
  
  public function setReview(Review $review) {
    $this->review = $review;
  }

  public function getReview() {
    return $this->review;
  }
  
}


class VolumeSaleInfoRetailPrice extends apiModel {

  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 Bookshelves extends apiModel {

  public $items;
  public $kind;

  public function setItems(Bookshelf $items) {
    $this->items = $items;
  }

  public function getItems() {
    return $this->items;
  }
  
  public function setKind($kind) {
    $this->kind = $kind;
  }

  public function getKind() {
    return $this->kind;
  }
  
}