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 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261
|
// Copyright (c) Dropbox, Inc.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
// Package files : This namespace contains endpoints and data types for basic
// file operations.
package files
import (
"encoding/json"
"time"
"github.com/dropbox/dropbox-sdk-go-unofficial/v6/dropbox"
"github.com/dropbox/dropbox-sdk-go-unofficial/v6/dropbox/file_properties"
)
// AddTagArg : has no documentation (yet)
type AddTagArg struct {
// Path : Path to the item to be tagged.
Path string `json:"path"`
// TagText : The value of the tag to add. Will be automatically converted to
// lowercase letters.
TagText string `json:"tag_text"`
}
// NewAddTagArg returns a new AddTagArg instance
func NewAddTagArg(Path string, TagText string) *AddTagArg {
s := new(AddTagArg)
s.Path = Path
s.TagText = TagText
return s
}
// BaseTagError : has no documentation (yet)
type BaseTagError struct {
dropbox.Tagged
// Path : has no documentation (yet)
Path *LookupError `json:"path,omitempty"`
}
// Valid tag values for BaseTagError
const (
BaseTagErrorPath = "path"
BaseTagErrorOther = "other"
)
// UnmarshalJSON deserializes into a BaseTagError instance
func (u *BaseTagError) UnmarshalJSON(body []byte) error {
type wrap struct {
dropbox.Tagged
// Path : has no documentation (yet)
Path *LookupError `json:"path,omitempty"`
}
var w wrap
var err error
if err = json.Unmarshal(body, &w); err != nil {
return err
}
u.Tag = w.Tag
switch u.Tag {
case "path":
u.Path = w.Path
}
return nil
}
// AddTagError : has no documentation (yet)
type AddTagError struct {
dropbox.Tagged
// Path : has no documentation (yet)
Path *LookupError `json:"path,omitempty"`
}
// Valid tag values for AddTagError
const (
AddTagErrorPath = "path"
AddTagErrorOther = "other"
AddTagErrorTooManyTags = "too_many_tags"
)
// UnmarshalJSON deserializes into a AddTagError instance
func (u *AddTagError) UnmarshalJSON(body []byte) error {
type wrap struct {
dropbox.Tagged
// Path : has no documentation (yet)
Path *LookupError `json:"path,omitempty"`
}
var w wrap
var err error
if err = json.Unmarshal(body, &w); err != nil {
return err
}
u.Tag = w.Tag
switch u.Tag {
case "path":
u.Path = w.Path
}
return nil
}
// GetMetadataArg : has no documentation (yet)
type GetMetadataArg struct {
// Path : The path of a file or folder on Dropbox.
Path string `json:"path"`
// IncludeMediaInfo : If true, `FileMetadata.media_info` is set for photo
// and video.
IncludeMediaInfo bool `json:"include_media_info"`
// IncludeDeleted : If true, `DeletedMetadata` will be returned for deleted
// file or folder, otherwise `LookupError.not_found` will be returned.
IncludeDeleted bool `json:"include_deleted"`
// IncludeHasExplicitSharedMembers : If true, the results will include a
// flag for each file indicating whether or not that file has any explicit
// members.
IncludeHasExplicitSharedMembers bool `json:"include_has_explicit_shared_members"`
// IncludePropertyGroups : If set to a valid list of template IDs,
// `FileMetadata.property_groups` is set if there exists property data
// associated with the file and each of the listed templates.
IncludePropertyGroups *file_properties.TemplateFilterBase `json:"include_property_groups,omitempty"`
}
// NewGetMetadataArg returns a new GetMetadataArg instance
func NewGetMetadataArg(Path string) *GetMetadataArg {
s := new(GetMetadataArg)
s.Path = Path
s.IncludeMediaInfo = false
s.IncludeDeleted = false
s.IncludeHasExplicitSharedMembers = false
return s
}
// AlphaGetMetadataArg : has no documentation (yet)
type AlphaGetMetadataArg struct {
GetMetadataArg
// IncludePropertyTemplates : If set to a valid list of template IDs,
// `FileMetadata.property_groups` is set for files with custom properties.
IncludePropertyTemplates []string `json:"include_property_templates,omitempty"`
}
// NewAlphaGetMetadataArg returns a new AlphaGetMetadataArg instance
func NewAlphaGetMetadataArg(Path string) *AlphaGetMetadataArg {
s := new(AlphaGetMetadataArg)
s.Path = Path
s.IncludeMediaInfo = false
s.IncludeDeleted = false
s.IncludeHasExplicitSharedMembers = false
return s
}
// GetMetadataError : has no documentation (yet)
type GetMetadataError struct {
dropbox.Tagged
// Path : has no documentation (yet)
Path *LookupError `json:"path,omitempty"`
}
// Valid tag values for GetMetadataError
const (
GetMetadataErrorPath = "path"
)
// UnmarshalJSON deserializes into a GetMetadataError instance
func (u *GetMetadataError) UnmarshalJSON(body []byte) error {
type wrap struct {
dropbox.Tagged
// Path : has no documentation (yet)
Path *LookupError `json:"path,omitempty"`
}
var w wrap
var err error
if err = json.Unmarshal(body, &w); err != nil {
return err
}
u.Tag = w.Tag
switch u.Tag {
case "path":
u.Path = w.Path
}
return nil
}
// AlphaGetMetadataError : has no documentation (yet)
type AlphaGetMetadataError struct {
dropbox.Tagged
// Path : has no documentation (yet)
Path *LookupError `json:"path,omitempty"`
// PropertiesError : has no documentation (yet)
PropertiesError *file_properties.LookUpPropertiesError `json:"properties_error,omitempty"`
}
// Valid tag values for AlphaGetMetadataError
const (
AlphaGetMetadataErrorPath = "path"
AlphaGetMetadataErrorPropertiesError = "properties_error"
)
// UnmarshalJSON deserializes into a AlphaGetMetadataError instance
func (u *AlphaGetMetadataError) UnmarshalJSON(body []byte) error {
type wrap struct {
dropbox.Tagged
// Path : has no documentation (yet)
Path *LookupError `json:"path,omitempty"`
// PropertiesError : has no documentation (yet)
PropertiesError *file_properties.LookUpPropertiesError `json:"properties_error,omitempty"`
}
var w wrap
var err error
if err = json.Unmarshal(body, &w); err != nil {
return err
}
u.Tag = w.Tag
switch u.Tag {
case "path":
u.Path = w.Path
case "properties_error":
u.PropertiesError = w.PropertiesError
}
return nil
}
// CommitInfo : has no documentation (yet)
type CommitInfo struct {
// Path : Path in the user's Dropbox to save the file.
Path string `json:"path"`
// Mode : Selects what to do if the file already exists.
Mode *WriteMode `json:"mode"`
// Autorename : If there's a conflict, as determined by `mode`, have the
// Dropbox server try to autorename the file to avoid conflict.
Autorename bool `json:"autorename"`
// ClientModified : The value to store as the `client_modified` timestamp.
// Dropbox automatically records the time at which the file was written to
// the Dropbox servers. It can also record an additional timestamp, provided
// by Dropbox desktop clients, mobile clients, and API apps of when the file
// was actually created or modified.
ClientModified *time.Time `json:"client_modified,omitempty"`
// Mute : Normally, users are made aware of any file modifications in their
// Dropbox account via notifications in the client software. If true, this
// tells the clients that this modification shouldn't result in a user
// notification.
Mute bool `json:"mute"`
// PropertyGroups : List of custom properties to add to file.
PropertyGroups []*file_properties.PropertyGroup `json:"property_groups,omitempty"`
// StrictConflict : Be more strict about how each `WriteMode` detects
// conflict. For example, always return a conflict error when `mode` =
// `WriteMode.update` and the given "rev" doesn't match the existing file's
// "rev", even if the existing file has been deleted. This also forces a
// conflict even when the target path refers to a file with identical
// contents.
StrictConflict bool `json:"strict_conflict"`
}
// NewCommitInfo returns a new CommitInfo instance
func NewCommitInfo(Path string) *CommitInfo {
s := new(CommitInfo)
s.Path = Path
s.Mode = &WriteMode{Tagged: dropbox.Tagged{Tag: "add"}}
s.Autorename = false
s.Mute = false
s.StrictConflict = false
return s
}
// ContentSyncSetting : has no documentation (yet)
type ContentSyncSetting struct {
// Id : Id of the item this setting is applied to.
Id string `json:"id"`
// SyncSetting : Setting for this item.
SyncSetting *SyncSetting `json:"sync_setting"`
}
// NewContentSyncSetting returns a new ContentSyncSetting instance
func NewContentSyncSetting(Id string, SyncSetting *SyncSetting) *ContentSyncSetting {
s := new(ContentSyncSetting)
s.Id = Id
s.SyncSetting = SyncSetting
return s
}
// ContentSyncSettingArg : has no documentation (yet)
type ContentSyncSettingArg struct {
// Id : Id of the item this setting is applied to.
Id string `json:"id"`
// SyncSetting : Setting for this item.
SyncSetting *SyncSettingArg `json:"sync_setting"`
}
// NewContentSyncSettingArg returns a new ContentSyncSettingArg instance
func NewContentSyncSettingArg(Id string, SyncSetting *SyncSettingArg) *ContentSyncSettingArg {
s := new(ContentSyncSettingArg)
s.Id = Id
s.SyncSetting = SyncSetting
return s
}
// CreateFolderArg : has no documentation (yet)
type CreateFolderArg struct {
// Path : Path in the user's Dropbox to create.
Path string `json:"path"`
// Autorename : If there's a conflict, have the Dropbox server try to
// autorename the folder to avoid the conflict.
Autorename bool `json:"autorename"`
}
// NewCreateFolderArg returns a new CreateFolderArg instance
func NewCreateFolderArg(Path string) *CreateFolderArg {
s := new(CreateFolderArg)
s.Path = Path
s.Autorename = false
return s
}
// CreateFolderBatchArg : has no documentation (yet)
type CreateFolderBatchArg struct {
// Paths : List of paths to be created in the user's Dropbox. Duplicate path
// arguments in the batch are considered only once.
Paths []string `json:"paths"`
// Autorename : If there's a conflict, have the Dropbox server try to
// autorename the folder to avoid the conflict.
Autorename bool `json:"autorename"`
// ForceAsync : Whether to force the create to happen asynchronously.
ForceAsync bool `json:"force_async"`
}
// NewCreateFolderBatchArg returns a new CreateFolderBatchArg instance
func NewCreateFolderBatchArg(Paths []string) *CreateFolderBatchArg {
s := new(CreateFolderBatchArg)
s.Paths = Paths
s.Autorename = false
s.ForceAsync = false
return s
}
// CreateFolderBatchError : has no documentation (yet)
type CreateFolderBatchError struct {
dropbox.Tagged
}
// Valid tag values for CreateFolderBatchError
const (
CreateFolderBatchErrorTooManyFiles = "too_many_files"
CreateFolderBatchErrorOther = "other"
)
// CreateFolderBatchJobStatus : has no documentation (yet)
type CreateFolderBatchJobStatus struct {
dropbox.Tagged
// Complete : The batch create folder has finished.
Complete *CreateFolderBatchResult `json:"complete,omitempty"`
// Failed : The batch create folder has failed.
Failed *CreateFolderBatchError `json:"failed,omitempty"`
}
// Valid tag values for CreateFolderBatchJobStatus
const (
CreateFolderBatchJobStatusInProgress = "in_progress"
CreateFolderBatchJobStatusComplete = "complete"
CreateFolderBatchJobStatusFailed = "failed"
CreateFolderBatchJobStatusOther = "other"
)
// UnmarshalJSON deserializes into a CreateFolderBatchJobStatus instance
func (u *CreateFolderBatchJobStatus) UnmarshalJSON(body []byte) error {
type wrap struct {
dropbox.Tagged
// Failed : The batch create folder has failed.
Failed *CreateFolderBatchError `json:"failed,omitempty"`
}
var w wrap
var err error
if err = json.Unmarshal(body, &w); err != nil {
return err
}
u.Tag = w.Tag
switch u.Tag {
case "complete":
if err = json.Unmarshal(body, &u.Complete); err != nil {
return err
}
case "failed":
u.Failed = w.Failed
}
return nil
}
// CreateFolderBatchLaunch : Result returned by `createFolderBatch` that may
// either launch an asynchronous job or complete synchronously.
type CreateFolderBatchLaunch struct {
dropbox.Tagged
// AsyncJobId : This response indicates that the processing is asynchronous.
// The string is an id that can be used to obtain the status of the
// asynchronous job.
AsyncJobId string `json:"async_job_id,omitempty"`
// Complete : has no documentation (yet)
Complete *CreateFolderBatchResult `json:"complete,omitempty"`
}
// Valid tag values for CreateFolderBatchLaunch
const (
CreateFolderBatchLaunchAsyncJobId = "async_job_id"
CreateFolderBatchLaunchComplete = "complete"
CreateFolderBatchLaunchOther = "other"
)
// UnmarshalJSON deserializes into a CreateFolderBatchLaunch instance
func (u *CreateFolderBatchLaunch) UnmarshalJSON(body []byte) error {
type wrap struct {
dropbox.Tagged
// AsyncJobId : This response indicates that the processing is
// asynchronous. The string is an id that can be used to obtain the
// status of the asynchronous job.
AsyncJobId string `json:"async_job_id,omitempty"`
}
var w wrap
var err error
if err = json.Unmarshal(body, &w); err != nil {
return err
}
u.Tag = w.Tag
switch u.Tag {
case "async_job_id":
u.AsyncJobId = w.AsyncJobId
case "complete":
if err = json.Unmarshal(body, &u.Complete); err != nil {
return err
}
}
return nil
}
// FileOpsResult : has no documentation (yet)
type FileOpsResult struct {
}
// NewFileOpsResult returns a new FileOpsResult instance
func NewFileOpsResult() *FileOpsResult {
s := new(FileOpsResult)
return s
}
// CreateFolderBatchResult : has no documentation (yet)
type CreateFolderBatchResult struct {
FileOpsResult
// Entries : Each entry in `CreateFolderBatchArg.paths` will appear at the
// same position inside `CreateFolderBatchResult.entries`.
Entries []*CreateFolderBatchResultEntry `json:"entries"`
}
// NewCreateFolderBatchResult returns a new CreateFolderBatchResult instance
func NewCreateFolderBatchResult(Entries []*CreateFolderBatchResultEntry) *CreateFolderBatchResult {
s := new(CreateFolderBatchResult)
s.Entries = Entries
return s
}
// CreateFolderBatchResultEntry : has no documentation (yet)
type CreateFolderBatchResultEntry struct {
dropbox.Tagged
// Success : has no documentation (yet)
Success *CreateFolderEntryResult `json:"success,omitempty"`
// Failure : has no documentation (yet)
Failure *CreateFolderEntryError `json:"failure,omitempty"`
}
// Valid tag values for CreateFolderBatchResultEntry
const (
CreateFolderBatchResultEntrySuccess = "success"
CreateFolderBatchResultEntryFailure = "failure"
)
// UnmarshalJSON deserializes into a CreateFolderBatchResultEntry instance
func (u *CreateFolderBatchResultEntry) UnmarshalJSON(body []byte) error {
type wrap struct {
dropbox.Tagged
// Failure : has no documentation (yet)
Failure *CreateFolderEntryError `json:"failure,omitempty"`
}
var w wrap
var err error
if err = json.Unmarshal(body, &w); err != nil {
return err
}
u.Tag = w.Tag
switch u.Tag {
case "success":
if err = json.Unmarshal(body, &u.Success); err != nil {
return err
}
case "failure":
u.Failure = w.Failure
}
return nil
}
// CreateFolderEntryError : has no documentation (yet)
type CreateFolderEntryError struct {
dropbox.Tagged
// Path : has no documentation (yet)
Path *WriteError `json:"path,omitempty"`
}
// Valid tag values for CreateFolderEntryError
const (
CreateFolderEntryErrorPath = "path"
CreateFolderEntryErrorOther = "other"
)
// UnmarshalJSON deserializes into a CreateFolderEntryError instance
func (u *CreateFolderEntryError) UnmarshalJSON(body []byte) error {
type wrap struct {
dropbox.Tagged
// Path : has no documentation (yet)
Path *WriteError `json:"path,omitempty"`
}
var w wrap
var err error
if err = json.Unmarshal(body, &w); err != nil {
return err
}
u.Tag = w.Tag
switch u.Tag {
case "path":
u.Path = w.Path
}
return nil
}
// CreateFolderEntryResult : has no documentation (yet)
type CreateFolderEntryResult struct {
// Metadata : Metadata of the created folder.
Metadata *FolderMetadata `json:"metadata"`
}
// NewCreateFolderEntryResult returns a new CreateFolderEntryResult instance
func NewCreateFolderEntryResult(Metadata *FolderMetadata) *CreateFolderEntryResult {
s := new(CreateFolderEntryResult)
s.Metadata = Metadata
return s
}
// CreateFolderError : has no documentation (yet)
type CreateFolderError struct {
dropbox.Tagged
// Path : has no documentation (yet)
Path *WriteError `json:"path,omitempty"`
}
// Valid tag values for CreateFolderError
const (
CreateFolderErrorPath = "path"
)
// UnmarshalJSON deserializes into a CreateFolderError instance
func (u *CreateFolderError) UnmarshalJSON(body []byte) error {
type wrap struct {
dropbox.Tagged
// Path : has no documentation (yet)
Path *WriteError `json:"path,omitempty"`
}
var w wrap
var err error
if err = json.Unmarshal(body, &w); err != nil {
return err
}
u.Tag = w.Tag
switch u.Tag {
case "path":
u.Path = w.Path
}
return nil
}
// CreateFolderResult : has no documentation (yet)
type CreateFolderResult struct {
FileOpsResult
// Metadata : Metadata of the created folder.
Metadata *FolderMetadata `json:"metadata"`
}
// NewCreateFolderResult returns a new CreateFolderResult instance
func NewCreateFolderResult(Metadata *FolderMetadata) *CreateFolderResult {
s := new(CreateFolderResult)
s.Metadata = Metadata
return s
}
// DeleteArg : has no documentation (yet)
type DeleteArg struct {
// Path : Path in the user's Dropbox to delete.
Path string `json:"path"`
// ParentRev : Perform delete if given "rev" matches the existing file's
// latest "rev". This field does not support deleting a folder.
ParentRev string `json:"parent_rev,omitempty"`
}
// NewDeleteArg returns a new DeleteArg instance
func NewDeleteArg(Path string) *DeleteArg {
s := new(DeleteArg)
s.Path = Path
return s
}
// DeleteBatchArg : has no documentation (yet)
type DeleteBatchArg struct {
// Entries : has no documentation (yet)
Entries []*DeleteArg `json:"entries"`
}
// NewDeleteBatchArg returns a new DeleteBatchArg instance
func NewDeleteBatchArg(Entries []*DeleteArg) *DeleteBatchArg {
s := new(DeleteBatchArg)
s.Entries = Entries
return s
}
// DeleteBatchError : has no documentation (yet)
type DeleteBatchError struct {
dropbox.Tagged
}
// Valid tag values for DeleteBatchError
const (
DeleteBatchErrorTooManyWriteOperations = "too_many_write_operations"
DeleteBatchErrorOther = "other"
)
// DeleteBatchJobStatus : has no documentation (yet)
type DeleteBatchJobStatus struct {
dropbox.Tagged
// Complete : The batch delete has finished.
Complete *DeleteBatchResult `json:"complete,omitempty"`
// Failed : The batch delete has failed.
Failed *DeleteBatchError `json:"failed,omitempty"`
}
// Valid tag values for DeleteBatchJobStatus
const (
DeleteBatchJobStatusInProgress = "in_progress"
DeleteBatchJobStatusComplete = "complete"
DeleteBatchJobStatusFailed = "failed"
DeleteBatchJobStatusOther = "other"
)
// UnmarshalJSON deserializes into a DeleteBatchJobStatus instance
func (u *DeleteBatchJobStatus) UnmarshalJSON(body []byte) error {
type wrap struct {
dropbox.Tagged
// Failed : The batch delete has failed.
Failed *DeleteBatchError `json:"failed,omitempty"`
}
var w wrap
var err error
if err = json.Unmarshal(body, &w); err != nil {
return err
}
u.Tag = w.Tag
switch u.Tag {
case "complete":
if err = json.Unmarshal(body, &u.Complete); err != nil {
return err
}
case "failed":
u.Failed = w.Failed
}
return nil
}
// DeleteBatchLaunch : Result returned by `deleteBatch` that may either launch
// an asynchronous job or complete synchronously.
type DeleteBatchLaunch struct {
dropbox.Tagged
// AsyncJobId : This response indicates that the processing is asynchronous.
// The string is an id that can be used to obtain the status of the
// asynchronous job.
AsyncJobId string `json:"async_job_id,omitempty"`
// Complete : has no documentation (yet)
Complete *DeleteBatchResult `json:"complete,omitempty"`
}
// Valid tag values for DeleteBatchLaunch
const (
DeleteBatchLaunchAsyncJobId = "async_job_id"
DeleteBatchLaunchComplete = "complete"
DeleteBatchLaunchOther = "other"
)
// UnmarshalJSON deserializes into a DeleteBatchLaunch instance
func (u *DeleteBatchLaunch) UnmarshalJSON(body []byte) error {
type wrap struct {
dropbox.Tagged
// AsyncJobId : This response indicates that the processing is
// asynchronous. The string is an id that can be used to obtain the
// status of the asynchronous job.
AsyncJobId string `json:"async_job_id,omitempty"`
}
var w wrap
var err error
if err = json.Unmarshal(body, &w); err != nil {
return err
}
u.Tag = w.Tag
switch u.Tag {
case "async_job_id":
u.AsyncJobId = w.AsyncJobId
case "complete":
if err = json.Unmarshal(body, &u.Complete); err != nil {
return err
}
}
return nil
}
// DeleteBatchResult : has no documentation (yet)
type DeleteBatchResult struct {
FileOpsResult
// Entries : Each entry in `DeleteBatchArg.entries` will appear at the same
// position inside `DeleteBatchResult.entries`.
Entries []*DeleteBatchResultEntry `json:"entries"`
}
// NewDeleteBatchResult returns a new DeleteBatchResult instance
func NewDeleteBatchResult(Entries []*DeleteBatchResultEntry) *DeleteBatchResult {
s := new(DeleteBatchResult)
s.Entries = Entries
return s
}
// DeleteBatchResultData : has no documentation (yet)
type DeleteBatchResultData struct {
// Metadata : Metadata of the deleted object.
Metadata IsMetadata `json:"metadata"`
}
// NewDeleteBatchResultData returns a new DeleteBatchResultData instance
func NewDeleteBatchResultData(Metadata IsMetadata) *DeleteBatchResultData {
s := new(DeleteBatchResultData)
s.Metadata = Metadata
return s
}
// UnmarshalJSON deserializes into a DeleteBatchResultData instance
func (u *DeleteBatchResultData) UnmarshalJSON(b []byte) error {
type wrap struct {
// Metadata : Metadata of the deleted object.
Metadata json.RawMessage `json:"metadata"`
}
var w wrap
if err := json.Unmarshal(b, &w); err != nil {
return err
}
Metadata, err := IsMetadataFromJSON(w.Metadata)
if err != nil {
return err
}
u.Metadata = Metadata
return nil
}
// DeleteBatchResultEntry : has no documentation (yet)
type DeleteBatchResultEntry struct {
dropbox.Tagged
// Success : has no documentation (yet)
Success *DeleteBatchResultData `json:"success,omitempty"`
// Failure : has no documentation (yet)
Failure *DeleteError `json:"failure,omitempty"`
}
// Valid tag values for DeleteBatchResultEntry
const (
DeleteBatchResultEntrySuccess = "success"
DeleteBatchResultEntryFailure = "failure"
)
// UnmarshalJSON deserializes into a DeleteBatchResultEntry instance
func (u *DeleteBatchResultEntry) UnmarshalJSON(body []byte) error {
type wrap struct {
dropbox.Tagged
// Failure : has no documentation (yet)
Failure *DeleteError `json:"failure,omitempty"`
}
var w wrap
var err error
if err = json.Unmarshal(body, &w); err != nil {
return err
}
u.Tag = w.Tag
switch u.Tag {
case "success":
if err = json.Unmarshal(body, &u.Success); err != nil {
return err
}
case "failure":
u.Failure = w.Failure
}
return nil
}
// DeleteError : has no documentation (yet)
type DeleteError struct {
dropbox.Tagged
// PathLookup : has no documentation (yet)
PathLookup *LookupError `json:"path_lookup,omitempty"`
// PathWrite : has no documentation (yet)
PathWrite *WriteError `json:"path_write,omitempty"`
}
// Valid tag values for DeleteError
const (
DeleteErrorPathLookup = "path_lookup"
DeleteErrorPathWrite = "path_write"
DeleteErrorTooManyWriteOperations = "too_many_write_operations"
DeleteErrorTooManyFiles = "too_many_files"
DeleteErrorOther = "other"
)
// UnmarshalJSON deserializes into a DeleteError instance
func (u *DeleteError) UnmarshalJSON(body []byte) error {
type wrap struct {
dropbox.Tagged
// PathLookup : has no documentation (yet)
PathLookup *LookupError `json:"path_lookup,omitempty"`
// PathWrite : has no documentation (yet)
PathWrite *WriteError `json:"path_write,omitempty"`
}
var w wrap
var err error
if err = json.Unmarshal(body, &w); err != nil {
return err
}
u.Tag = w.Tag
switch u.Tag {
case "path_lookup":
u.PathLookup = w.PathLookup
case "path_write":
u.PathWrite = w.PathWrite
}
return nil
}
// DeleteResult : has no documentation (yet)
type DeleteResult struct {
FileOpsResult
// Metadata : Metadata of the deleted object.
Metadata IsMetadata `json:"metadata"`
}
// NewDeleteResult returns a new DeleteResult instance
func NewDeleteResult(Metadata IsMetadata) *DeleteResult {
s := new(DeleteResult)
s.Metadata = Metadata
return s
}
// UnmarshalJSON deserializes into a DeleteResult instance
func (u *DeleteResult) UnmarshalJSON(b []byte) error {
type wrap struct {
// Metadata : Metadata of the deleted object.
Metadata json.RawMessage `json:"metadata"`
}
var w wrap
if err := json.Unmarshal(b, &w); err != nil {
return err
}
Metadata, err := IsMetadataFromJSON(w.Metadata)
if err != nil {
return err
}
u.Metadata = Metadata
return nil
}
// Metadata : Metadata for a file or folder.
type Metadata struct {
// Name : The last component of the path (including extension). This never
// contains a slash.
Name string `json:"name"`
// PathLower : The lowercased full path in the user's Dropbox. This always
// starts with a slash. This field will be null if the file or folder is not
// mounted.
PathLower string `json:"path_lower,omitempty"`
// PathDisplay : The cased path to be used for display purposes only. In
// rare instances the casing will not correctly match the user's filesystem,
// but this behavior will match the path provided in the Core API v1, and at
// least the last path component will have the correct casing. Changes to
// only the casing of paths won't be returned by `listFolderContinue`. This
// field will be null if the file or folder is not mounted.
PathDisplay string `json:"path_display,omitempty"`
// ParentSharedFolderId : Please use
// `FileSharingInfo.parent_shared_folder_id` or
// `FolderSharingInfo.parent_shared_folder_id` instead.
ParentSharedFolderId string `json:"parent_shared_folder_id,omitempty"`
// PreviewUrl : The preview URL of the file.
PreviewUrl string `json:"preview_url,omitempty"`
}
// NewMetadata returns a new Metadata instance
func NewMetadata(Name string) *Metadata {
s := new(Metadata)
s.Name = Name
return s
}
// IsMetadata is the interface type for Metadata and its subtypes
type IsMetadata interface {
IsMetadata()
}
// IsMetadata implements the IsMetadata interface
func (u *Metadata) IsMetadata() {}
type metadataUnion struct {
dropbox.Tagged
// File : has no documentation (yet)
File *FileMetadata `json:"file,omitempty"`
// Folder : has no documentation (yet)
Folder *FolderMetadata `json:"folder,omitempty"`
// Deleted : has no documentation (yet)
Deleted *DeletedMetadata `json:"deleted,omitempty"`
}
// Valid tag values for Metadata
const (
MetadataFile = "file"
MetadataFolder = "folder"
MetadataDeleted = "deleted"
)
// UnmarshalJSON deserializes into a metadataUnion instance
func (u *metadataUnion) UnmarshalJSON(body []byte) error {
type wrap struct {
dropbox.Tagged
}
var w wrap
var err error
if err = json.Unmarshal(body, &w); err != nil {
return err
}
u.Tag = w.Tag
switch u.Tag {
case "file":
if err = json.Unmarshal(body, &u.File); err != nil {
return err
}
case "folder":
if err = json.Unmarshal(body, &u.Folder); err != nil {
return err
}
case "deleted":
if err = json.Unmarshal(body, &u.Deleted); err != nil {
return err
}
}
return nil
}
// IsMetadataFromJSON converts JSON to a concrete IsMetadata instance
func IsMetadataFromJSON(data []byte) (IsMetadata, error) {
var t metadataUnion
if err := json.Unmarshal(data, &t); err != nil {
return nil, err
}
switch t.Tag {
case "file":
return t.File, nil
case "folder":
return t.Folder, nil
case "deleted":
return t.Deleted, nil
}
return nil, nil
}
// DeletedMetadata : Indicates that there used to be a file or folder at this
// path, but it no longer exists.
type DeletedMetadata struct {
Metadata
}
// NewDeletedMetadata returns a new DeletedMetadata instance
func NewDeletedMetadata(Name string) *DeletedMetadata {
s := new(DeletedMetadata)
s.Name = Name
return s
}
// Dimensions : Dimensions for a photo or video.
type Dimensions struct {
// Height : Height of the photo/video.
Height uint64 `json:"height"`
// Width : Width of the photo/video.
Width uint64 `json:"width"`
}
// NewDimensions returns a new Dimensions instance
func NewDimensions(Height uint64, Width uint64) *Dimensions {
s := new(Dimensions)
s.Height = Height
s.Width = Width
return s
}
// DownloadArg : has no documentation (yet)
type DownloadArg struct {
// Path : The path of the file to download.
Path string `json:"path"`
// Rev : Please specify revision in `path` instead.
Rev string `json:"rev,omitempty"`
// ExtraHeaders can be used to pass Range, If-None-Match headers
ExtraHeaders map[string]string `json:"-"`
}
// NewDownloadArg returns a new DownloadArg instance
func NewDownloadArg(Path string) *DownloadArg {
s := new(DownloadArg)
s.Path = Path
return s
}
// DownloadError : has no documentation (yet)
type DownloadError struct {
dropbox.Tagged
// Path : has no documentation (yet)
Path *LookupError `json:"path,omitempty"`
}
// Valid tag values for DownloadError
const (
DownloadErrorPath = "path"
DownloadErrorUnsupportedFile = "unsupported_file"
DownloadErrorOther = "other"
)
// UnmarshalJSON deserializes into a DownloadError instance
func (u *DownloadError) UnmarshalJSON(body []byte) error {
type wrap struct {
dropbox.Tagged
// Path : has no documentation (yet)
Path *LookupError `json:"path,omitempty"`
}
var w wrap
var err error
if err = json.Unmarshal(body, &w); err != nil {
return err
}
u.Tag = w.Tag
switch u.Tag {
case "path":
u.Path = w.Path
}
return nil
}
// DownloadZipArg : has no documentation (yet)
type DownloadZipArg struct {
// Path : The path of the folder to download.
Path string `json:"path"`
}
// NewDownloadZipArg returns a new DownloadZipArg instance
func NewDownloadZipArg(Path string) *DownloadZipArg {
s := new(DownloadZipArg)
s.Path = Path
return s
}
// DownloadZipError : has no documentation (yet)
type DownloadZipError struct {
dropbox.Tagged
// Path : has no documentation (yet)
Path *LookupError `json:"path,omitempty"`
}
// Valid tag values for DownloadZipError
const (
DownloadZipErrorPath = "path"
DownloadZipErrorTooLarge = "too_large"
DownloadZipErrorTooManyFiles = "too_many_files"
DownloadZipErrorOther = "other"
)
// UnmarshalJSON deserializes into a DownloadZipError instance
func (u *DownloadZipError) UnmarshalJSON(body []byte) error {
type wrap struct {
dropbox.Tagged
// Path : has no documentation (yet)
Path *LookupError `json:"path,omitempty"`
}
var w wrap
var err error
if err = json.Unmarshal(body, &w); err != nil {
return err
}
u.Tag = w.Tag
switch u.Tag {
case "path":
u.Path = w.Path
}
return nil
}
// DownloadZipResult : has no documentation (yet)
type DownloadZipResult struct {
// Metadata : has no documentation (yet)
Metadata *FolderMetadata `json:"metadata"`
}
// NewDownloadZipResult returns a new DownloadZipResult instance
func NewDownloadZipResult(Metadata *FolderMetadata) *DownloadZipResult {
s := new(DownloadZipResult)
s.Metadata = Metadata
return s
}
// ExportArg : has no documentation (yet)
type ExportArg struct {
// Path : The path of the file to be exported.
Path string `json:"path"`
// ExportFormat : The file format to which the file should be exported. This
// must be one of the formats listed in the file's export_options returned
// by `getMetadata`. If none is specified, the default format (specified in
// export_as in file metadata) will be used.
ExportFormat string `json:"export_format,omitempty"`
}
// NewExportArg returns a new ExportArg instance
func NewExportArg(Path string) *ExportArg {
s := new(ExportArg)
s.Path = Path
return s
}
// ExportError : has no documentation (yet)
type ExportError struct {
dropbox.Tagged
// Path : has no documentation (yet)
Path *LookupError `json:"path,omitempty"`
}
// Valid tag values for ExportError
const (
ExportErrorPath = "path"
ExportErrorNonExportable = "non_exportable"
ExportErrorInvalidExportFormat = "invalid_export_format"
ExportErrorRetryError = "retry_error"
ExportErrorOther = "other"
)
// UnmarshalJSON deserializes into a ExportError instance
func (u *ExportError) UnmarshalJSON(body []byte) error {
type wrap struct {
dropbox.Tagged
// Path : has no documentation (yet)
Path *LookupError `json:"path,omitempty"`
}
var w wrap
var err error
if err = json.Unmarshal(body, &w); err != nil {
return err
}
u.Tag = w.Tag
switch u.Tag {
case "path":
u.Path = w.Path
}
return nil
}
// ExportInfo : Export information for a file.
type ExportInfo struct {
// ExportAs : Format to which the file can be exported to.
ExportAs string `json:"export_as,omitempty"`
// ExportOptions : Additional formats to which the file can be exported.
// These values can be specified as the export_format in /files/export.
ExportOptions []string `json:"export_options,omitempty"`
}
// NewExportInfo returns a new ExportInfo instance
func NewExportInfo() *ExportInfo {
s := new(ExportInfo)
return s
}
// ExportMetadata : has no documentation (yet)
type ExportMetadata struct {
// Name : The last component of the path (including extension). This never
// contains a slash.
Name string `json:"name"`
// Size : The file size in bytes.
Size uint64 `json:"size"`
// ExportHash : A hash based on the exported file content. This field can be
// used to verify data integrity. Similar to content hash. For more
// information see our `Content hash`
// <https://www.dropbox.com/developers/reference/content-hash> page.
ExportHash string `json:"export_hash,omitempty"`
// PaperRevision : If the file is a Paper doc, this gives the latest doc
// revision which can be used in `paperUpdate`.
PaperRevision int64 `json:"paper_revision,omitempty"`
}
// NewExportMetadata returns a new ExportMetadata instance
func NewExportMetadata(Name string, Size uint64) *ExportMetadata {
s := new(ExportMetadata)
s.Name = Name
s.Size = Size
return s
}
// ExportResult : has no documentation (yet)
type ExportResult struct {
// ExportMetadata : Metadata for the exported version of the file.
ExportMetadata *ExportMetadata `json:"export_metadata"`
// FileMetadata : Metadata for the original file.
FileMetadata *FileMetadata `json:"file_metadata"`
}
// NewExportResult returns a new ExportResult instance
func NewExportResult(ExportMetadata *ExportMetadata, FileMetadata *FileMetadata) *ExportResult {
s := new(ExportResult)
s.ExportMetadata = ExportMetadata
s.FileMetadata = FileMetadata
return s
}
// FileCategory : has no documentation (yet)
type FileCategory struct {
dropbox.Tagged
}
// Valid tag values for FileCategory
const (
FileCategoryImage = "image"
FileCategoryDocument = "document"
FileCategoryPdf = "pdf"
FileCategorySpreadsheet = "spreadsheet"
FileCategoryPresentation = "presentation"
FileCategoryAudio = "audio"
FileCategoryVideo = "video"
FileCategoryFolder = "folder"
FileCategoryPaper = "paper"
FileCategoryOthers = "others"
FileCategoryOther = "other"
)
// FileLock : has no documentation (yet)
type FileLock struct {
// Content : The lock description.
Content *FileLockContent `json:"content"`
}
// NewFileLock returns a new FileLock instance
func NewFileLock(Content *FileLockContent) *FileLock {
s := new(FileLock)
s.Content = Content
return s
}
// FileLockContent : has no documentation (yet)
type FileLockContent struct {
dropbox.Tagged
// SingleUser : A lock held by a single user.
SingleUser *SingleUserLock `json:"single_user,omitempty"`
}
// Valid tag values for FileLockContent
const (
FileLockContentUnlocked = "unlocked"
FileLockContentSingleUser = "single_user"
FileLockContentOther = "other"
)
// UnmarshalJSON deserializes into a FileLockContent instance
func (u *FileLockContent) UnmarshalJSON(body []byte) error {
type wrap struct {
dropbox.Tagged
}
var w wrap
var err error
if err = json.Unmarshal(body, &w); err != nil {
return err
}
u.Tag = w.Tag
switch u.Tag {
case "single_user":
if err = json.Unmarshal(body, &u.SingleUser); err != nil {
return err
}
}
return nil
}
// FileLockMetadata : has no documentation (yet)
type FileLockMetadata struct {
// IsLockholder : True if caller holds the file lock.
IsLockholder bool `json:"is_lockholder,omitempty"`
// LockholderName : The display name of the lock holder.
LockholderName string `json:"lockholder_name,omitempty"`
// LockholderAccountId : The account ID of the lock holder if known.
LockholderAccountId string `json:"lockholder_account_id,omitempty"`
// Created : The timestamp of the lock was created.
Created *time.Time `json:"created,omitempty"`
}
// NewFileLockMetadata returns a new FileLockMetadata instance
func NewFileLockMetadata() *FileLockMetadata {
s := new(FileLockMetadata)
return s
}
// FileMetadata : has no documentation (yet)
type FileMetadata struct {
Metadata
// Id : A unique identifier for the file.
Id string `json:"id"`
// ClientModified : For files, this is the modification time set by the
// desktop client when the file was added to Dropbox. Since this time is not
// verified (the Dropbox server stores whatever the desktop client sends
// up), this should only be used for display purposes (such as sorting) and
// not, for example, to determine if a file has changed or not.
ClientModified time.Time `json:"client_modified"`
// ServerModified : The last time the file was modified on Dropbox.
ServerModified time.Time `json:"server_modified"`
// Rev : A unique identifier for the current revision of a file. This field
// is the same rev as elsewhere in the API and can be used to detect changes
// and avoid conflicts.
Rev string `json:"rev"`
// Size : The file size in bytes.
Size uint64 `json:"size"`
// MediaInfo : Additional information if the file is a photo or video. This
// field will not be set on entries returned by `listFolder`,
// `listFolderContinue`, or `getThumbnailBatch`, starting December 2, 2019.
MediaInfo *MediaInfo `json:"media_info,omitempty"`
// SymlinkInfo : Set if this file is a symlink.
SymlinkInfo *SymlinkInfo `json:"symlink_info,omitempty"`
// SharingInfo : Set if this file is contained in a shared folder.
SharingInfo *FileSharingInfo `json:"sharing_info,omitempty"`
// IsDownloadable : If true, file can be downloaded directly; else the file
// must be exported.
IsDownloadable bool `json:"is_downloadable"`
// ExportInfo : Information about format this file can be exported to. This
// filed must be set if `is_downloadable` is set to false.
ExportInfo *ExportInfo `json:"export_info,omitempty"`
// PropertyGroups : Additional information if the file has custom properties
// with the property template specified.
PropertyGroups []*file_properties.PropertyGroup `json:"property_groups,omitempty"`
// HasExplicitSharedMembers : This flag will only be present if
// include_has_explicit_shared_members is true in `listFolder` or
// `getMetadata`. If this flag is present, it will be true if this file has
// any explicit shared members. This is different from sharing_info in that
// this could be true in the case where a file has explicit members but is
// not contained within a shared folder.
HasExplicitSharedMembers bool `json:"has_explicit_shared_members,omitempty"`
// ContentHash : A hash of the file content. This field can be used to
// verify data integrity. For more information see our `Content hash`
// <https://www.dropbox.com/developers/reference/content-hash> page.
ContentHash string `json:"content_hash,omitempty"`
// FileLockInfo : If present, the metadata associated with the file's
// current lock.
FileLockInfo *FileLockMetadata `json:"file_lock_info,omitempty"`
}
// NewFileMetadata returns a new FileMetadata instance
func NewFileMetadata(Name string, Id string, ClientModified time.Time, ServerModified time.Time, Rev string, Size uint64) *FileMetadata {
s := new(FileMetadata)
s.Name = Name
s.Id = Id
s.ClientModified = ClientModified
s.ServerModified = ServerModified
s.Rev = Rev
s.Size = Size
s.IsDownloadable = true
return s
}
// SharingInfo : Sharing info for a file or folder.
type SharingInfo struct {
// ReadOnly : True if the file or folder is inside a read-only shared
// folder.
ReadOnly bool `json:"read_only"`
}
// NewSharingInfo returns a new SharingInfo instance
func NewSharingInfo(ReadOnly bool) *SharingInfo {
s := new(SharingInfo)
s.ReadOnly = ReadOnly
return s
}
// FileSharingInfo : Sharing info for a file which is contained by a shared
// folder.
type FileSharingInfo struct {
SharingInfo
// ParentSharedFolderId : ID of shared folder that holds this file.
ParentSharedFolderId string `json:"parent_shared_folder_id"`
// ModifiedBy : The last user who modified the file. This field will be null
// if the user's account has been deleted.
ModifiedBy string `json:"modified_by,omitempty"`
}
// NewFileSharingInfo returns a new FileSharingInfo instance
func NewFileSharingInfo(ReadOnly bool, ParentSharedFolderId string) *FileSharingInfo {
s := new(FileSharingInfo)
s.ReadOnly = ReadOnly
s.ParentSharedFolderId = ParentSharedFolderId
return s
}
// FileStatus : has no documentation (yet)
type FileStatus struct {
dropbox.Tagged
}
// Valid tag values for FileStatus
const (
FileStatusActive = "active"
FileStatusDeleted = "deleted"
FileStatusOther = "other"
)
// FolderMetadata : has no documentation (yet)
type FolderMetadata struct {
Metadata
// Id : A unique identifier for the folder.
Id string `json:"id"`
// SharedFolderId : Please use `sharing_info` instead.
SharedFolderId string `json:"shared_folder_id,omitempty"`
// SharingInfo : Set if the folder is contained in a shared folder or is a
// shared folder mount point.
SharingInfo *FolderSharingInfo `json:"sharing_info,omitempty"`
// PropertyGroups : Additional information if the file has custom properties
// with the property template specified. Note that only properties
// associated with user-owned templates, not team-owned templates, can be
// attached to folders.
PropertyGroups []*file_properties.PropertyGroup `json:"property_groups,omitempty"`
}
// NewFolderMetadata returns a new FolderMetadata instance
func NewFolderMetadata(Name string, Id string) *FolderMetadata {
s := new(FolderMetadata)
s.Name = Name
s.Id = Id
return s
}
// FolderSharingInfo : Sharing info for a folder which is contained in a shared
// folder or is a shared folder mount point.
type FolderSharingInfo struct {
SharingInfo
// ParentSharedFolderId : Set if the folder is contained by a shared folder.
ParentSharedFolderId string `json:"parent_shared_folder_id,omitempty"`
// SharedFolderId : If this folder is a shared folder mount point, the ID of
// the shared folder mounted at this location.
SharedFolderId string `json:"shared_folder_id,omitempty"`
// TraverseOnly : Specifies that the folder can only be traversed and the
// user can only see a limited subset of the contents of this folder because
// they don't have read access to this folder. They do, however, have access
// to some sub folder.
TraverseOnly bool `json:"traverse_only"`
// NoAccess : Specifies that the folder cannot be accessed by the user.
NoAccess bool `json:"no_access"`
}
// NewFolderSharingInfo returns a new FolderSharingInfo instance
func NewFolderSharingInfo(ReadOnly bool) *FolderSharingInfo {
s := new(FolderSharingInfo)
s.ReadOnly = ReadOnly
s.TraverseOnly = false
s.NoAccess = false
return s
}
// GetCopyReferenceArg : has no documentation (yet)
type GetCopyReferenceArg struct {
// Path : The path to the file or folder you want to get a copy reference
// to.
Path string `json:"path"`
}
// NewGetCopyReferenceArg returns a new GetCopyReferenceArg instance
func NewGetCopyReferenceArg(Path string) *GetCopyReferenceArg {
s := new(GetCopyReferenceArg)
s.Path = Path
return s
}
// GetCopyReferenceError : has no documentation (yet)
type GetCopyReferenceError struct {
dropbox.Tagged
// Path : has no documentation (yet)
Path *LookupError `json:"path,omitempty"`
}
// Valid tag values for GetCopyReferenceError
const (
GetCopyReferenceErrorPath = "path"
GetCopyReferenceErrorOther = "other"
)
// UnmarshalJSON deserializes into a GetCopyReferenceError instance
func (u *GetCopyReferenceError) UnmarshalJSON(body []byte) error {
type wrap struct {
dropbox.Tagged
// Path : has no documentation (yet)
Path *LookupError `json:"path,omitempty"`
}
var w wrap
var err error
if err = json.Unmarshal(body, &w); err != nil {
return err
}
u.Tag = w.Tag
switch u.Tag {
case "path":
u.Path = w.Path
}
return nil
}
// GetCopyReferenceResult : has no documentation (yet)
type GetCopyReferenceResult struct {
// Metadata : Metadata of the file or folder.
Metadata IsMetadata `json:"metadata"`
// CopyReference : A copy reference to the file or folder.
CopyReference string `json:"copy_reference"`
// Expires : The expiration date of the copy reference. This value is
// currently set to be far enough in the future so that expiration is
// effectively not an issue.
Expires time.Time `json:"expires"`
}
// NewGetCopyReferenceResult returns a new GetCopyReferenceResult instance
func NewGetCopyReferenceResult(Metadata IsMetadata, CopyReference string, Expires time.Time) *GetCopyReferenceResult {
s := new(GetCopyReferenceResult)
s.Metadata = Metadata
s.CopyReference = CopyReference
s.Expires = Expires
return s
}
// UnmarshalJSON deserializes into a GetCopyReferenceResult instance
func (u *GetCopyReferenceResult) UnmarshalJSON(b []byte) error {
type wrap struct {
// Metadata : Metadata of the file or folder.
Metadata json.RawMessage `json:"metadata"`
// CopyReference : A copy reference to the file or folder.
CopyReference string `json:"copy_reference"`
// Expires : The expiration date of the copy reference. This value is
// currently set to be far enough in the future so that expiration is
// effectively not an issue.
Expires time.Time `json:"expires"`
}
var w wrap
if err := json.Unmarshal(b, &w); err != nil {
return err
}
Metadata, err := IsMetadataFromJSON(w.Metadata)
if err != nil {
return err
}
u.Metadata = Metadata
u.CopyReference = w.CopyReference
u.Expires = w.Expires
return nil
}
// GetTagsArg : has no documentation (yet)
type GetTagsArg struct {
// Paths : Path to the items.
Paths []string `json:"paths"`
}
// NewGetTagsArg returns a new GetTagsArg instance
func NewGetTagsArg(Paths []string) *GetTagsArg {
s := new(GetTagsArg)
s.Paths = Paths
return s
}
// GetTagsResult : has no documentation (yet)
type GetTagsResult struct {
// PathsToTags : List of paths and their corresponding tags.
PathsToTags []*PathToTags `json:"paths_to_tags"`
}
// NewGetTagsResult returns a new GetTagsResult instance
func NewGetTagsResult(PathsToTags []*PathToTags) *GetTagsResult {
s := new(GetTagsResult)
s.PathsToTags = PathsToTags
return s
}
// GetTemporaryLinkArg : has no documentation (yet)
type GetTemporaryLinkArg struct {
// Path : The path to the file you want a temporary link to.
Path string `json:"path"`
}
// NewGetTemporaryLinkArg returns a new GetTemporaryLinkArg instance
func NewGetTemporaryLinkArg(Path string) *GetTemporaryLinkArg {
s := new(GetTemporaryLinkArg)
s.Path = Path
return s
}
// GetTemporaryLinkError : has no documentation (yet)
type GetTemporaryLinkError struct {
dropbox.Tagged
// Path : has no documentation (yet)
Path *LookupError `json:"path,omitempty"`
}
// Valid tag values for GetTemporaryLinkError
const (
GetTemporaryLinkErrorPath = "path"
GetTemporaryLinkErrorEmailNotVerified = "email_not_verified"
GetTemporaryLinkErrorUnsupportedFile = "unsupported_file"
GetTemporaryLinkErrorNotAllowed = "not_allowed"
GetTemporaryLinkErrorOther = "other"
)
// UnmarshalJSON deserializes into a GetTemporaryLinkError instance
func (u *GetTemporaryLinkError) UnmarshalJSON(body []byte) error {
type wrap struct {
dropbox.Tagged
// Path : has no documentation (yet)
Path *LookupError `json:"path,omitempty"`
}
var w wrap
var err error
if err = json.Unmarshal(body, &w); err != nil {
return err
}
u.Tag = w.Tag
switch u.Tag {
case "path":
u.Path = w.Path
}
return nil
}
// GetTemporaryLinkResult : has no documentation (yet)
type GetTemporaryLinkResult struct {
// Metadata : Metadata of the file.
Metadata *FileMetadata `json:"metadata"`
// Link : The temporary link which can be used to stream content the file.
Link string `json:"link"`
}
// NewGetTemporaryLinkResult returns a new GetTemporaryLinkResult instance
func NewGetTemporaryLinkResult(Metadata *FileMetadata, Link string) *GetTemporaryLinkResult {
s := new(GetTemporaryLinkResult)
s.Metadata = Metadata
s.Link = Link
return s
}
// GetTemporaryUploadLinkArg : has no documentation (yet)
type GetTemporaryUploadLinkArg struct {
// CommitInfo : Contains the path and other optional modifiers for the
// future upload commit. Equivalent to the parameters provided to `upload`.
CommitInfo *CommitInfo `json:"commit_info"`
// Duration : How long before this link expires, in seconds. Attempting to
// start an upload with this link longer than this period of time after
// link creation will result in an error.
Duration float64 `json:"duration"`
}
// NewGetTemporaryUploadLinkArg returns a new GetTemporaryUploadLinkArg instance
func NewGetTemporaryUploadLinkArg(CommitInfo *CommitInfo) *GetTemporaryUploadLinkArg {
s := new(GetTemporaryUploadLinkArg)
s.CommitInfo = CommitInfo
s.Duration = 14400.0
return s
}
// GetTemporaryUploadLinkResult : has no documentation (yet)
type GetTemporaryUploadLinkResult struct {
// Link : The temporary link which can be used to stream a file to a Dropbox
// location.
Link string `json:"link"`
}
// NewGetTemporaryUploadLinkResult returns a new GetTemporaryUploadLinkResult instance
func NewGetTemporaryUploadLinkResult(Link string) *GetTemporaryUploadLinkResult {
s := new(GetTemporaryUploadLinkResult)
s.Link = Link
return s
}
// GetThumbnailBatchArg : Arguments for `getThumbnailBatch`.
type GetThumbnailBatchArg struct {
// Entries : List of files to get thumbnails.
Entries []*ThumbnailArg `json:"entries"`
}
// NewGetThumbnailBatchArg returns a new GetThumbnailBatchArg instance
func NewGetThumbnailBatchArg(Entries []*ThumbnailArg) *GetThumbnailBatchArg {
s := new(GetThumbnailBatchArg)
s.Entries = Entries
return s
}
// GetThumbnailBatchError : has no documentation (yet)
type GetThumbnailBatchError struct {
dropbox.Tagged
}
// Valid tag values for GetThumbnailBatchError
const (
GetThumbnailBatchErrorTooManyFiles = "too_many_files"
GetThumbnailBatchErrorOther = "other"
)
// GetThumbnailBatchResult : has no documentation (yet)
type GetThumbnailBatchResult struct {
// Entries : List of files and their thumbnails.
Entries []*GetThumbnailBatchResultEntry `json:"entries"`
}
// NewGetThumbnailBatchResult returns a new GetThumbnailBatchResult instance
func NewGetThumbnailBatchResult(Entries []*GetThumbnailBatchResultEntry) *GetThumbnailBatchResult {
s := new(GetThumbnailBatchResult)
s.Entries = Entries
return s
}
// GetThumbnailBatchResultData : has no documentation (yet)
type GetThumbnailBatchResultData struct {
// Metadata : has no documentation (yet)
Metadata *FileMetadata `json:"metadata"`
// Thumbnail : A string containing the base64-encoded thumbnail data for
// this file.
Thumbnail string `json:"thumbnail"`
}
// NewGetThumbnailBatchResultData returns a new GetThumbnailBatchResultData instance
func NewGetThumbnailBatchResultData(Metadata *FileMetadata, Thumbnail string) *GetThumbnailBatchResultData {
s := new(GetThumbnailBatchResultData)
s.Metadata = Metadata
s.Thumbnail = Thumbnail
return s
}
// GetThumbnailBatchResultEntry : has no documentation (yet)
type GetThumbnailBatchResultEntry struct {
dropbox.Tagged
// Success : has no documentation (yet)
Success *GetThumbnailBatchResultData `json:"success,omitempty"`
// Failure : The result for this file if it was an error.
Failure *ThumbnailError `json:"failure,omitempty"`
}
// Valid tag values for GetThumbnailBatchResultEntry
const (
GetThumbnailBatchResultEntrySuccess = "success"
GetThumbnailBatchResultEntryFailure = "failure"
GetThumbnailBatchResultEntryOther = "other"
)
// UnmarshalJSON deserializes into a GetThumbnailBatchResultEntry instance
func (u *GetThumbnailBatchResultEntry) UnmarshalJSON(body []byte) error {
type wrap struct {
dropbox.Tagged
// Failure : The result for this file if it was an error.
Failure *ThumbnailError `json:"failure,omitempty"`
}
var w wrap
var err error
if err = json.Unmarshal(body, &w); err != nil {
return err
}
u.Tag = w.Tag
switch u.Tag {
case "success":
if err = json.Unmarshal(body, &u.Success); err != nil {
return err
}
case "failure":
u.Failure = w.Failure
}
return nil
}
// GpsCoordinates : GPS coordinates for a photo or video.
type GpsCoordinates struct {
// Latitude : Latitude of the GPS coordinates.
Latitude float64 `json:"latitude"`
// Longitude : Longitude of the GPS coordinates.
Longitude float64 `json:"longitude"`
}
// NewGpsCoordinates returns a new GpsCoordinates instance
func NewGpsCoordinates(Latitude float64, Longitude float64) *GpsCoordinates {
s := new(GpsCoordinates)
s.Latitude = Latitude
s.Longitude = Longitude
return s
}
// HighlightSpan : has no documentation (yet)
type HighlightSpan struct {
// HighlightStr : String to be determined whether it should be highlighted
// or not.
HighlightStr string `json:"highlight_str"`
// IsHighlighted : The string should be highlighted or not.
IsHighlighted bool `json:"is_highlighted"`
}
// NewHighlightSpan returns a new HighlightSpan instance
func NewHighlightSpan(HighlightStr string, IsHighlighted bool) *HighlightSpan {
s := new(HighlightSpan)
s.HighlightStr = HighlightStr
s.IsHighlighted = IsHighlighted
return s
}
// ImportFormat : The import format of the incoming Paper doc content.
type ImportFormat struct {
dropbox.Tagged
}
// Valid tag values for ImportFormat
const (
ImportFormatHtml = "html"
ImportFormatMarkdown = "markdown"
ImportFormatPlainText = "plain_text"
ImportFormatOther = "other"
)
// ListFolderArg : has no documentation (yet)
type ListFolderArg struct {
// Path : A unique identifier for the file.
Path string `json:"path"`
// Recursive : If true, the list folder operation will be applied
// recursively to all subfolders and the response will contain contents of
// all subfolders.
Recursive bool `json:"recursive"`
// IncludeMediaInfo : If true, `FileMetadata.media_info` is set for photo
// and video. This parameter will no longer have an effect starting December
// 2, 2019.
IncludeMediaInfo bool `json:"include_media_info"`
// IncludeDeleted : If true, the results will include entries for files and
// folders that used to exist but were deleted.
IncludeDeleted bool `json:"include_deleted"`
// IncludeHasExplicitSharedMembers : If true, the results will include a
// flag for each file indicating whether or not that file has any explicit
// members.
IncludeHasExplicitSharedMembers bool `json:"include_has_explicit_shared_members"`
// IncludeMountedFolders : If true, the results will include entries under
// mounted folders which includes app folder, shared folder and team folder.
IncludeMountedFolders bool `json:"include_mounted_folders"`
// Limit : The maximum number of results to return per request. Note: This
// is an approximate number and there can be slightly more entries returned
// in some cases.
Limit uint32 `json:"limit,omitempty"`
// SharedLink : A shared link to list the contents of. If the link is
// password-protected, the password must be provided. If this field is
// present, `ListFolderArg.path` will be relative to root of the shared
// link. Only non-recursive mode is supported for shared link.
SharedLink *SharedLink `json:"shared_link,omitempty"`
// IncludePropertyGroups : If set to a valid list of template IDs,
// `FileMetadata.property_groups` is set if there exists property data
// associated with the file and each of the listed templates.
IncludePropertyGroups *file_properties.TemplateFilterBase `json:"include_property_groups,omitempty"`
// IncludeNonDownloadableFiles : If true, include files that are not
// downloadable, i.e. Google Docs.
IncludeNonDownloadableFiles bool `json:"include_non_downloadable_files"`
}
// NewListFolderArg returns a new ListFolderArg instance
func NewListFolderArg(Path string) *ListFolderArg {
s := new(ListFolderArg)
s.Path = Path
s.Recursive = false
s.IncludeMediaInfo = false
s.IncludeDeleted = false
s.IncludeHasExplicitSharedMembers = false
s.IncludeMountedFolders = true
s.IncludeNonDownloadableFiles = true
return s
}
// ListFolderContinueArg : has no documentation (yet)
type ListFolderContinueArg struct {
// Cursor : The cursor returned by your last call to `listFolder` or
// `listFolderContinue`.
Cursor string `json:"cursor"`
}
// NewListFolderContinueArg returns a new ListFolderContinueArg instance
func NewListFolderContinueArg(Cursor string) *ListFolderContinueArg {
s := new(ListFolderContinueArg)
s.Cursor = Cursor
return s
}
// ListFolderContinueError : has no documentation (yet)
type ListFolderContinueError struct {
dropbox.Tagged
// Path : has no documentation (yet)
Path *LookupError `json:"path,omitempty"`
}
// Valid tag values for ListFolderContinueError
const (
ListFolderContinueErrorPath = "path"
ListFolderContinueErrorReset = "reset"
ListFolderContinueErrorOther = "other"
)
// UnmarshalJSON deserializes into a ListFolderContinueError instance
func (u *ListFolderContinueError) UnmarshalJSON(body []byte) error {
type wrap struct {
dropbox.Tagged
// Path : has no documentation (yet)
Path *LookupError `json:"path,omitempty"`
}
var w wrap
var err error
if err = json.Unmarshal(body, &w); err != nil {
return err
}
u.Tag = w.Tag
switch u.Tag {
case "path":
u.Path = w.Path
}
return nil
}
// ListFolderError : has no documentation (yet)
type ListFolderError struct {
dropbox.Tagged
// Path : has no documentation (yet)
Path *LookupError `json:"path,omitempty"`
// TemplateError : has no documentation (yet)
TemplateError *file_properties.TemplateError `json:"template_error,omitempty"`
}
// Valid tag values for ListFolderError
const (
ListFolderErrorPath = "path"
ListFolderErrorTemplateError = "template_error"
ListFolderErrorOther = "other"
)
// UnmarshalJSON deserializes into a ListFolderError instance
func (u *ListFolderError) UnmarshalJSON(body []byte) error {
type wrap struct {
dropbox.Tagged
// Path : has no documentation (yet)
Path *LookupError `json:"path,omitempty"`
// TemplateError : has no documentation (yet)
TemplateError *file_properties.TemplateError `json:"template_error,omitempty"`
}
var w wrap
var err error
if err = json.Unmarshal(body, &w); err != nil {
return err
}
u.Tag = w.Tag
switch u.Tag {
case "path":
u.Path = w.Path
case "template_error":
u.TemplateError = w.TemplateError
}
return nil
}
// ListFolderGetLatestCursorResult : has no documentation (yet)
type ListFolderGetLatestCursorResult struct {
// Cursor : Pass the cursor into `listFolderContinue` to see what's changed
// in the folder since your previous query.
Cursor string `json:"cursor"`
}
// NewListFolderGetLatestCursorResult returns a new ListFolderGetLatestCursorResult instance
func NewListFolderGetLatestCursorResult(Cursor string) *ListFolderGetLatestCursorResult {
s := new(ListFolderGetLatestCursorResult)
s.Cursor = Cursor
return s
}
// ListFolderLongpollArg : has no documentation (yet)
type ListFolderLongpollArg struct {
// Cursor : A cursor as returned by `listFolder` or `listFolderContinue`.
// Cursors retrieved by setting `ListFolderArg.include_media_info` to true
// are not supported.
Cursor string `json:"cursor"`
// Timeout : A timeout in seconds. The request will block for at most this
// length of time, plus up to 90 seconds of random jitter added to avoid the
// thundering herd problem. Care should be taken when using this parameter,
// as some network infrastructure does not support long timeouts.
Timeout uint64 `json:"timeout"`
}
// NewListFolderLongpollArg returns a new ListFolderLongpollArg instance
func NewListFolderLongpollArg(Cursor string) *ListFolderLongpollArg {
s := new(ListFolderLongpollArg)
s.Cursor = Cursor
s.Timeout = 30
return s
}
// ListFolderLongpollError : has no documentation (yet)
type ListFolderLongpollError struct {
dropbox.Tagged
}
// Valid tag values for ListFolderLongpollError
const (
ListFolderLongpollErrorReset = "reset"
ListFolderLongpollErrorOther = "other"
)
// ListFolderLongpollResult : has no documentation (yet)
type ListFolderLongpollResult struct {
// Changes : Indicates whether new changes are available. If true, call
// `listFolderContinue` to retrieve the changes.
Changes bool `json:"changes"`
// Backoff : If present, backoff for at least this many seconds before
// calling `listFolderLongpoll` again.
Backoff uint64 `json:"backoff,omitempty"`
}
// NewListFolderLongpollResult returns a new ListFolderLongpollResult instance
func NewListFolderLongpollResult(Changes bool) *ListFolderLongpollResult {
s := new(ListFolderLongpollResult)
s.Changes = Changes
return s
}
// ListFolderResult : has no documentation (yet)
type ListFolderResult struct {
// Entries : The files and (direct) subfolders in the folder.
Entries []IsMetadata `json:"entries"`
// Cursor : Pass the cursor into `listFolderContinue` to see what's changed
// in the folder since your previous query.
Cursor string `json:"cursor"`
// HasMore : If true, then there are more entries available. Pass the cursor
// to `listFolderContinue` to retrieve the rest.
HasMore bool `json:"has_more"`
}
// NewListFolderResult returns a new ListFolderResult instance
func NewListFolderResult(Entries []IsMetadata, Cursor string, HasMore bool) *ListFolderResult {
s := new(ListFolderResult)
s.Entries = Entries
s.Cursor = Cursor
s.HasMore = HasMore
return s
}
// UnmarshalJSON deserializes into a ListFolderResult instance
func (u *ListFolderResult) UnmarshalJSON(b []byte) error {
type wrap struct {
// Entries : The files and (direct) subfolders in the folder.
Entries []json.RawMessage `json:"entries"`
// Cursor : Pass the cursor into `listFolderContinue` to see what's
// changed in the folder since your previous query.
Cursor string `json:"cursor"`
// HasMore : If true, then there are more entries available. Pass the
// cursor to `listFolderContinue` to retrieve the rest.
HasMore bool `json:"has_more"`
}
var w wrap
if err := json.Unmarshal(b, &w); err != nil {
return err
}
u.Entries = make([]IsMetadata, len(w.Entries))
for i, e := range w.Entries {
v, err := IsMetadataFromJSON(e)
if err != nil {
return err
}
u.Entries[i] = v
}
u.Cursor = w.Cursor
u.HasMore = w.HasMore
return nil
}
// ListRevisionsArg : has no documentation (yet)
type ListRevisionsArg struct {
// Path : The path to the file you want to see the revisions of.
Path string `json:"path"`
// Mode : Determines the behavior of the API in listing the revisions for a
// given file path or id.
Mode *ListRevisionsMode `json:"mode"`
// Limit : The maximum number of revision entries returned.
Limit uint64 `json:"limit"`
}
// NewListRevisionsArg returns a new ListRevisionsArg instance
func NewListRevisionsArg(Path string) *ListRevisionsArg {
s := new(ListRevisionsArg)
s.Path = Path
s.Mode = &ListRevisionsMode{Tagged: dropbox.Tagged{Tag: "path"}}
s.Limit = 10
return s
}
// ListRevisionsError : has no documentation (yet)
type ListRevisionsError struct {
dropbox.Tagged
// Path : has no documentation (yet)
Path *LookupError `json:"path,omitempty"`
}
// Valid tag values for ListRevisionsError
const (
ListRevisionsErrorPath = "path"
ListRevisionsErrorOther = "other"
)
// UnmarshalJSON deserializes into a ListRevisionsError instance
func (u *ListRevisionsError) UnmarshalJSON(body []byte) error {
type wrap struct {
dropbox.Tagged
// Path : has no documentation (yet)
Path *LookupError `json:"path,omitempty"`
}
var w wrap
var err error
if err = json.Unmarshal(body, &w); err != nil {
return err
}
u.Tag = w.Tag
switch u.Tag {
case "path":
u.Path = w.Path
}
return nil
}
// ListRevisionsMode : has no documentation (yet)
type ListRevisionsMode struct {
dropbox.Tagged
}
// Valid tag values for ListRevisionsMode
const (
ListRevisionsModePath = "path"
ListRevisionsModeId = "id"
ListRevisionsModeOther = "other"
)
// ListRevisionsResult : has no documentation (yet)
type ListRevisionsResult struct {
// IsDeleted : If the file identified by the latest revision in the response
// is either deleted or moved.
IsDeleted bool `json:"is_deleted"`
// ServerDeleted : The time of deletion if the file was deleted.
ServerDeleted *time.Time `json:"server_deleted,omitempty"`
// Entries : The revisions for the file. Only revisions that are not deleted
// will show up here.
Entries []*FileMetadata `json:"entries"`
}
// NewListRevisionsResult returns a new ListRevisionsResult instance
func NewListRevisionsResult(IsDeleted bool, Entries []*FileMetadata) *ListRevisionsResult {
s := new(ListRevisionsResult)
s.IsDeleted = IsDeleted
s.Entries = Entries
return s
}
// LockConflictError : has no documentation (yet)
type LockConflictError struct {
// Lock : The lock that caused the conflict.
Lock *FileLock `json:"lock"`
}
// NewLockConflictError returns a new LockConflictError instance
func NewLockConflictError(Lock *FileLock) *LockConflictError {
s := new(LockConflictError)
s.Lock = Lock
return s
}
// LockFileArg : has no documentation (yet)
type LockFileArg struct {
// Path : Path in the user's Dropbox to a file.
Path string `json:"path"`
}
// NewLockFileArg returns a new LockFileArg instance
func NewLockFileArg(Path string) *LockFileArg {
s := new(LockFileArg)
s.Path = Path
return s
}
// LockFileBatchArg : has no documentation (yet)
type LockFileBatchArg struct {
// Entries : List of 'entries'. Each 'entry' contains a path of the file
// which will be locked or queried. Duplicate path arguments in the batch
// are considered only once.
Entries []*LockFileArg `json:"entries"`
}
// NewLockFileBatchArg returns a new LockFileBatchArg instance
func NewLockFileBatchArg(Entries []*LockFileArg) *LockFileBatchArg {
s := new(LockFileBatchArg)
s.Entries = Entries
return s
}
// LockFileBatchResult : has no documentation (yet)
type LockFileBatchResult struct {
FileOpsResult
// Entries : Each Entry in the 'entries' will have '.tag' with the operation
// status (e.g. success), the metadata for the file and the lock state after
// the operation.
Entries []*LockFileResultEntry `json:"entries"`
}
// NewLockFileBatchResult returns a new LockFileBatchResult instance
func NewLockFileBatchResult(Entries []*LockFileResultEntry) *LockFileBatchResult {
s := new(LockFileBatchResult)
s.Entries = Entries
return s
}
// LockFileError : has no documentation (yet)
type LockFileError struct {
dropbox.Tagged
// PathLookup : Could not find the specified resource.
PathLookup *LookupError `json:"path_lookup,omitempty"`
// LockConflict : The user action conflicts with an existing lock on the
// file.
LockConflict *LockConflictError `json:"lock_conflict,omitempty"`
}
// Valid tag values for LockFileError
const (
LockFileErrorPathLookup = "path_lookup"
LockFileErrorTooManyWriteOperations = "too_many_write_operations"
LockFileErrorTooManyFiles = "too_many_files"
LockFileErrorNoWritePermission = "no_write_permission"
LockFileErrorCannotBeLocked = "cannot_be_locked"
LockFileErrorFileNotShared = "file_not_shared"
LockFileErrorLockConflict = "lock_conflict"
LockFileErrorInternalError = "internal_error"
LockFileErrorOther = "other"
)
// UnmarshalJSON deserializes into a LockFileError instance
func (u *LockFileError) UnmarshalJSON(body []byte) error {
type wrap struct {
dropbox.Tagged
// PathLookup : Could not find the specified resource.
PathLookup *LookupError `json:"path_lookup,omitempty"`
}
var w wrap
var err error
if err = json.Unmarshal(body, &w); err != nil {
return err
}
u.Tag = w.Tag
switch u.Tag {
case "path_lookup":
u.PathLookup = w.PathLookup
case "lock_conflict":
if err = json.Unmarshal(body, &u.LockConflict); err != nil {
return err
}
}
return nil
}
// LockFileResult : has no documentation (yet)
type LockFileResult struct {
// Metadata : Metadata of the file.
Metadata IsMetadata `json:"metadata"`
// Lock : The file lock state after the operation.
Lock *FileLock `json:"lock"`
}
// NewLockFileResult returns a new LockFileResult instance
func NewLockFileResult(Metadata IsMetadata, Lock *FileLock) *LockFileResult {
s := new(LockFileResult)
s.Metadata = Metadata
s.Lock = Lock
return s
}
// UnmarshalJSON deserializes into a LockFileResult instance
func (u *LockFileResult) UnmarshalJSON(b []byte) error {
type wrap struct {
// Metadata : Metadata of the file.
Metadata json.RawMessage `json:"metadata"`
// Lock : The file lock state after the operation.
Lock *FileLock `json:"lock"`
}
var w wrap
if err := json.Unmarshal(b, &w); err != nil {
return err
}
Metadata, err := IsMetadataFromJSON(w.Metadata)
if err != nil {
return err
}
u.Metadata = Metadata
u.Lock = w.Lock
return nil
}
// LockFileResultEntry : has no documentation (yet)
type LockFileResultEntry struct {
dropbox.Tagged
// Success : has no documentation (yet)
Success *LockFileResult `json:"success,omitempty"`
// Failure : has no documentation (yet)
Failure *LockFileError `json:"failure,omitempty"`
}
// Valid tag values for LockFileResultEntry
const (
LockFileResultEntrySuccess = "success"
LockFileResultEntryFailure = "failure"
)
// UnmarshalJSON deserializes into a LockFileResultEntry instance
func (u *LockFileResultEntry) UnmarshalJSON(body []byte) error {
type wrap struct {
dropbox.Tagged
// Failure : has no documentation (yet)
Failure *LockFileError `json:"failure,omitempty"`
}
var w wrap
var err error
if err = json.Unmarshal(body, &w); err != nil {
return err
}
u.Tag = w.Tag
switch u.Tag {
case "success":
if err = json.Unmarshal(body, &u.Success); err != nil {
return err
}
case "failure":
u.Failure = w.Failure
}
return nil
}
// LookupError : has no documentation (yet)
type LookupError struct {
dropbox.Tagged
// MalformedPath : The given path does not satisfy the required path format.
// Please refer to the `Path formats documentation`
// <https://www.dropbox.com/developers/documentation/http/documentation#path-formats>
// for more information.
MalformedPath string `json:"malformed_path,omitempty"`
}
// Valid tag values for LookupError
const (
LookupErrorMalformedPath = "malformed_path"
LookupErrorNotFound = "not_found"
LookupErrorNotFile = "not_file"
LookupErrorNotFolder = "not_folder"
LookupErrorRestrictedContent = "restricted_content"
LookupErrorUnsupportedContentType = "unsupported_content_type"
LookupErrorLocked = "locked"
LookupErrorOther = "other"
)
// UnmarshalJSON deserializes into a LookupError instance
func (u *LookupError) UnmarshalJSON(body []byte) error {
type wrap struct {
dropbox.Tagged
// MalformedPath : The given path does not satisfy the required path
// format. Please refer to the `Path formats documentation`
// <https://www.dropbox.com/developers/documentation/http/documentation#path-formats>
// for more information.
MalformedPath string `json:"malformed_path,omitempty"`
}
var w wrap
var err error
if err = json.Unmarshal(body, &w); err != nil {
return err
}
u.Tag = w.Tag
switch u.Tag {
case "malformed_path":
u.MalformedPath = w.MalformedPath
}
return nil
}
// MediaInfo : has no documentation (yet)
type MediaInfo struct {
dropbox.Tagged
// Metadata : The metadata for the photo/video.
Metadata IsMediaMetadata `json:"metadata,omitempty"`
}
// Valid tag values for MediaInfo
const (
MediaInfoPending = "pending"
MediaInfoMetadata = "metadata"
)
// UnmarshalJSON deserializes into a MediaInfo instance
func (u *MediaInfo) UnmarshalJSON(body []byte) error {
type wrap struct {
dropbox.Tagged
// Metadata : The metadata for the photo/video.
Metadata json.RawMessage `json:"metadata,omitempty"`
}
var w wrap
var err error
if err = json.Unmarshal(body, &w); err != nil {
return err
}
u.Tag = w.Tag
switch u.Tag {
case "metadata":
if u.Metadata, err = IsMediaMetadataFromJSON(w.Metadata); err != nil {
return err
}
}
return nil
}
// MediaMetadata : Metadata for a photo or video.
type MediaMetadata struct {
// Dimensions : Dimension of the photo/video.
Dimensions *Dimensions `json:"dimensions,omitempty"`
// Location : The GPS coordinate of the photo/video.
Location *GpsCoordinates `json:"location,omitempty"`
// TimeTaken : The timestamp when the photo/video is taken.
TimeTaken *time.Time `json:"time_taken,omitempty"`
}
// NewMediaMetadata returns a new MediaMetadata instance
func NewMediaMetadata() *MediaMetadata {
s := new(MediaMetadata)
return s
}
// IsMediaMetadata is the interface type for MediaMetadata and its subtypes
type IsMediaMetadata interface {
IsMediaMetadata()
}
// IsMediaMetadata implements the IsMediaMetadata interface
func (u *MediaMetadata) IsMediaMetadata() {}
type mediaMetadataUnion struct {
dropbox.Tagged
// Photo : has no documentation (yet)
Photo *PhotoMetadata `json:"photo,omitempty"`
// Video : has no documentation (yet)
Video *VideoMetadata `json:"video,omitempty"`
}
// Valid tag values for MediaMetadata
const (
MediaMetadataPhoto = "photo"
MediaMetadataVideo = "video"
)
// UnmarshalJSON deserializes into a mediaMetadataUnion instance
func (u *mediaMetadataUnion) UnmarshalJSON(body []byte) error {
type wrap struct {
dropbox.Tagged
}
var w wrap
var err error
if err = json.Unmarshal(body, &w); err != nil {
return err
}
u.Tag = w.Tag
switch u.Tag {
case "photo":
if err = json.Unmarshal(body, &u.Photo); err != nil {
return err
}
case "video":
if err = json.Unmarshal(body, &u.Video); err != nil {
return err
}
}
return nil
}
// IsMediaMetadataFromJSON converts JSON to a concrete IsMediaMetadata instance
func IsMediaMetadataFromJSON(data []byte) (IsMediaMetadata, error) {
var t mediaMetadataUnion
if err := json.Unmarshal(data, &t); err != nil {
return nil, err
}
switch t.Tag {
case "photo":
return t.Photo, nil
case "video":
return t.Video, nil
}
return nil, nil
}
// MetadataV2 : Metadata for a file, folder or other resource types.
type MetadataV2 struct {
dropbox.Tagged
// Metadata : has no documentation (yet)
Metadata IsMetadata `json:"metadata,omitempty"`
}
// Valid tag values for MetadataV2
const (
MetadataV2Metadata = "metadata"
MetadataV2Other = "other"
)
// UnmarshalJSON deserializes into a MetadataV2 instance
func (u *MetadataV2) UnmarshalJSON(body []byte) error {
type wrap struct {
dropbox.Tagged
// Metadata : has no documentation (yet)
Metadata json.RawMessage `json:"metadata,omitempty"`
}
var w wrap
var err error
if err = json.Unmarshal(body, &w); err != nil {
return err
}
u.Tag = w.Tag
switch u.Tag {
case "metadata":
if u.Metadata, err = IsMetadataFromJSON(w.Metadata); err != nil {
return err
}
}
return nil
}
// MinimalFileLinkMetadata : has no documentation (yet)
type MinimalFileLinkMetadata struct {
// Url : URL of the shared link.
Url string `json:"url"`
// Id : Unique identifier for the linked file.
Id string `json:"id,omitempty"`
// Path : Full path in the user's Dropbox. This always starts with a slash.
// This field will only be present only if the linked file is in the
// authenticated user's Dropbox.
Path string `json:"path,omitempty"`
// Rev : A unique identifier for the current revision of a file. This field
// is the same rev as elsewhere in the API and can be used to detect changes
// and avoid conflicts.
Rev string `json:"rev"`
}
// NewMinimalFileLinkMetadata returns a new MinimalFileLinkMetadata instance
func NewMinimalFileLinkMetadata(Url string, Rev string) *MinimalFileLinkMetadata {
s := new(MinimalFileLinkMetadata)
s.Url = Url
s.Rev = Rev
return s
}
// RelocationBatchArgBase : has no documentation (yet)
type RelocationBatchArgBase struct {
// Entries : List of entries to be moved or copied. Each entry is
// `RelocationPath`.
Entries []*RelocationPath `json:"entries"`
// Autorename : If there's a conflict with any file, have the Dropbox server
// try to autorename that file to avoid the conflict.
Autorename bool `json:"autorename"`
}
// NewRelocationBatchArgBase returns a new RelocationBatchArgBase instance
func NewRelocationBatchArgBase(Entries []*RelocationPath) *RelocationBatchArgBase {
s := new(RelocationBatchArgBase)
s.Entries = Entries
s.Autorename = false
return s
}
// MoveBatchArg : has no documentation (yet)
type MoveBatchArg struct {
RelocationBatchArgBase
// AllowOwnershipTransfer : Allow moves by owner even if it would result in
// an ownership transfer for the content being moved. This does not apply to
// copies.
AllowOwnershipTransfer bool `json:"allow_ownership_transfer"`
}
// NewMoveBatchArg returns a new MoveBatchArg instance
func NewMoveBatchArg(Entries []*RelocationPath) *MoveBatchArg {
s := new(MoveBatchArg)
s.Entries = Entries
s.Autorename = false
s.AllowOwnershipTransfer = false
return s
}
// MoveIntoFamilyError : has no documentation (yet)
type MoveIntoFamilyError struct {
dropbox.Tagged
}
// Valid tag values for MoveIntoFamilyError
const (
MoveIntoFamilyErrorIsSharedFolder = "is_shared_folder"
MoveIntoFamilyErrorOther = "other"
)
// MoveIntoVaultError : has no documentation (yet)
type MoveIntoVaultError struct {
dropbox.Tagged
}
// Valid tag values for MoveIntoVaultError
const (
MoveIntoVaultErrorIsSharedFolder = "is_shared_folder"
MoveIntoVaultErrorOther = "other"
)
// PaperContentError : has no documentation (yet)
type PaperContentError struct {
dropbox.Tagged
}
// Valid tag values for PaperContentError
const (
PaperContentErrorInsufficientPermissions = "insufficient_permissions"
PaperContentErrorContentMalformed = "content_malformed"
PaperContentErrorDocLengthExceeded = "doc_length_exceeded"
PaperContentErrorImageSizeExceeded = "image_size_exceeded"
PaperContentErrorOther = "other"
)
// PaperCreateArg : has no documentation (yet)
type PaperCreateArg struct {
// Path : The fully qualified path to the location in the user's Dropbox
// where the Paper Doc should be created. This should include the document's
// title and end with .paper.
Path string `json:"path"`
// ImportFormat : The format of the provided data.
ImportFormat *ImportFormat `json:"import_format"`
}
// NewPaperCreateArg returns a new PaperCreateArg instance
func NewPaperCreateArg(Path string, ImportFormat *ImportFormat) *PaperCreateArg {
s := new(PaperCreateArg)
s.Path = Path
s.ImportFormat = ImportFormat
return s
}
// PaperCreateError : has no documentation (yet)
type PaperCreateError struct {
dropbox.Tagged
}
// Valid tag values for PaperCreateError
const (
PaperCreateErrorInsufficientPermissions = "insufficient_permissions"
PaperCreateErrorContentMalformed = "content_malformed"
PaperCreateErrorDocLengthExceeded = "doc_length_exceeded"
PaperCreateErrorImageSizeExceeded = "image_size_exceeded"
PaperCreateErrorOther = "other"
PaperCreateErrorInvalidPath = "invalid_path"
PaperCreateErrorEmailUnverified = "email_unverified"
PaperCreateErrorInvalidFileExtension = "invalid_file_extension"
PaperCreateErrorPaperDisabled = "paper_disabled"
)
// PaperCreateResult : has no documentation (yet)
type PaperCreateResult struct {
// Url : URL to open the Paper Doc.
Url string `json:"url"`
// ResultPath : The fully qualified path the Paper Doc was actually created
// at.
ResultPath string `json:"result_path"`
// FileId : The id to use in Dropbox APIs when referencing the Paper Doc.
FileId string `json:"file_id"`
// PaperRevision : The current doc revision.
PaperRevision int64 `json:"paper_revision"`
}
// NewPaperCreateResult returns a new PaperCreateResult instance
func NewPaperCreateResult(Url string, ResultPath string, FileId string, PaperRevision int64) *PaperCreateResult {
s := new(PaperCreateResult)
s.Url = Url
s.ResultPath = ResultPath
s.FileId = FileId
s.PaperRevision = PaperRevision
return s
}
// PaperDocUpdatePolicy : has no documentation (yet)
type PaperDocUpdatePolicy struct {
dropbox.Tagged
}
// Valid tag values for PaperDocUpdatePolicy
const (
PaperDocUpdatePolicyUpdate = "update"
PaperDocUpdatePolicyOverwrite = "overwrite"
PaperDocUpdatePolicyPrepend = "prepend"
PaperDocUpdatePolicyAppend = "append"
PaperDocUpdatePolicyOther = "other"
)
// PaperUpdateArg : has no documentation (yet)
type PaperUpdateArg struct {
// Path : Path in the user's Dropbox to update. The path must correspond to
// a Paper doc or an error will be returned.
Path string `json:"path"`
// ImportFormat : The format of the provided data.
ImportFormat *ImportFormat `json:"import_format"`
// DocUpdatePolicy : How the provided content should be applied to the doc.
DocUpdatePolicy *PaperDocUpdatePolicy `json:"doc_update_policy"`
// PaperRevision : The latest doc revision. Required when doc_update_policy
// is update. This value must match the current revision of the doc or error
// revision_mismatch will be returned.
PaperRevision int64 `json:"paper_revision,omitempty"`
}
// NewPaperUpdateArg returns a new PaperUpdateArg instance
func NewPaperUpdateArg(Path string, ImportFormat *ImportFormat, DocUpdatePolicy *PaperDocUpdatePolicy) *PaperUpdateArg {
s := new(PaperUpdateArg)
s.Path = Path
s.ImportFormat = ImportFormat
s.DocUpdatePolicy = DocUpdatePolicy
return s
}
// PaperUpdateError : has no documentation (yet)
type PaperUpdateError struct {
dropbox.Tagged
// Path : has no documentation (yet)
Path *LookupError `json:"path,omitempty"`
}
// Valid tag values for PaperUpdateError
const (
PaperUpdateErrorInsufficientPermissions = "insufficient_permissions"
PaperUpdateErrorContentMalformed = "content_malformed"
PaperUpdateErrorDocLengthExceeded = "doc_length_exceeded"
PaperUpdateErrorImageSizeExceeded = "image_size_exceeded"
PaperUpdateErrorOther = "other"
PaperUpdateErrorPath = "path"
PaperUpdateErrorRevisionMismatch = "revision_mismatch"
PaperUpdateErrorDocArchived = "doc_archived"
PaperUpdateErrorDocDeleted = "doc_deleted"
)
// UnmarshalJSON deserializes into a PaperUpdateError instance
func (u *PaperUpdateError) UnmarshalJSON(body []byte) error {
type wrap struct {
dropbox.Tagged
// Path : has no documentation (yet)
Path *LookupError `json:"path,omitempty"`
}
var w wrap
var err error
if err = json.Unmarshal(body, &w); err != nil {
return err
}
u.Tag = w.Tag
switch u.Tag {
case "path":
u.Path = w.Path
}
return nil
}
// PaperUpdateResult : has no documentation (yet)
type PaperUpdateResult struct {
// PaperRevision : The current doc revision.
PaperRevision int64 `json:"paper_revision"`
}
// NewPaperUpdateResult returns a new PaperUpdateResult instance
func NewPaperUpdateResult(PaperRevision int64) *PaperUpdateResult {
s := new(PaperUpdateResult)
s.PaperRevision = PaperRevision
return s
}
// PathOrLink : has no documentation (yet)
type PathOrLink struct {
dropbox.Tagged
// Path : has no documentation (yet)
Path string `json:"path,omitempty"`
// Link : has no documentation (yet)
Link *SharedLinkFileInfo `json:"link,omitempty"`
}
// Valid tag values for PathOrLink
const (
PathOrLinkPath = "path"
PathOrLinkLink = "link"
PathOrLinkOther = "other"
)
// UnmarshalJSON deserializes into a PathOrLink instance
func (u *PathOrLink) UnmarshalJSON(body []byte) error {
type wrap struct {
dropbox.Tagged
// Path : has no documentation (yet)
Path string `json:"path,omitempty"`
}
var w wrap
var err error
if err = json.Unmarshal(body, &w); err != nil {
return err
}
u.Tag = w.Tag
switch u.Tag {
case "path":
u.Path = w.Path
case "link":
if err = json.Unmarshal(body, &u.Link); err != nil {
return err
}
}
return nil
}
// PathToTags : has no documentation (yet)
type PathToTags struct {
// Path : Path of the item.
Path string `json:"path"`
// Tags : Tags assigned to this item.
Tags []*Tag `json:"tags"`
}
// NewPathToTags returns a new PathToTags instance
func NewPathToTags(Path string, Tags []*Tag) *PathToTags {
s := new(PathToTags)
s.Path = Path
s.Tags = Tags
return s
}
// PhotoMetadata : Metadata for a photo.
type PhotoMetadata struct {
MediaMetadata
}
// NewPhotoMetadata returns a new PhotoMetadata instance
func NewPhotoMetadata() *PhotoMetadata {
s := new(PhotoMetadata)
return s
}
// PreviewArg : has no documentation (yet)
type PreviewArg struct {
// Path : The path of the file to preview.
Path string `json:"path"`
// Rev : Please specify revision in `path` instead.
Rev string `json:"rev,omitempty"`
}
// NewPreviewArg returns a new PreviewArg instance
func NewPreviewArg(Path string) *PreviewArg {
s := new(PreviewArg)
s.Path = Path
return s
}
// PreviewError : has no documentation (yet)
type PreviewError struct {
dropbox.Tagged
// Path : An error occurs when downloading metadata for the file.
Path *LookupError `json:"path,omitempty"`
}
// Valid tag values for PreviewError
const (
PreviewErrorPath = "path"
PreviewErrorInProgress = "in_progress"
PreviewErrorUnsupportedExtension = "unsupported_extension"
PreviewErrorUnsupportedContent = "unsupported_content"
)
// UnmarshalJSON deserializes into a PreviewError instance
func (u *PreviewError) UnmarshalJSON(body []byte) error {
type wrap struct {
dropbox.Tagged
// Path : An error occurs when downloading metadata for the file.
Path *LookupError `json:"path,omitempty"`
}
var w wrap
var err error
if err = json.Unmarshal(body, &w); err != nil {
return err
}
u.Tag = w.Tag
switch u.Tag {
case "path":
u.Path = w.Path
}
return nil
}
// PreviewResult : has no documentation (yet)
type PreviewResult struct {
// FileMetadata : Metadata corresponding to the file received as an
// argument. Will be populated if the endpoint is called with a path
// (ReadPath).
FileMetadata *FileMetadata `json:"file_metadata,omitempty"`
// LinkMetadata : Minimal metadata corresponding to the file received as an
// argument. Will be populated if the endpoint is called using a shared link
// (SharedLinkFileInfo).
LinkMetadata *MinimalFileLinkMetadata `json:"link_metadata,omitempty"`
}
// NewPreviewResult returns a new PreviewResult instance
func NewPreviewResult() *PreviewResult {
s := new(PreviewResult)
return s
}
// RelocationPath : has no documentation (yet)
type RelocationPath struct {
// FromPath : Path in the user's Dropbox to be copied or moved.
FromPath string `json:"from_path"`
// ToPath : Path in the user's Dropbox that is the destination.
ToPath string `json:"to_path"`
}
// NewRelocationPath returns a new RelocationPath instance
func NewRelocationPath(FromPath string, ToPath string) *RelocationPath {
s := new(RelocationPath)
s.FromPath = FromPath
s.ToPath = ToPath
return s
}
// RelocationArg : has no documentation (yet)
type RelocationArg struct {
RelocationPath
// AllowSharedFolder : This flag has no effect.
AllowSharedFolder bool `json:"allow_shared_folder"`
// Autorename : If there's a conflict, have the Dropbox server try to
// autorename the file to avoid the conflict.
Autorename bool `json:"autorename"`
// AllowOwnershipTransfer : Allow moves by owner even if it would result in
// an ownership transfer for the content being moved. This does not apply to
// copies.
AllowOwnershipTransfer bool `json:"allow_ownership_transfer"`
}
// NewRelocationArg returns a new RelocationArg instance
func NewRelocationArg(FromPath string, ToPath string) *RelocationArg {
s := new(RelocationArg)
s.FromPath = FromPath
s.ToPath = ToPath
s.AllowSharedFolder = false
s.Autorename = false
s.AllowOwnershipTransfer = false
return s
}
// RelocationBatchArg : has no documentation (yet)
type RelocationBatchArg struct {
RelocationBatchArgBase
// AllowSharedFolder : This flag has no effect.
AllowSharedFolder bool `json:"allow_shared_folder"`
// AllowOwnershipTransfer : Allow moves by owner even if it would result in
// an ownership transfer for the content being moved. This does not apply to
// copies.
AllowOwnershipTransfer bool `json:"allow_ownership_transfer"`
}
// NewRelocationBatchArg returns a new RelocationBatchArg instance
func NewRelocationBatchArg(Entries []*RelocationPath) *RelocationBatchArg {
s := new(RelocationBatchArg)
s.Entries = Entries
s.Autorename = false
s.AllowSharedFolder = false
s.AllowOwnershipTransfer = false
return s
}
// RelocationError : has no documentation (yet)
type RelocationError struct {
dropbox.Tagged
// FromLookup : has no documentation (yet)
FromLookup *LookupError `json:"from_lookup,omitempty"`
// FromWrite : has no documentation (yet)
FromWrite *WriteError `json:"from_write,omitempty"`
// To : has no documentation (yet)
To *WriteError `json:"to,omitempty"`
// CantMoveIntoVault : Some content cannot be moved into Vault under certain
// circumstances, see detailed error.
CantMoveIntoVault *MoveIntoVaultError `json:"cant_move_into_vault,omitempty"`
// CantMoveIntoFamily : Some content cannot be moved into the Family Room
// folder under certain circumstances, see detailed error.
CantMoveIntoFamily *MoveIntoFamilyError `json:"cant_move_into_family,omitempty"`
}
// Valid tag values for RelocationError
const (
RelocationErrorFromLookup = "from_lookup"
RelocationErrorFromWrite = "from_write"
RelocationErrorTo = "to"
RelocationErrorCantCopySharedFolder = "cant_copy_shared_folder"
RelocationErrorCantNestSharedFolder = "cant_nest_shared_folder"
RelocationErrorCantMoveFolderIntoItself = "cant_move_folder_into_itself"
RelocationErrorTooManyFiles = "too_many_files"
RelocationErrorDuplicatedOrNestedPaths = "duplicated_or_nested_paths"
RelocationErrorCantTransferOwnership = "cant_transfer_ownership"
RelocationErrorInsufficientQuota = "insufficient_quota"
RelocationErrorInternalError = "internal_error"
RelocationErrorCantMoveSharedFolder = "cant_move_shared_folder"
RelocationErrorCantMoveIntoVault = "cant_move_into_vault"
RelocationErrorCantMoveIntoFamily = "cant_move_into_family"
RelocationErrorOther = "other"
)
// UnmarshalJSON deserializes into a RelocationError instance
func (u *RelocationError) UnmarshalJSON(body []byte) error {
type wrap struct {
dropbox.Tagged
// FromLookup : has no documentation (yet)
FromLookup *LookupError `json:"from_lookup,omitempty"`
// FromWrite : has no documentation (yet)
FromWrite *WriteError `json:"from_write,omitempty"`
// To : has no documentation (yet)
To *WriteError `json:"to,omitempty"`
// CantMoveIntoVault : Some content cannot be moved into Vault under
// certain circumstances, see detailed error.
CantMoveIntoVault *MoveIntoVaultError `json:"cant_move_into_vault,omitempty"`
// CantMoveIntoFamily : Some content cannot be moved into the Family
// Room folder under certain circumstances, see detailed error.
CantMoveIntoFamily *MoveIntoFamilyError `json:"cant_move_into_family,omitempty"`
}
var w wrap
var err error
if err = json.Unmarshal(body, &w); err != nil {
return err
}
u.Tag = w.Tag
switch u.Tag {
case "from_lookup":
u.FromLookup = w.FromLookup
case "from_write":
u.FromWrite = w.FromWrite
case "to":
u.To = w.To
case "cant_move_into_vault":
u.CantMoveIntoVault = w.CantMoveIntoVault
case "cant_move_into_family":
u.CantMoveIntoFamily = w.CantMoveIntoFamily
}
return nil
}
// RelocationBatchError : has no documentation (yet)
type RelocationBatchError struct {
dropbox.Tagged
// FromLookup : has no documentation (yet)
FromLookup *LookupError `json:"from_lookup,omitempty"`
// FromWrite : has no documentation (yet)
FromWrite *WriteError `json:"from_write,omitempty"`
// To : has no documentation (yet)
To *WriteError `json:"to,omitempty"`
// CantMoveIntoVault : Some content cannot be moved into Vault under certain
// circumstances, see detailed error.
CantMoveIntoVault *MoveIntoVaultError `json:"cant_move_into_vault,omitempty"`
// CantMoveIntoFamily : Some content cannot be moved into the Family Room
// folder under certain circumstances, see detailed error.
CantMoveIntoFamily *MoveIntoFamilyError `json:"cant_move_into_family,omitempty"`
}
// Valid tag values for RelocationBatchError
const (
RelocationBatchErrorFromLookup = "from_lookup"
RelocationBatchErrorFromWrite = "from_write"
RelocationBatchErrorTo = "to"
RelocationBatchErrorCantCopySharedFolder = "cant_copy_shared_folder"
RelocationBatchErrorCantNestSharedFolder = "cant_nest_shared_folder"
RelocationBatchErrorCantMoveFolderIntoItself = "cant_move_folder_into_itself"
RelocationBatchErrorTooManyFiles = "too_many_files"
RelocationBatchErrorDuplicatedOrNestedPaths = "duplicated_or_nested_paths"
RelocationBatchErrorCantTransferOwnership = "cant_transfer_ownership"
RelocationBatchErrorInsufficientQuota = "insufficient_quota"
RelocationBatchErrorInternalError = "internal_error"
RelocationBatchErrorCantMoveSharedFolder = "cant_move_shared_folder"
RelocationBatchErrorCantMoveIntoVault = "cant_move_into_vault"
RelocationBatchErrorCantMoveIntoFamily = "cant_move_into_family"
RelocationBatchErrorOther = "other"
RelocationBatchErrorTooManyWriteOperations = "too_many_write_operations"
)
// UnmarshalJSON deserializes into a RelocationBatchError instance
func (u *RelocationBatchError) UnmarshalJSON(body []byte) error {
type wrap struct {
dropbox.Tagged
// FromLookup : has no documentation (yet)
FromLookup *LookupError `json:"from_lookup,omitempty"`
// FromWrite : has no documentation (yet)
FromWrite *WriteError `json:"from_write,omitempty"`
// To : has no documentation (yet)
To *WriteError `json:"to,omitempty"`
// CantMoveIntoVault : Some content cannot be moved into Vault under
// certain circumstances, see detailed error.
CantMoveIntoVault *MoveIntoVaultError `json:"cant_move_into_vault,omitempty"`
// CantMoveIntoFamily : Some content cannot be moved into the Family
// Room folder under certain circumstances, see detailed error.
CantMoveIntoFamily *MoveIntoFamilyError `json:"cant_move_into_family,omitempty"`
}
var w wrap
var err error
if err = json.Unmarshal(body, &w); err != nil {
return err
}
u.Tag = w.Tag
switch u.Tag {
case "from_lookup":
u.FromLookup = w.FromLookup
case "from_write":
u.FromWrite = w.FromWrite
case "to":
u.To = w.To
case "cant_move_into_vault":
u.CantMoveIntoVault = w.CantMoveIntoVault
case "cant_move_into_family":
u.CantMoveIntoFamily = w.CantMoveIntoFamily
}
return nil
}
// RelocationBatchErrorEntry : has no documentation (yet)
type RelocationBatchErrorEntry struct {
dropbox.Tagged
// RelocationError : User errors that retry won't help.
RelocationError *RelocationError `json:"relocation_error,omitempty"`
}
// Valid tag values for RelocationBatchErrorEntry
const (
RelocationBatchErrorEntryRelocationError = "relocation_error"
RelocationBatchErrorEntryInternalError = "internal_error"
RelocationBatchErrorEntryTooManyWriteOperations = "too_many_write_operations"
RelocationBatchErrorEntryOther = "other"
)
// UnmarshalJSON deserializes into a RelocationBatchErrorEntry instance
func (u *RelocationBatchErrorEntry) UnmarshalJSON(body []byte) error {
type wrap struct {
dropbox.Tagged
// RelocationError : User errors that retry won't help.
RelocationError *RelocationError `json:"relocation_error,omitempty"`
}
var w wrap
var err error
if err = json.Unmarshal(body, &w); err != nil {
return err
}
u.Tag = w.Tag
switch u.Tag {
case "relocation_error":
u.RelocationError = w.RelocationError
}
return nil
}
// RelocationBatchJobStatus : has no documentation (yet)
type RelocationBatchJobStatus struct {
dropbox.Tagged
// Complete : The copy or move batch job has finished.
Complete *RelocationBatchResult `json:"complete,omitempty"`
// Failed : The copy or move batch job has failed with exception.
Failed *RelocationBatchError `json:"failed,omitempty"`
}
// Valid tag values for RelocationBatchJobStatus
const (
RelocationBatchJobStatusInProgress = "in_progress"
RelocationBatchJobStatusComplete = "complete"
RelocationBatchJobStatusFailed = "failed"
)
// UnmarshalJSON deserializes into a RelocationBatchJobStatus instance
func (u *RelocationBatchJobStatus) UnmarshalJSON(body []byte) error {
type wrap struct {
dropbox.Tagged
// Failed : The copy or move batch job has failed with exception.
Failed *RelocationBatchError `json:"failed,omitempty"`
}
var w wrap
var err error
if err = json.Unmarshal(body, &w); err != nil {
return err
}
u.Tag = w.Tag
switch u.Tag {
case "complete":
if err = json.Unmarshal(body, &u.Complete); err != nil {
return err
}
case "failed":
u.Failed = w.Failed
}
return nil
}
// RelocationBatchLaunch : Result returned by `copyBatch` or `moveBatch` that
// may either launch an asynchronous job or complete synchronously.
type RelocationBatchLaunch struct {
dropbox.Tagged
// AsyncJobId : This response indicates that the processing is asynchronous.
// The string is an id that can be used to obtain the status of the
// asynchronous job.
AsyncJobId string `json:"async_job_id,omitempty"`
// Complete : has no documentation (yet)
Complete *RelocationBatchResult `json:"complete,omitempty"`
}
// Valid tag values for RelocationBatchLaunch
const (
RelocationBatchLaunchAsyncJobId = "async_job_id"
RelocationBatchLaunchComplete = "complete"
RelocationBatchLaunchOther = "other"
)
// UnmarshalJSON deserializes into a RelocationBatchLaunch instance
func (u *RelocationBatchLaunch) UnmarshalJSON(body []byte) error {
type wrap struct {
dropbox.Tagged
// AsyncJobId : This response indicates that the processing is
// asynchronous. The string is an id that can be used to obtain the
// status of the asynchronous job.
AsyncJobId string `json:"async_job_id,omitempty"`
}
var w wrap
var err error
if err = json.Unmarshal(body, &w); err != nil {
return err
}
u.Tag = w.Tag
switch u.Tag {
case "async_job_id":
u.AsyncJobId = w.AsyncJobId
case "complete":
if err = json.Unmarshal(body, &u.Complete); err != nil {
return err
}
}
return nil
}
// RelocationBatchResult : has no documentation (yet)
type RelocationBatchResult struct {
FileOpsResult
// Entries : has no documentation (yet)
Entries []*RelocationBatchResultData `json:"entries"`
}
// NewRelocationBatchResult returns a new RelocationBatchResult instance
func NewRelocationBatchResult(Entries []*RelocationBatchResultData) *RelocationBatchResult {
s := new(RelocationBatchResult)
s.Entries = Entries
return s
}
// RelocationBatchResultData : has no documentation (yet)
type RelocationBatchResultData struct {
// Metadata : Metadata of the relocated object.
Metadata IsMetadata `json:"metadata"`
}
// NewRelocationBatchResultData returns a new RelocationBatchResultData instance
func NewRelocationBatchResultData(Metadata IsMetadata) *RelocationBatchResultData {
s := new(RelocationBatchResultData)
s.Metadata = Metadata
return s
}
// UnmarshalJSON deserializes into a RelocationBatchResultData instance
func (u *RelocationBatchResultData) UnmarshalJSON(b []byte) error {
type wrap struct {
// Metadata : Metadata of the relocated object.
Metadata json.RawMessage `json:"metadata"`
}
var w wrap
if err := json.Unmarshal(b, &w); err != nil {
return err
}
Metadata, err := IsMetadataFromJSON(w.Metadata)
if err != nil {
return err
}
u.Metadata = Metadata
return nil
}
// RelocationBatchResultEntry : has no documentation (yet)
type RelocationBatchResultEntry struct {
dropbox.Tagged
// Success : has no documentation (yet)
Success IsMetadata `json:"success,omitempty"`
// Failure : has no documentation (yet)
Failure *RelocationBatchErrorEntry `json:"failure,omitempty"`
}
// Valid tag values for RelocationBatchResultEntry
const (
RelocationBatchResultEntrySuccess = "success"
RelocationBatchResultEntryFailure = "failure"
RelocationBatchResultEntryOther = "other"
)
// UnmarshalJSON deserializes into a RelocationBatchResultEntry instance
func (u *RelocationBatchResultEntry) UnmarshalJSON(body []byte) error {
type wrap struct {
dropbox.Tagged
// Success : has no documentation (yet)
Success json.RawMessage `json:"success,omitempty"`
// Failure : has no documentation (yet)
Failure *RelocationBatchErrorEntry `json:"failure,omitempty"`
}
var w wrap
var err error
if err = json.Unmarshal(body, &w); err != nil {
return err
}
u.Tag = w.Tag
switch u.Tag {
case "success":
if u.Success, err = IsMetadataFromJSON(w.Success); err != nil {
return err
}
case "failure":
u.Failure = w.Failure
}
return nil
}
// RelocationBatchV2JobStatus : Result returned by `copyBatchCheck` or
// `moveBatchCheck` that may either be in progress or completed with result for
// each entry.
type RelocationBatchV2JobStatus struct {
dropbox.Tagged
// Complete : The copy or move batch job has finished.
Complete *RelocationBatchV2Result `json:"complete,omitempty"`
}
// Valid tag values for RelocationBatchV2JobStatus
const (
RelocationBatchV2JobStatusInProgress = "in_progress"
RelocationBatchV2JobStatusComplete = "complete"
)
// UnmarshalJSON deserializes into a RelocationBatchV2JobStatus instance
func (u *RelocationBatchV2JobStatus) UnmarshalJSON(body []byte) error {
type wrap struct {
dropbox.Tagged
}
var w wrap
var err error
if err = json.Unmarshal(body, &w); err != nil {
return err
}
u.Tag = w.Tag
switch u.Tag {
case "complete":
if err = json.Unmarshal(body, &u.Complete); err != nil {
return err
}
}
return nil
}
// RelocationBatchV2Launch : Result returned by `copyBatch` or `moveBatch` that
// may either launch an asynchronous job or complete synchronously.
type RelocationBatchV2Launch struct {
dropbox.Tagged
// AsyncJobId : This response indicates that the processing is asynchronous.
// The string is an id that can be used to obtain the status of the
// asynchronous job.
AsyncJobId string `json:"async_job_id,omitempty"`
// Complete : has no documentation (yet)
Complete *RelocationBatchV2Result `json:"complete,omitempty"`
}
// Valid tag values for RelocationBatchV2Launch
const (
RelocationBatchV2LaunchAsyncJobId = "async_job_id"
RelocationBatchV2LaunchComplete = "complete"
)
// UnmarshalJSON deserializes into a RelocationBatchV2Launch instance
func (u *RelocationBatchV2Launch) UnmarshalJSON(body []byte) error {
type wrap struct {
dropbox.Tagged
// AsyncJobId : This response indicates that the processing is
// asynchronous. The string is an id that can be used to obtain the
// status of the asynchronous job.
AsyncJobId string `json:"async_job_id,omitempty"`
}
var w wrap
var err error
if err = json.Unmarshal(body, &w); err != nil {
return err
}
u.Tag = w.Tag
switch u.Tag {
case "async_job_id":
u.AsyncJobId = w.AsyncJobId
case "complete":
if err = json.Unmarshal(body, &u.Complete); err != nil {
return err
}
}
return nil
}
// RelocationBatchV2Result : has no documentation (yet)
type RelocationBatchV2Result struct {
FileOpsResult
// Entries : Each entry in CopyBatchArg.entries or `MoveBatchArg.entries`
// will appear at the same position inside
// `RelocationBatchV2Result.entries`.
Entries []*RelocationBatchResultEntry `json:"entries"`
}
// NewRelocationBatchV2Result returns a new RelocationBatchV2Result instance
func NewRelocationBatchV2Result(Entries []*RelocationBatchResultEntry) *RelocationBatchV2Result {
s := new(RelocationBatchV2Result)
s.Entries = Entries
return s
}
// RelocationResult : has no documentation (yet)
type RelocationResult struct {
FileOpsResult
// Metadata : Metadata of the relocated object.
Metadata IsMetadata `json:"metadata"`
}
// NewRelocationResult returns a new RelocationResult instance
func NewRelocationResult(Metadata IsMetadata) *RelocationResult {
s := new(RelocationResult)
s.Metadata = Metadata
return s
}
// UnmarshalJSON deserializes into a RelocationResult instance
func (u *RelocationResult) UnmarshalJSON(b []byte) error {
type wrap struct {
// Metadata : Metadata of the relocated object.
Metadata json.RawMessage `json:"metadata"`
}
var w wrap
if err := json.Unmarshal(b, &w); err != nil {
return err
}
Metadata, err := IsMetadataFromJSON(w.Metadata)
if err != nil {
return err
}
u.Metadata = Metadata
return nil
}
// RemoveTagArg : has no documentation (yet)
type RemoveTagArg struct {
// Path : Path to the item to tag.
Path string `json:"path"`
// TagText : The tag to remove. Will be automatically converted to lowercase
// letters.
TagText string `json:"tag_text"`
}
// NewRemoveTagArg returns a new RemoveTagArg instance
func NewRemoveTagArg(Path string, TagText string) *RemoveTagArg {
s := new(RemoveTagArg)
s.Path = Path
s.TagText = TagText
return s
}
// RemoveTagError : has no documentation (yet)
type RemoveTagError struct {
dropbox.Tagged
// Path : has no documentation (yet)
Path *LookupError `json:"path,omitempty"`
}
// Valid tag values for RemoveTagError
const (
RemoveTagErrorPath = "path"
RemoveTagErrorOther = "other"
RemoveTagErrorTagNotPresent = "tag_not_present"
)
// UnmarshalJSON deserializes into a RemoveTagError instance
func (u *RemoveTagError) UnmarshalJSON(body []byte) error {
type wrap struct {
dropbox.Tagged
// Path : has no documentation (yet)
Path *LookupError `json:"path,omitempty"`
}
var w wrap
var err error
if err = json.Unmarshal(body, &w); err != nil {
return err
}
u.Tag = w.Tag
switch u.Tag {
case "path":
u.Path = w.Path
}
return nil
}
// RestoreArg : has no documentation (yet)
type RestoreArg struct {
// Path : The path to save the restored file.
Path string `json:"path"`
// Rev : The revision to restore.
Rev string `json:"rev"`
}
// NewRestoreArg returns a new RestoreArg instance
func NewRestoreArg(Path string, Rev string) *RestoreArg {
s := new(RestoreArg)
s.Path = Path
s.Rev = Rev
return s
}
// RestoreError : has no documentation (yet)
type RestoreError struct {
dropbox.Tagged
// PathLookup : An error occurs when downloading metadata for the file.
PathLookup *LookupError `json:"path_lookup,omitempty"`
// PathWrite : An error occurs when trying to restore the file to that path.
PathWrite *WriteError `json:"path_write,omitempty"`
}
// Valid tag values for RestoreError
const (
RestoreErrorPathLookup = "path_lookup"
RestoreErrorPathWrite = "path_write"
RestoreErrorInvalidRevision = "invalid_revision"
RestoreErrorInProgress = "in_progress"
RestoreErrorOther = "other"
)
// UnmarshalJSON deserializes into a RestoreError instance
func (u *RestoreError) UnmarshalJSON(body []byte) error {
type wrap struct {
dropbox.Tagged
// PathLookup : An error occurs when downloading metadata for the file.
PathLookup *LookupError `json:"path_lookup,omitempty"`
// PathWrite : An error occurs when trying to restore the file to that
// path.
PathWrite *WriteError `json:"path_write,omitempty"`
}
var w wrap
var err error
if err = json.Unmarshal(body, &w); err != nil {
return err
}
u.Tag = w.Tag
switch u.Tag {
case "path_lookup":
u.PathLookup = w.PathLookup
case "path_write":
u.PathWrite = w.PathWrite
}
return nil
}
// SaveCopyReferenceArg : has no documentation (yet)
type SaveCopyReferenceArg struct {
// CopyReference : A copy reference returned by `copyReferenceGet`.
CopyReference string `json:"copy_reference"`
// Path : Path in the user's Dropbox that is the destination.
Path string `json:"path"`
}
// NewSaveCopyReferenceArg returns a new SaveCopyReferenceArg instance
func NewSaveCopyReferenceArg(CopyReference string, Path string) *SaveCopyReferenceArg {
s := new(SaveCopyReferenceArg)
s.CopyReference = CopyReference
s.Path = Path
return s
}
// SaveCopyReferenceError : has no documentation (yet)
type SaveCopyReferenceError struct {
dropbox.Tagged
// Path : has no documentation (yet)
Path *WriteError `json:"path,omitempty"`
}
// Valid tag values for SaveCopyReferenceError
const (
SaveCopyReferenceErrorPath = "path"
SaveCopyReferenceErrorInvalidCopyReference = "invalid_copy_reference"
SaveCopyReferenceErrorNoPermission = "no_permission"
SaveCopyReferenceErrorNotFound = "not_found"
SaveCopyReferenceErrorTooManyFiles = "too_many_files"
SaveCopyReferenceErrorOther = "other"
)
// UnmarshalJSON deserializes into a SaveCopyReferenceError instance
func (u *SaveCopyReferenceError) UnmarshalJSON(body []byte) error {
type wrap struct {
dropbox.Tagged
// Path : has no documentation (yet)
Path *WriteError `json:"path,omitempty"`
}
var w wrap
var err error
if err = json.Unmarshal(body, &w); err != nil {
return err
}
u.Tag = w.Tag
switch u.Tag {
case "path":
u.Path = w.Path
}
return nil
}
// SaveCopyReferenceResult : has no documentation (yet)
type SaveCopyReferenceResult struct {
// Metadata : The metadata of the saved file or folder in the user's
// Dropbox.
Metadata IsMetadata `json:"metadata"`
}
// NewSaveCopyReferenceResult returns a new SaveCopyReferenceResult instance
func NewSaveCopyReferenceResult(Metadata IsMetadata) *SaveCopyReferenceResult {
s := new(SaveCopyReferenceResult)
s.Metadata = Metadata
return s
}
// UnmarshalJSON deserializes into a SaveCopyReferenceResult instance
func (u *SaveCopyReferenceResult) UnmarshalJSON(b []byte) error {
type wrap struct {
// Metadata : The metadata of the saved file or folder in the user's
// Dropbox.
Metadata json.RawMessage `json:"metadata"`
}
var w wrap
if err := json.Unmarshal(b, &w); err != nil {
return err
}
Metadata, err := IsMetadataFromJSON(w.Metadata)
if err != nil {
return err
}
u.Metadata = Metadata
return nil
}
// SaveUrlArg : has no documentation (yet)
type SaveUrlArg struct {
// Path : The path in Dropbox where the URL will be saved to.
Path string `json:"path"`
// Url : The URL to be saved.
Url string `json:"url"`
}
// NewSaveUrlArg returns a new SaveUrlArg instance
func NewSaveUrlArg(Path string, Url string) *SaveUrlArg {
s := new(SaveUrlArg)
s.Path = Path
s.Url = Url
return s
}
// SaveUrlError : has no documentation (yet)
type SaveUrlError struct {
dropbox.Tagged
// Path : has no documentation (yet)
Path *WriteError `json:"path,omitempty"`
}
// Valid tag values for SaveUrlError
const (
SaveUrlErrorPath = "path"
SaveUrlErrorDownloadFailed = "download_failed"
SaveUrlErrorInvalidUrl = "invalid_url"
SaveUrlErrorNotFound = "not_found"
SaveUrlErrorOther = "other"
)
// UnmarshalJSON deserializes into a SaveUrlError instance
func (u *SaveUrlError) UnmarshalJSON(body []byte) error {
type wrap struct {
dropbox.Tagged
// Path : has no documentation (yet)
Path *WriteError `json:"path,omitempty"`
}
var w wrap
var err error
if err = json.Unmarshal(body, &w); err != nil {
return err
}
u.Tag = w.Tag
switch u.Tag {
case "path":
u.Path = w.Path
}
return nil
}
// SaveUrlJobStatus : has no documentation (yet)
type SaveUrlJobStatus struct {
dropbox.Tagged
// Complete : Metadata of the file where the URL is saved to.
Complete *FileMetadata `json:"complete,omitempty"`
// Failed : has no documentation (yet)
Failed *SaveUrlError `json:"failed,omitempty"`
}
// Valid tag values for SaveUrlJobStatus
const (
SaveUrlJobStatusInProgress = "in_progress"
SaveUrlJobStatusComplete = "complete"
SaveUrlJobStatusFailed = "failed"
)
// UnmarshalJSON deserializes into a SaveUrlJobStatus instance
func (u *SaveUrlJobStatus) UnmarshalJSON(body []byte) error {
type wrap struct {
dropbox.Tagged
// Failed : has no documentation (yet)
Failed *SaveUrlError `json:"failed,omitempty"`
}
var w wrap
var err error
if err = json.Unmarshal(body, &w); err != nil {
return err
}
u.Tag = w.Tag
switch u.Tag {
case "complete":
if err = json.Unmarshal(body, &u.Complete); err != nil {
return err
}
case "failed":
u.Failed = w.Failed
}
return nil
}
// SaveUrlResult : has no documentation (yet)
type SaveUrlResult struct {
dropbox.Tagged
// AsyncJobId : This response indicates that the processing is asynchronous.
// The string is an id that can be used to obtain the status of the
// asynchronous job.
AsyncJobId string `json:"async_job_id,omitempty"`
// Complete : Metadata of the file where the URL is saved to.
Complete *FileMetadata `json:"complete,omitempty"`
}
// Valid tag values for SaveUrlResult
const (
SaveUrlResultAsyncJobId = "async_job_id"
SaveUrlResultComplete = "complete"
)
// UnmarshalJSON deserializes into a SaveUrlResult instance
func (u *SaveUrlResult) UnmarshalJSON(body []byte) error {
type wrap struct {
dropbox.Tagged
// AsyncJobId : This response indicates that the processing is
// asynchronous. The string is an id that can be used to obtain the
// status of the asynchronous job.
AsyncJobId string `json:"async_job_id,omitempty"`
}
var w wrap
var err error
if err = json.Unmarshal(body, &w); err != nil {
return err
}
u.Tag = w.Tag
switch u.Tag {
case "async_job_id":
u.AsyncJobId = w.AsyncJobId
case "complete":
if err = json.Unmarshal(body, &u.Complete); err != nil {
return err
}
}
return nil
}
// SearchArg : has no documentation (yet)
type SearchArg struct {
// Path : The path in the user's Dropbox to search. Should probably be a
// folder.
Path string `json:"path"`
// Query : The string to search for. Query string may be rewritten to
// improve relevance of results. The string is split on spaces into multiple
// tokens. For file name searching, the last token is used for prefix
// matching (i.e. "bat c" matches "bat cave" but not "batman car").
Query string `json:"query"`
// Start : The starting index within the search results (used for paging).
Start uint64 `json:"start"`
// MaxResults : The maximum number of search results to return.
MaxResults uint64 `json:"max_results"`
// Mode : The search mode (filename, filename_and_content, or
// deleted_filename). Note that searching file content is only available for
// Dropbox Business accounts.
Mode *SearchMode `json:"mode"`
}
// NewSearchArg returns a new SearchArg instance
func NewSearchArg(Path string, Query string) *SearchArg {
s := new(SearchArg)
s.Path = Path
s.Query = Query
s.Start = 0
s.MaxResults = 100
s.Mode = &SearchMode{Tagged: dropbox.Tagged{Tag: "filename"}}
return s
}
// SearchError : has no documentation (yet)
type SearchError struct {
dropbox.Tagged
// Path : has no documentation (yet)
Path *LookupError `json:"path,omitempty"`
// InvalidArgument : has no documentation (yet)
InvalidArgument string `json:"invalid_argument,omitempty"`
}
// Valid tag values for SearchError
const (
SearchErrorPath = "path"
SearchErrorInvalidArgument = "invalid_argument"
SearchErrorInternalError = "internal_error"
SearchErrorOther = "other"
)
// UnmarshalJSON deserializes into a SearchError instance
func (u *SearchError) UnmarshalJSON(body []byte) error {
type wrap struct {
dropbox.Tagged
// Path : has no documentation (yet)
Path *LookupError `json:"path,omitempty"`
// InvalidArgument : has no documentation (yet)
InvalidArgument string `json:"invalid_argument,omitempty"`
}
var w wrap
var err error
if err = json.Unmarshal(body, &w); err != nil {
return err
}
u.Tag = w.Tag
switch u.Tag {
case "path":
u.Path = w.Path
case "invalid_argument":
u.InvalidArgument = w.InvalidArgument
}
return nil
}
// SearchMatch : has no documentation (yet)
type SearchMatch struct {
// MatchType : The type of the match.
MatchType *SearchMatchType `json:"match_type"`
// Metadata : The metadata for the matched file or folder.
Metadata IsMetadata `json:"metadata"`
}
// NewSearchMatch returns a new SearchMatch instance
func NewSearchMatch(MatchType *SearchMatchType, Metadata IsMetadata) *SearchMatch {
s := new(SearchMatch)
s.MatchType = MatchType
s.Metadata = Metadata
return s
}
// UnmarshalJSON deserializes into a SearchMatch instance
func (u *SearchMatch) UnmarshalJSON(b []byte) error {
type wrap struct {
// MatchType : The type of the match.
MatchType *SearchMatchType `json:"match_type"`
// Metadata : The metadata for the matched file or folder.
Metadata json.RawMessage `json:"metadata"`
}
var w wrap
if err := json.Unmarshal(b, &w); err != nil {
return err
}
u.MatchType = w.MatchType
Metadata, err := IsMetadataFromJSON(w.Metadata)
if err != nil {
return err
}
u.Metadata = Metadata
return nil
}
// SearchMatchFieldOptions : has no documentation (yet)
type SearchMatchFieldOptions struct {
// IncludeHighlights : Whether to include highlight span from file title.
IncludeHighlights bool `json:"include_highlights"`
}
// NewSearchMatchFieldOptions returns a new SearchMatchFieldOptions instance
func NewSearchMatchFieldOptions() *SearchMatchFieldOptions {
s := new(SearchMatchFieldOptions)
s.IncludeHighlights = false
return s
}
// SearchMatchType : Indicates what type of match was found for a given item.
type SearchMatchType struct {
dropbox.Tagged
}
// Valid tag values for SearchMatchType
const (
SearchMatchTypeFilename = "filename"
SearchMatchTypeContent = "content"
SearchMatchTypeBoth = "both"
)
// SearchMatchTypeV2 : Indicates what type of match was found for a given item.
type SearchMatchTypeV2 struct {
dropbox.Tagged
}
// Valid tag values for SearchMatchTypeV2
const (
SearchMatchTypeV2Filename = "filename"
SearchMatchTypeV2FileContent = "file_content"
SearchMatchTypeV2FilenameAndContent = "filename_and_content"
SearchMatchTypeV2ImageContent = "image_content"
SearchMatchTypeV2Other = "other"
)
// SearchMatchV2 : has no documentation (yet)
type SearchMatchV2 struct {
// Metadata : The metadata for the matched file or folder.
Metadata *MetadataV2 `json:"metadata"`
// MatchType : The type of the match.
MatchType *SearchMatchTypeV2 `json:"match_type,omitempty"`
// HighlightSpans : The list of HighlightSpan determines which parts of the
// file title should be highlighted.
HighlightSpans []*HighlightSpan `json:"highlight_spans,omitempty"`
}
// NewSearchMatchV2 returns a new SearchMatchV2 instance
func NewSearchMatchV2(Metadata *MetadataV2) *SearchMatchV2 {
s := new(SearchMatchV2)
s.Metadata = Metadata
return s
}
// SearchMode : has no documentation (yet)
type SearchMode struct {
dropbox.Tagged
}
// Valid tag values for SearchMode
const (
SearchModeFilename = "filename"
SearchModeFilenameAndContent = "filename_and_content"
SearchModeDeletedFilename = "deleted_filename"
)
// SearchOptions : has no documentation (yet)
type SearchOptions struct {
// Path : Scopes the search to a path in the user's Dropbox. Searches the
// entire Dropbox if not specified.
Path string `json:"path,omitempty"`
// MaxResults : The maximum number of search results to return.
MaxResults uint64 `json:"max_results"`
// OrderBy : Specified property of the order of search results. By default,
// results are sorted by relevance.
OrderBy *SearchOrderBy `json:"order_by,omitempty"`
// FileStatus : Restricts search to the given file status.
FileStatus *FileStatus `json:"file_status"`
// FilenameOnly : Restricts search to only match on filenames.
FilenameOnly bool `json:"filename_only"`
// FileExtensions : Restricts search to only the extensions specified. Only
// supported for active file search.
FileExtensions []string `json:"file_extensions,omitempty"`
// FileCategories : Restricts search to only the file categories specified.
// Only supported for active file search.
FileCategories []*FileCategory `json:"file_categories,omitempty"`
// AccountId : Restricts results to the given account id.
AccountId string `json:"account_id,omitempty"`
}
// NewSearchOptions returns a new SearchOptions instance
func NewSearchOptions() *SearchOptions {
s := new(SearchOptions)
s.MaxResults = 100
s.FileStatus = &FileStatus{Tagged: dropbox.Tagged{Tag: "active"}}
s.FilenameOnly = false
return s
}
// SearchOrderBy : has no documentation (yet)
type SearchOrderBy struct {
dropbox.Tagged
}
// Valid tag values for SearchOrderBy
const (
SearchOrderByRelevance = "relevance"
SearchOrderByLastModifiedTime = "last_modified_time"
SearchOrderByOther = "other"
)
// SearchResult : has no documentation (yet)
type SearchResult struct {
// Matches : A list (possibly empty) of matches for the query.
Matches []*SearchMatch `json:"matches"`
// More : Used for paging. If true, indicates there is another page of
// results available that can be fetched by calling `search` again.
More bool `json:"more"`
// Start : Used for paging. Value to set the start argument to when calling
// `search` to fetch the next page of results.
Start uint64 `json:"start"`
}
// NewSearchResult returns a new SearchResult instance
func NewSearchResult(Matches []*SearchMatch, More bool, Start uint64) *SearchResult {
s := new(SearchResult)
s.Matches = Matches
s.More = More
s.Start = Start
return s
}
// SearchV2Arg : has no documentation (yet)
type SearchV2Arg struct {
// Query : The string to search for. May match across multiple fields based
// on the request arguments.
Query string `json:"query"`
// Options : Options for more targeted search results.
Options *SearchOptions `json:"options,omitempty"`
// MatchFieldOptions : Options for search results match fields.
MatchFieldOptions *SearchMatchFieldOptions `json:"match_field_options,omitempty"`
// IncludeHighlights : Deprecated and moved this option to
// SearchMatchFieldOptions.
IncludeHighlights bool `json:"include_highlights,omitempty"`
}
// NewSearchV2Arg returns a new SearchV2Arg instance
func NewSearchV2Arg(Query string) *SearchV2Arg {
s := new(SearchV2Arg)
s.Query = Query
return s
}
// SearchV2ContinueArg : has no documentation (yet)
type SearchV2ContinueArg struct {
// Cursor : The cursor returned by your last call to `search`. Used to fetch
// the next page of results.
Cursor string `json:"cursor"`
}
// NewSearchV2ContinueArg returns a new SearchV2ContinueArg instance
func NewSearchV2ContinueArg(Cursor string) *SearchV2ContinueArg {
s := new(SearchV2ContinueArg)
s.Cursor = Cursor
return s
}
// SearchV2Result : has no documentation (yet)
type SearchV2Result struct {
// Matches : A list (possibly empty) of matches for the query.
Matches []*SearchMatchV2 `json:"matches"`
// HasMore : Used for paging. If true, indicates there is another page of
// results available that can be fetched by calling `searchContinue` with
// the cursor.
HasMore bool `json:"has_more"`
// Cursor : Pass the cursor into `searchContinue` to fetch the next page of
// results.
Cursor string `json:"cursor,omitempty"`
}
// NewSearchV2Result returns a new SearchV2Result instance
func NewSearchV2Result(Matches []*SearchMatchV2, HasMore bool) *SearchV2Result {
s := new(SearchV2Result)
s.Matches = Matches
s.HasMore = HasMore
return s
}
// SharedLink : has no documentation (yet)
type SharedLink struct {
// Url : Shared link url.
Url string `json:"url"`
// Password : Password for the shared link.
Password string `json:"password,omitempty"`
}
// NewSharedLink returns a new SharedLink instance
func NewSharedLink(Url string) *SharedLink {
s := new(SharedLink)
s.Url = Url
return s
}
// SharedLinkFileInfo : has no documentation (yet)
type SharedLinkFileInfo struct {
// Url : The shared link corresponding to either a file or shared link to a
// folder. If it is for a folder shared link, we use the path param to
// determine for which file in the folder the view is for.
Url string `json:"url"`
// Path : The path corresponding to a file in a shared link to a folder.
// Required for shared links to folders.
Path string `json:"path,omitempty"`
// Password : Password for the shared link. Required for password-protected
// shared links to files unless it can be read from a cookie.
Password string `json:"password,omitempty"`
}
// NewSharedLinkFileInfo returns a new SharedLinkFileInfo instance
func NewSharedLinkFileInfo(Url string) *SharedLinkFileInfo {
s := new(SharedLinkFileInfo)
s.Url = Url
return s
}
// SingleUserLock : has no documentation (yet)
type SingleUserLock struct {
// Created : The time the lock was created.
Created time.Time `json:"created"`
// LockHolderAccountId : The account ID of the lock holder if known.
LockHolderAccountId string `json:"lock_holder_account_id"`
// LockHolderTeamId : The id of the team of the account holder if it exists.
LockHolderTeamId string `json:"lock_holder_team_id,omitempty"`
}
// NewSingleUserLock returns a new SingleUserLock instance
func NewSingleUserLock(Created time.Time, LockHolderAccountId string) *SingleUserLock {
s := new(SingleUserLock)
s.Created = Created
s.LockHolderAccountId = LockHolderAccountId
return s
}
// SymlinkInfo : has no documentation (yet)
type SymlinkInfo struct {
// Target : The target this symlink points to.
Target string `json:"target"`
}
// NewSymlinkInfo returns a new SymlinkInfo instance
func NewSymlinkInfo(Target string) *SymlinkInfo {
s := new(SymlinkInfo)
s.Target = Target
return s
}
// SyncSetting : has no documentation (yet)
type SyncSetting struct {
dropbox.Tagged
}
// Valid tag values for SyncSetting
const (
SyncSettingDefault = "default"
SyncSettingNotSynced = "not_synced"
SyncSettingNotSyncedInactive = "not_synced_inactive"
SyncSettingOther = "other"
)
// SyncSettingArg : has no documentation (yet)
type SyncSettingArg struct {
dropbox.Tagged
}
// Valid tag values for SyncSettingArg
const (
SyncSettingArgDefault = "default"
SyncSettingArgNotSynced = "not_synced"
SyncSettingArgOther = "other"
)
// SyncSettingsError : has no documentation (yet)
type SyncSettingsError struct {
dropbox.Tagged
// Path : has no documentation (yet)
Path *LookupError `json:"path,omitempty"`
}
// Valid tag values for SyncSettingsError
const (
SyncSettingsErrorPath = "path"
SyncSettingsErrorUnsupportedCombination = "unsupported_combination"
SyncSettingsErrorUnsupportedConfiguration = "unsupported_configuration"
SyncSettingsErrorOther = "other"
)
// UnmarshalJSON deserializes into a SyncSettingsError instance
func (u *SyncSettingsError) UnmarshalJSON(body []byte) error {
type wrap struct {
dropbox.Tagged
// Path : has no documentation (yet)
Path *LookupError `json:"path,omitempty"`
}
var w wrap
var err error
if err = json.Unmarshal(body, &w); err != nil {
return err
}
u.Tag = w.Tag
switch u.Tag {
case "path":
u.Path = w.Path
}
return nil
}
// Tag : Tag that can be added in multiple ways.
type Tag struct {
dropbox.Tagged
// UserGeneratedTag : Tag generated by the user.
UserGeneratedTag *UserGeneratedTag `json:"user_generated_tag,omitempty"`
}
// Valid tag values for Tag
const (
TagUserGeneratedTag = "user_generated_tag"
TagOther = "other"
)
// UnmarshalJSON deserializes into a Tag instance
func (u *Tag) UnmarshalJSON(body []byte) error {
type wrap struct {
dropbox.Tagged
}
var w wrap
var err error
if err = json.Unmarshal(body, &w); err != nil {
return err
}
u.Tag = w.Tag
switch u.Tag {
case "user_generated_tag":
if err = json.Unmarshal(body, &u.UserGeneratedTag); err != nil {
return err
}
}
return nil
}
// ThumbnailArg : has no documentation (yet)
type ThumbnailArg struct {
// Path : The path to the image file you want to thumbnail.
Path string `json:"path"`
// Format : The format for the thumbnail image, jpeg (default) or png. For
// images that are photos, jpeg should be preferred, while png is better
// for screenshots and digital arts.
Format *ThumbnailFormat `json:"format"`
// Size : The size for the thumbnail image.
Size *ThumbnailSize `json:"size"`
// Mode : How to resize and crop the image to achieve the desired size.
Mode *ThumbnailMode `json:"mode"`
}
// NewThumbnailArg returns a new ThumbnailArg instance
func NewThumbnailArg(Path string) *ThumbnailArg {
s := new(ThumbnailArg)
s.Path = Path
s.Format = &ThumbnailFormat{Tagged: dropbox.Tagged{Tag: "jpeg"}}
s.Size = &ThumbnailSize{Tagged: dropbox.Tagged{Tag: "w64h64"}}
s.Mode = &ThumbnailMode{Tagged: dropbox.Tagged{Tag: "strict"}}
return s
}
// ThumbnailError : has no documentation (yet)
type ThumbnailError struct {
dropbox.Tagged
// Path : An error occurs when downloading metadata for the image.
Path *LookupError `json:"path,omitempty"`
}
// Valid tag values for ThumbnailError
const (
ThumbnailErrorPath = "path"
ThumbnailErrorUnsupportedExtension = "unsupported_extension"
ThumbnailErrorUnsupportedImage = "unsupported_image"
ThumbnailErrorConversionError = "conversion_error"
)
// UnmarshalJSON deserializes into a ThumbnailError instance
func (u *ThumbnailError) UnmarshalJSON(body []byte) error {
type wrap struct {
dropbox.Tagged
// Path : An error occurs when downloading metadata for the image.
Path *LookupError `json:"path,omitempty"`
}
var w wrap
var err error
if err = json.Unmarshal(body, &w); err != nil {
return err
}
u.Tag = w.Tag
switch u.Tag {
case "path":
u.Path = w.Path
}
return nil
}
// ThumbnailFormat : has no documentation (yet)
type ThumbnailFormat struct {
dropbox.Tagged
}
// Valid tag values for ThumbnailFormat
const (
ThumbnailFormatJpeg = "jpeg"
ThumbnailFormatPng = "png"
)
// ThumbnailMode : has no documentation (yet)
type ThumbnailMode struct {
dropbox.Tagged
}
// Valid tag values for ThumbnailMode
const (
ThumbnailModeStrict = "strict"
ThumbnailModeBestfit = "bestfit"
ThumbnailModeFitoneBestfit = "fitone_bestfit"
)
// ThumbnailSize : has no documentation (yet)
type ThumbnailSize struct {
dropbox.Tagged
}
// Valid tag values for ThumbnailSize
const (
ThumbnailSizeW32h32 = "w32h32"
ThumbnailSizeW64h64 = "w64h64"
ThumbnailSizeW128h128 = "w128h128"
ThumbnailSizeW256h256 = "w256h256"
ThumbnailSizeW480h320 = "w480h320"
ThumbnailSizeW640h480 = "w640h480"
ThumbnailSizeW960h640 = "w960h640"
ThumbnailSizeW1024h768 = "w1024h768"
ThumbnailSizeW2048h1536 = "w2048h1536"
)
// ThumbnailV2Arg : has no documentation (yet)
type ThumbnailV2Arg struct {
// Resource : Information specifying which file to preview. This could be a
// path to a file, a shared link pointing to a file, or a shared link
// pointing to a folder, with a relative path.
Resource *PathOrLink `json:"resource"`
// Format : The format for the thumbnail image, jpeg (default) or png. For
// images that are photos, jpeg should be preferred, while png is better
// for screenshots and digital arts.
Format *ThumbnailFormat `json:"format"`
// Size : The size for the thumbnail image.
Size *ThumbnailSize `json:"size"`
// Mode : How to resize and crop the image to achieve the desired size.
Mode *ThumbnailMode `json:"mode"`
}
// NewThumbnailV2Arg returns a new ThumbnailV2Arg instance
func NewThumbnailV2Arg(Resource *PathOrLink) *ThumbnailV2Arg {
s := new(ThumbnailV2Arg)
s.Resource = Resource
s.Format = &ThumbnailFormat{Tagged: dropbox.Tagged{Tag: "jpeg"}}
s.Size = &ThumbnailSize{Tagged: dropbox.Tagged{Tag: "w64h64"}}
s.Mode = &ThumbnailMode{Tagged: dropbox.Tagged{Tag: "strict"}}
return s
}
// ThumbnailV2Error : has no documentation (yet)
type ThumbnailV2Error struct {
dropbox.Tagged
// Path : An error occurred when downloading metadata for the image.
Path *LookupError `json:"path,omitempty"`
}
// Valid tag values for ThumbnailV2Error
const (
ThumbnailV2ErrorPath = "path"
ThumbnailV2ErrorUnsupportedExtension = "unsupported_extension"
ThumbnailV2ErrorUnsupportedImage = "unsupported_image"
ThumbnailV2ErrorConversionError = "conversion_error"
ThumbnailV2ErrorAccessDenied = "access_denied"
ThumbnailV2ErrorNotFound = "not_found"
ThumbnailV2ErrorOther = "other"
)
// UnmarshalJSON deserializes into a ThumbnailV2Error instance
func (u *ThumbnailV2Error) UnmarshalJSON(body []byte) error {
type wrap struct {
dropbox.Tagged
// Path : An error occurred when downloading metadata for the image.
Path *LookupError `json:"path,omitempty"`
}
var w wrap
var err error
if err = json.Unmarshal(body, &w); err != nil {
return err
}
u.Tag = w.Tag
switch u.Tag {
case "path":
u.Path = w.Path
}
return nil
}
// UnlockFileArg : has no documentation (yet)
type UnlockFileArg struct {
// Path : Path in the user's Dropbox to a file.
Path string `json:"path"`
}
// NewUnlockFileArg returns a new UnlockFileArg instance
func NewUnlockFileArg(Path string) *UnlockFileArg {
s := new(UnlockFileArg)
s.Path = Path
return s
}
// UnlockFileBatchArg : has no documentation (yet)
type UnlockFileBatchArg struct {
// Entries : List of 'entries'. Each 'entry' contains a path of the file
// which will be unlocked. Duplicate path arguments in the batch are
// considered only once.
Entries []*UnlockFileArg `json:"entries"`
}
// NewUnlockFileBatchArg returns a new UnlockFileBatchArg instance
func NewUnlockFileBatchArg(Entries []*UnlockFileArg) *UnlockFileBatchArg {
s := new(UnlockFileBatchArg)
s.Entries = Entries
return s
}
// UploadArg : has no documentation (yet)
type UploadArg struct {
CommitInfo
// ContentHash : A hash of the file content uploaded in this call. If
// provided and the uploaded content does not match this hash, an error will
// be returned. For more information see our `Content hash`
// <https://www.dropbox.com/developers/reference/content-hash> page.
ContentHash string `json:"content_hash,omitempty"`
}
// NewUploadArg returns a new UploadArg instance
func NewUploadArg(Path string) *UploadArg {
s := new(UploadArg)
s.Path = Path
s.Mode = &WriteMode{Tagged: dropbox.Tagged{Tag: "add"}}
s.Autorename = false
s.Mute = false
s.StrictConflict = false
return s
}
// UploadError : has no documentation (yet)
type UploadError struct {
dropbox.Tagged
// Path : Unable to save the uploaded contents to a file.
Path *UploadWriteFailed `json:"path,omitempty"`
// PropertiesError : The supplied property group is invalid. The file has
// uploaded without property groups.
PropertiesError *file_properties.InvalidPropertyGroupError `json:"properties_error,omitempty"`
}
// Valid tag values for UploadError
const (
UploadErrorPath = "path"
UploadErrorPropertiesError = "properties_error"
UploadErrorPayloadTooLarge = "payload_too_large"
UploadErrorContentHashMismatch = "content_hash_mismatch"
UploadErrorOther = "other"
)
// UnmarshalJSON deserializes into a UploadError instance
func (u *UploadError) UnmarshalJSON(body []byte) error {
type wrap struct {
dropbox.Tagged
// PropertiesError : The supplied property group is invalid. The file
// has uploaded without property groups.
PropertiesError *file_properties.InvalidPropertyGroupError `json:"properties_error,omitempty"`
}
var w wrap
var err error
if err = json.Unmarshal(body, &w); err != nil {
return err
}
u.Tag = w.Tag
switch u.Tag {
case "path":
if err = json.Unmarshal(body, &u.Path); err != nil {
return err
}
case "properties_error":
u.PropertiesError = w.PropertiesError
}
return nil
}
// UploadSessionAppendArg : has no documentation (yet)
type UploadSessionAppendArg struct {
// Cursor : Contains the upload session ID and the offset.
Cursor *UploadSessionCursor `json:"cursor"`
// Close : If true, the current session will be closed, at which point you
// won't be able to call `uploadSessionAppend` anymore with the current
// session.
Close bool `json:"close"`
// ContentHash : A hash of the file content uploaded in this call. If
// provided and the uploaded content does not match this hash, an error will
// be returned. For more information see our `Content hash`
// <https://www.dropbox.com/developers/reference/content-hash> page.
ContentHash string `json:"content_hash,omitempty"`
}
// NewUploadSessionAppendArg returns a new UploadSessionAppendArg instance
func NewUploadSessionAppendArg(Cursor *UploadSessionCursor) *UploadSessionAppendArg {
s := new(UploadSessionAppendArg)
s.Cursor = Cursor
s.Close = false
return s
}
// UploadSessionLookupError : has no documentation (yet)
type UploadSessionLookupError struct {
dropbox.Tagged
// IncorrectOffset : The specified offset was incorrect. See the value for
// the correct offset. This error may occur when a previous request was
// received and processed successfully but the client did not receive the
// response, e.g. due to a network error.
IncorrectOffset *UploadSessionOffsetError `json:"incorrect_offset,omitempty"`
}
// Valid tag values for UploadSessionLookupError
const (
UploadSessionLookupErrorNotFound = "not_found"
UploadSessionLookupErrorIncorrectOffset = "incorrect_offset"
UploadSessionLookupErrorClosed = "closed"
UploadSessionLookupErrorNotClosed = "not_closed"
UploadSessionLookupErrorTooLarge = "too_large"
UploadSessionLookupErrorConcurrentSessionInvalidOffset = "concurrent_session_invalid_offset"
UploadSessionLookupErrorConcurrentSessionInvalidDataSize = "concurrent_session_invalid_data_size"
UploadSessionLookupErrorPayloadTooLarge = "payload_too_large"
UploadSessionLookupErrorOther = "other"
)
// UnmarshalJSON deserializes into a UploadSessionLookupError instance
func (u *UploadSessionLookupError) UnmarshalJSON(body []byte) error {
type wrap struct {
dropbox.Tagged
}
var w wrap
var err error
if err = json.Unmarshal(body, &w); err != nil {
return err
}
u.Tag = w.Tag
switch u.Tag {
case "incorrect_offset":
if err = json.Unmarshal(body, &u.IncorrectOffset); err != nil {
return err
}
}
return nil
}
// UploadSessionAppendError : has no documentation (yet)
type UploadSessionAppendError struct {
dropbox.Tagged
// IncorrectOffset : The specified offset was incorrect. See the value for
// the correct offset. This error may occur when a previous request was
// received and processed successfully but the client did not receive the
// response, e.g. due to a network error.
IncorrectOffset *UploadSessionOffsetError `json:"incorrect_offset,omitempty"`
}
// Valid tag values for UploadSessionAppendError
const (
UploadSessionAppendErrorNotFound = "not_found"
UploadSessionAppendErrorIncorrectOffset = "incorrect_offset"
UploadSessionAppendErrorClosed = "closed"
UploadSessionAppendErrorNotClosed = "not_closed"
UploadSessionAppendErrorTooLarge = "too_large"
UploadSessionAppendErrorConcurrentSessionInvalidOffset = "concurrent_session_invalid_offset"
UploadSessionAppendErrorConcurrentSessionInvalidDataSize = "concurrent_session_invalid_data_size"
UploadSessionAppendErrorPayloadTooLarge = "payload_too_large"
UploadSessionAppendErrorOther = "other"
UploadSessionAppendErrorContentHashMismatch = "content_hash_mismatch"
)
// UnmarshalJSON deserializes into a UploadSessionAppendError instance
func (u *UploadSessionAppendError) UnmarshalJSON(body []byte) error {
type wrap struct {
dropbox.Tagged
}
var w wrap
var err error
if err = json.Unmarshal(body, &w); err != nil {
return err
}
u.Tag = w.Tag
switch u.Tag {
case "incorrect_offset":
if err = json.Unmarshal(body, &u.IncorrectOffset); err != nil {
return err
}
}
return nil
}
// UploadSessionCursor : has no documentation (yet)
type UploadSessionCursor struct {
// SessionId : The upload session ID (returned by `uploadSessionStart`).
SessionId string `json:"session_id"`
// Offset : Offset in bytes at which data should be appended. We use this to
// make sure upload data isn't lost or duplicated in the event of a network
// error.
Offset uint64 `json:"offset"`
}
// NewUploadSessionCursor returns a new UploadSessionCursor instance
func NewUploadSessionCursor(SessionId string, Offset uint64) *UploadSessionCursor {
s := new(UploadSessionCursor)
s.SessionId = SessionId
s.Offset = Offset
return s
}
// UploadSessionFinishArg : has no documentation (yet)
type UploadSessionFinishArg struct {
// Cursor : Contains the upload session ID and the offset.
Cursor *UploadSessionCursor `json:"cursor"`
// Commit : Contains the path and other optional modifiers for the commit.
Commit *CommitInfo `json:"commit"`
// ContentHash : A hash of the file content uploaded in this call. If
// provided and the uploaded content does not match this hash, an error will
// be returned. For more information see our `Content hash`
// <https://www.dropbox.com/developers/reference/content-hash> page.
ContentHash string `json:"content_hash,omitempty"`
}
// NewUploadSessionFinishArg returns a new UploadSessionFinishArg instance
func NewUploadSessionFinishArg(Cursor *UploadSessionCursor, Commit *CommitInfo) *UploadSessionFinishArg {
s := new(UploadSessionFinishArg)
s.Cursor = Cursor
s.Commit = Commit
return s
}
// UploadSessionFinishBatchArg : has no documentation (yet)
type UploadSessionFinishBatchArg struct {
// Entries : Commit information for each file in the batch.
Entries []*UploadSessionFinishArg `json:"entries"`
}
// NewUploadSessionFinishBatchArg returns a new UploadSessionFinishBatchArg instance
func NewUploadSessionFinishBatchArg(Entries []*UploadSessionFinishArg) *UploadSessionFinishBatchArg {
s := new(UploadSessionFinishBatchArg)
s.Entries = Entries
return s
}
// UploadSessionFinishBatchJobStatus : has no documentation (yet)
type UploadSessionFinishBatchJobStatus struct {
dropbox.Tagged
// Complete : The `uploadSessionFinishBatch` has finished.
Complete *UploadSessionFinishBatchResult `json:"complete,omitempty"`
}
// Valid tag values for UploadSessionFinishBatchJobStatus
const (
UploadSessionFinishBatchJobStatusInProgress = "in_progress"
UploadSessionFinishBatchJobStatusComplete = "complete"
)
// UnmarshalJSON deserializes into a UploadSessionFinishBatchJobStatus instance
func (u *UploadSessionFinishBatchJobStatus) UnmarshalJSON(body []byte) error {
type wrap struct {
dropbox.Tagged
}
var w wrap
var err error
if err = json.Unmarshal(body, &w); err != nil {
return err
}
u.Tag = w.Tag
switch u.Tag {
case "complete":
if err = json.Unmarshal(body, &u.Complete); err != nil {
return err
}
}
return nil
}
// UploadSessionFinishBatchLaunch : Result returned by
// `uploadSessionFinishBatch` that may either launch an asynchronous job or
// complete synchronously.
type UploadSessionFinishBatchLaunch struct {
dropbox.Tagged
// AsyncJobId : This response indicates that the processing is asynchronous.
// The string is an id that can be used to obtain the status of the
// asynchronous job.
AsyncJobId string `json:"async_job_id,omitempty"`
// Complete : has no documentation (yet)
Complete *UploadSessionFinishBatchResult `json:"complete,omitempty"`
}
// Valid tag values for UploadSessionFinishBatchLaunch
const (
UploadSessionFinishBatchLaunchAsyncJobId = "async_job_id"
UploadSessionFinishBatchLaunchComplete = "complete"
UploadSessionFinishBatchLaunchOther = "other"
)
// UnmarshalJSON deserializes into a UploadSessionFinishBatchLaunch instance
func (u *UploadSessionFinishBatchLaunch) UnmarshalJSON(body []byte) error {
type wrap struct {
dropbox.Tagged
// AsyncJobId : This response indicates that the processing is
// asynchronous. The string is an id that can be used to obtain the
// status of the asynchronous job.
AsyncJobId string `json:"async_job_id,omitempty"`
}
var w wrap
var err error
if err = json.Unmarshal(body, &w); err != nil {
return err
}
u.Tag = w.Tag
switch u.Tag {
case "async_job_id":
u.AsyncJobId = w.AsyncJobId
case "complete":
if err = json.Unmarshal(body, &u.Complete); err != nil {
return err
}
}
return nil
}
// UploadSessionFinishBatchResult : has no documentation (yet)
type UploadSessionFinishBatchResult struct {
// Entries : Each entry in `UploadSessionFinishBatchArg.entries` will appear
// at the same position inside `UploadSessionFinishBatchResult.entries`.
Entries []*UploadSessionFinishBatchResultEntry `json:"entries"`
}
// NewUploadSessionFinishBatchResult returns a new UploadSessionFinishBatchResult instance
func NewUploadSessionFinishBatchResult(Entries []*UploadSessionFinishBatchResultEntry) *UploadSessionFinishBatchResult {
s := new(UploadSessionFinishBatchResult)
s.Entries = Entries
return s
}
// UploadSessionFinishBatchResultEntry : has no documentation (yet)
type UploadSessionFinishBatchResultEntry struct {
dropbox.Tagged
// Success : has no documentation (yet)
Success *FileMetadata `json:"success,omitempty"`
// Failure : has no documentation (yet)
Failure *UploadSessionFinishError `json:"failure,omitempty"`
}
// Valid tag values for UploadSessionFinishBatchResultEntry
const (
UploadSessionFinishBatchResultEntrySuccess = "success"
UploadSessionFinishBatchResultEntryFailure = "failure"
)
// UnmarshalJSON deserializes into a UploadSessionFinishBatchResultEntry instance
func (u *UploadSessionFinishBatchResultEntry) UnmarshalJSON(body []byte) error {
type wrap struct {
dropbox.Tagged
// Failure : has no documentation (yet)
Failure *UploadSessionFinishError `json:"failure,omitempty"`
}
var w wrap
var err error
if err = json.Unmarshal(body, &w); err != nil {
return err
}
u.Tag = w.Tag
switch u.Tag {
case "success":
if err = json.Unmarshal(body, &u.Success); err != nil {
return err
}
case "failure":
u.Failure = w.Failure
}
return nil
}
// UploadSessionFinishError : has no documentation (yet)
type UploadSessionFinishError struct {
dropbox.Tagged
// LookupFailed : The session arguments are incorrect; the value explains
// the reason.
LookupFailed *UploadSessionLookupError `json:"lookup_failed,omitempty"`
// Path : Unable to save the uploaded contents to a file. Data has already
// been appended to the upload session. Please retry with empty data body
// and updated offset.
Path *WriteError `json:"path,omitempty"`
// PropertiesError : The supplied property group is invalid. The file has
// uploaded without property groups.
PropertiesError *file_properties.InvalidPropertyGroupError `json:"properties_error,omitempty"`
}
// Valid tag values for UploadSessionFinishError
const (
UploadSessionFinishErrorLookupFailed = "lookup_failed"
UploadSessionFinishErrorPath = "path"
UploadSessionFinishErrorPropertiesError = "properties_error"
UploadSessionFinishErrorTooManySharedFolderTargets = "too_many_shared_folder_targets"
UploadSessionFinishErrorTooManyWriteOperations = "too_many_write_operations"
UploadSessionFinishErrorConcurrentSessionDataNotAllowed = "concurrent_session_data_not_allowed"
UploadSessionFinishErrorConcurrentSessionNotClosed = "concurrent_session_not_closed"
UploadSessionFinishErrorConcurrentSessionMissingData = "concurrent_session_missing_data"
UploadSessionFinishErrorPayloadTooLarge = "payload_too_large"
UploadSessionFinishErrorContentHashMismatch = "content_hash_mismatch"
UploadSessionFinishErrorOther = "other"
)
// UnmarshalJSON deserializes into a UploadSessionFinishError instance
func (u *UploadSessionFinishError) UnmarshalJSON(body []byte) error {
type wrap struct {
dropbox.Tagged
// LookupFailed : The session arguments are incorrect; the value
// explains the reason.
LookupFailed *UploadSessionLookupError `json:"lookup_failed,omitempty"`
// Path : Unable to save the uploaded contents to a file. Data has
// already been appended to the upload session. Please retry with empty
// data body and updated offset.
Path *WriteError `json:"path,omitempty"`
// PropertiesError : The supplied property group is invalid. The file
// has uploaded without property groups.
PropertiesError *file_properties.InvalidPropertyGroupError `json:"properties_error,omitempty"`
}
var w wrap
var err error
if err = json.Unmarshal(body, &w); err != nil {
return err
}
u.Tag = w.Tag
switch u.Tag {
case "lookup_failed":
u.LookupFailed = w.LookupFailed
case "path":
u.Path = w.Path
case "properties_error":
u.PropertiesError = w.PropertiesError
}
return nil
}
// UploadSessionOffsetError : has no documentation (yet)
type UploadSessionOffsetError struct {
// CorrectOffset : The offset up to which data has been collected.
CorrectOffset uint64 `json:"correct_offset"`
}
// NewUploadSessionOffsetError returns a new UploadSessionOffsetError instance
func NewUploadSessionOffsetError(CorrectOffset uint64) *UploadSessionOffsetError {
s := new(UploadSessionOffsetError)
s.CorrectOffset = CorrectOffset
return s
}
// UploadSessionStartArg : has no documentation (yet)
type UploadSessionStartArg struct {
// Close : If true, the current session will be closed, at which point you
// won't be able to call `uploadSessionAppend` anymore with the current
// session.
Close bool `json:"close"`
// SessionType : Type of upload session you want to start. If not specified,
// default is `UploadSessionType.sequential`.
SessionType *UploadSessionType `json:"session_type,omitempty"`
// ContentHash : A hash of the file content uploaded in this call. If
// provided and the uploaded content does not match this hash, an error will
// be returned. For more information see our `Content hash`
// <https://www.dropbox.com/developers/reference/content-hash> page.
ContentHash string `json:"content_hash,omitempty"`
}
// NewUploadSessionStartArg returns a new UploadSessionStartArg instance
func NewUploadSessionStartArg() *UploadSessionStartArg {
s := new(UploadSessionStartArg)
s.Close = false
return s
}
// UploadSessionStartBatchArg : has no documentation (yet)
type UploadSessionStartBatchArg struct {
// SessionType : Type of upload session you want to start. If not specified,
// default is `UploadSessionType.sequential`.
SessionType *UploadSessionType `json:"session_type,omitempty"`
// NumSessions : The number of upload sessions to start.
NumSessions uint64 `json:"num_sessions"`
}
// NewUploadSessionStartBatchArg returns a new UploadSessionStartBatchArg instance
func NewUploadSessionStartBatchArg(NumSessions uint64) *UploadSessionStartBatchArg {
s := new(UploadSessionStartBatchArg)
s.NumSessions = NumSessions
return s
}
// UploadSessionStartBatchResult : has no documentation (yet)
type UploadSessionStartBatchResult struct {
// SessionIds : A List of unique identifiers for the upload session. Pass
// each session_id to `uploadSessionAppend` and `uploadSessionFinish`.
SessionIds []string `json:"session_ids"`
}
// NewUploadSessionStartBatchResult returns a new UploadSessionStartBatchResult instance
func NewUploadSessionStartBatchResult(SessionIds []string) *UploadSessionStartBatchResult {
s := new(UploadSessionStartBatchResult)
s.SessionIds = SessionIds
return s
}
// UploadSessionStartError : has no documentation (yet)
type UploadSessionStartError struct {
dropbox.Tagged
}
// Valid tag values for UploadSessionStartError
const (
UploadSessionStartErrorConcurrentSessionDataNotAllowed = "concurrent_session_data_not_allowed"
UploadSessionStartErrorConcurrentSessionCloseNotAllowed = "concurrent_session_close_not_allowed"
UploadSessionStartErrorPayloadTooLarge = "payload_too_large"
UploadSessionStartErrorContentHashMismatch = "content_hash_mismatch"
UploadSessionStartErrorOther = "other"
)
// UploadSessionStartResult : has no documentation (yet)
type UploadSessionStartResult struct {
// SessionId : A unique identifier for the upload session. Pass this to
// `uploadSessionAppend` and `uploadSessionFinish`.
SessionId string `json:"session_id"`
}
// NewUploadSessionStartResult returns a new UploadSessionStartResult instance
func NewUploadSessionStartResult(SessionId string) *UploadSessionStartResult {
s := new(UploadSessionStartResult)
s.SessionId = SessionId
return s
}
// UploadSessionType : has no documentation (yet)
type UploadSessionType struct {
dropbox.Tagged
}
// Valid tag values for UploadSessionType
const (
UploadSessionTypeSequential = "sequential"
UploadSessionTypeConcurrent = "concurrent"
UploadSessionTypeOther = "other"
)
// UploadWriteFailed : has no documentation (yet)
type UploadWriteFailed struct {
// Reason : The reason why the file couldn't be saved.
Reason *WriteError `json:"reason"`
// UploadSessionId : The upload session ID; data has already been uploaded
// to the corresponding upload session and this ID may be used to retry the
// commit with `uploadSessionFinish`.
UploadSessionId string `json:"upload_session_id"`
}
// NewUploadWriteFailed returns a new UploadWriteFailed instance
func NewUploadWriteFailed(Reason *WriteError, UploadSessionId string) *UploadWriteFailed {
s := new(UploadWriteFailed)
s.Reason = Reason
s.UploadSessionId = UploadSessionId
return s
}
// UserGeneratedTag : has no documentation (yet)
type UserGeneratedTag struct {
// TagText : has no documentation (yet)
TagText string `json:"tag_text"`
}
// NewUserGeneratedTag returns a new UserGeneratedTag instance
func NewUserGeneratedTag(TagText string) *UserGeneratedTag {
s := new(UserGeneratedTag)
s.TagText = TagText
return s
}
// VideoMetadata : Metadata for a video.
type VideoMetadata struct {
MediaMetadata
// Duration : The duration of the video in milliseconds.
Duration uint64 `json:"duration,omitempty"`
}
// NewVideoMetadata returns a new VideoMetadata instance
func NewVideoMetadata() *VideoMetadata {
s := new(VideoMetadata)
return s
}
// WriteConflictError : has no documentation (yet)
type WriteConflictError struct {
dropbox.Tagged
}
// Valid tag values for WriteConflictError
const (
WriteConflictErrorFile = "file"
WriteConflictErrorFolder = "folder"
WriteConflictErrorFileAncestor = "file_ancestor"
WriteConflictErrorOther = "other"
)
// WriteError : has no documentation (yet)
type WriteError struct {
dropbox.Tagged
// MalformedPath : The given path does not satisfy the required path format.
// Please refer to the `Path formats documentation`
// <https://www.dropbox.com/developers/documentation/http/documentation#path-formats>
// for more information.
MalformedPath string `json:"malformed_path,omitempty"`
// Conflict : Couldn't write to the target path because there was something
// in the way.
Conflict *WriteConflictError `json:"conflict,omitempty"`
}
// Valid tag values for WriteError
const (
WriteErrorMalformedPath = "malformed_path"
WriteErrorConflict = "conflict"
WriteErrorNoWritePermission = "no_write_permission"
WriteErrorInsufficientSpace = "insufficient_space"
WriteErrorDisallowedName = "disallowed_name"
WriteErrorTeamFolder = "team_folder"
WriteErrorOperationSuppressed = "operation_suppressed"
WriteErrorTooManyWriteOperations = "too_many_write_operations"
WriteErrorOther = "other"
)
// UnmarshalJSON deserializes into a WriteError instance
func (u *WriteError) UnmarshalJSON(body []byte) error {
type wrap struct {
dropbox.Tagged
// MalformedPath : The given path does not satisfy the required path
// format. Please refer to the `Path formats documentation`
// <https://www.dropbox.com/developers/documentation/http/documentation#path-formats>
// for more information.
MalformedPath string `json:"malformed_path,omitempty"`
// Conflict : Couldn't write to the target path because there was
// something in the way.
Conflict *WriteConflictError `json:"conflict,omitempty"`
}
var w wrap
var err error
if err = json.Unmarshal(body, &w); err != nil {
return err
}
u.Tag = w.Tag
switch u.Tag {
case "malformed_path":
u.MalformedPath = w.MalformedPath
case "conflict":
u.Conflict = w.Conflict
}
return nil
}
// WriteMode : Your intent when writing a file to some path. This is used to
// determine what constitutes a conflict and what the autorename strategy is. In
// some situations, the conflict behavior is identical: (a) If the target path
// doesn't refer to anything, the file is always written; no conflict. (b) If
// the target path refers to a folder, it's always a conflict. (c) If the target
// path refers to a file with identical contents, nothing gets written; no
// conflict. The conflict checking differs in the case where there's a file at
// the target path with contents different from the contents you're trying to
// write.
type WriteMode struct {
dropbox.Tagged
// Update : Overwrite if the given "rev" matches the existing file's "rev".
// The supplied value should be the latest known "rev" of the file, for
// example, from `FileMetadata`, from when the file was last downloaded by
// the app. This will cause the file on the Dropbox servers to be
// overwritten if the given "rev" matches the existing file's current "rev"
// on the Dropbox servers. The autorename strategy is to append the string
// "conflicted copy" to the file name. For example, "document.txt" might
// become "document (conflicted copy).txt" or "document (Panda's conflicted
// copy).txt".
Update string `json:"update,omitempty"`
}
// Valid tag values for WriteMode
const (
WriteModeAdd = "add"
WriteModeOverwrite = "overwrite"
WriteModeUpdate = "update"
)
// UnmarshalJSON deserializes into a WriteMode instance
func (u *WriteMode) UnmarshalJSON(body []byte) error {
type wrap struct {
dropbox.Tagged
// Update : Overwrite if the given "rev" matches the existing file's
// "rev". The supplied value should be the latest known "rev" of the
// file, for example, from `FileMetadata`, from when the file was last
// downloaded by the app. This will cause the file on the Dropbox
// servers to be overwritten if the given "rev" matches the existing
// file's current "rev" on the Dropbox servers. The autorename strategy
// is to append the string "conflicted copy" to the file name. For
// example, "document.txt" might become "document (conflicted copy).txt"
// or "document (Panda's conflicted copy).txt".
Update string `json:"update,omitempty"`
}
var w wrap
var err error
if err = json.Unmarshal(body, &w); err != nil {
return err
}
u.Tag = w.Tag
switch u.Tag {
case "update":
u.Update = w.Update
}
return nil
}
|