Exceptions API Models
PlatformErrorCodes
Bases: BaseEnum
No description given by bungie.
Source code in src/bungio/models/bungie/exceptions.py
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 | |
ACCESS_NOT_PERMITTED_BY_APPLICATION_SCOPE = 2108
class-attribute
instance-attribute
No description given by bungie.
ACCESS_TOKEN_HAS_EXPIRED = 2111
class-attribute
instance-attribute
No description given by bungie.
ACTIVITIES_PARAMETER_NULL = 702
class-attribute
instance-attribute
No description given by bungie.
ACTIVITIES_UNKNOWN_EXCEPTION = 701
class-attribute
instance-attribute
No description given by bungie.
ACTIVITY_COUNTS_DIABLED = 703
class-attribute
instance-attribute
No description given by bungie.
ACTIVITY_LOGGING_DISABLED = 707
class-attribute
instance-attribute
No description given by bungie.
ACTIVITY_PERMISSION_DENIED = 705
class-attribute
instance-attribute
No description given by bungie.
ACTIVITY_SEARCH_INVALID_PARAMETERS = 704
class-attribute
instance-attribute
No description given by bungie.
ADD_SURVEY_ANSWERS_UNKNOWN_SQL_EXCEPTION = 400
class-attribute
instance-attribute
No description given by bungie.
ALLIANCE_CHILD_NOT_DEFINED = 671
class-attribute
instance-attribute
No description given by bungie.
ALLIANCE_OWNER_CANNOT_JOIN_ALLIANCE = 662
class-attribute
instance-attribute
No description given by bungie.
ALLIANCE_OWNER_NOT_DEFINED = 670
class-attribute
instance-attribute
No description given by bungie.
ALREADY_CLAN_MEMBER_ON_PLATFORM = 632
class-attribute
instance-attribute
No description given by bungie.
ALREADY_REQUESTING_MEMBERSHIP_FOR_CLAN_PLATFORM = 631
class-attribute
instance-attribute
No description given by bungie.
API_EXCEEDED_MAX_KEYS = 2100
class-attribute
instance-attribute
No description given by bungie.
API_INVALID_OR_EXPIRED_KEY = 2101
class-attribute
instance-attribute
No description given by bungie.
API_KEY_MISSING_FROM_REQUEST = 2102
class-attribute
instance-attribute
No description given by bungie.
APPLE_PUSH_BAD_REQUEST = 3803
class-attribute
instance-attribute
No description given by bungie.
APPLE_PUSH_ERROR_NULL = 3801
class-attribute
instance-attribute
No description given by bungie.
APPLE_PUSH_ERROR_TIMEOUT = 3802
class-attribute
instance-attribute
No description given by bungie.
APPLE_PUSH_ERROR_UNKNOWN = 3800
class-attribute
instance-attribute
No description given by bungie.
APPLE_PUSH_FAILED_AUTH = 3804
class-attribute
instance-attribute
No description given by bungie.
APPLE_PUSH_SERVICE_UNAVAILABLE = 3806
class-attribute
instance-attribute
No description given by bungie.
APPLE_PUSH_THROTTLED = 3805
class-attribute
instance-attribute
No description given by bungie.
APPLICATION_DISABLED = 2103
class-attribute
instance-attribute
No description given by bungie.
APPLICATION_DISALLOWED_BY_SCOPE = 2105
class-attribute
instance-attribute
No description given by bungie.
APPLICATION_EXCEEDED_MAX = 2104
class-attribute
instance-attribute
No description given by bungie.
APPLICATION_NAME_IS_TAKEN = 2109
class-attribute
instance-attribute
No description given by bungie.
APPLICATION_NOT_CONFIGURED_FOR_BUNGIE_AUTH = 2113
class-attribute
instance-attribute
No description given by bungie.
APPLICATION_NOT_CONFIGURED_FOR_O_AUTH = 2114
class-attribute
instance-attribute
No description given by bungie.
APPLICATION_TOKEN_FORMAT_NOT_VALID = 2112
class-attribute
instance-attribute
No description given by bungie.
APPLICATION_TOKEN_KEY_ID_DOES_NOT_EXIST = 2116
class-attribute
instance-attribute
No description given by bungie.
AUTHENTICATION_INVALID = 10
class-attribute
instance-attribute
No description given by bungie.
AUTHORIZATION_CODE_INVALID = 2106
class-attribute
instance-attribute
No description given by bungie.
AUTHORIZATION_CODE_STALE = 2122
class-attribute
instance-attribute
No description given by bungie.
AUTHORIZATION_RECORD_API_KEY_MATCHING = 2126
class-attribute
instance-attribute
No description given by bungie.
AUTHORIZATION_RECORD_EXPIRED = 2123
class-attribute
instance-attribute
No description given by bungie.
AUTHORIZATION_RECORD_INACTIVE_API_KEY = 2125
class-attribute
instance-attribute
No description given by bungie.
AUTHORIZATION_RECORD_INVALID = 2119
class-attribute
instance-attribute
No description given by bungie.
AUTHORIZATION_RECORD_REVOKED = 2124
class-attribute
instance-attribute
No description given by bungie.
AUTH_CONTEXT_CACHE_ASSERTION = 52
class-attribute
instance-attribute
No description given by bungie.
AUTH_TICKET_REQUIRED = 95
class-attribute
instance-attribute
No description given by bungie.
AUTH_VERIFICATION_NOT_LINKED_TO_ACCOUNT = 3300
class-attribute
instance-attribute
No description given by bungie.
AWA_REQUEST_WAS_UNANSWERED_FOR_TOO_LONG = 2803
class-attribute
instance-attribute
No description given by bungie.
AWA_THE_FEATURE_REQUIRES_A_REGISTERED_DEVICE = 2802
class-attribute
instance-attribute
No description given by bungie.
AWA_TOO_MANY_PENDING_REQUESTS = 2801
class-attribute
instance-attribute
No description given by bungie.
AWA_TYPE_DISABLED = 2800
class-attribute
instance-attribute
No description given by bungie.
AWA_WRITE_REQUEST_MISSING_OR_INVALID_TOKEN = 2804
class-attribute
instance-attribute
No description given by bungie.
AWA_WRITE_REQUEST_TOKEN_EXPIRED = 2805
class-attribute
instance-attribute
No description given by bungie.
AWA_WRITE_REQUEST_TOKEN_USAGE_LIMIT_REACHED = 2806
class-attribute
instance-attribute
No description given by bungie.
BAD_REQUEST = 9
class-attribute
instance-attribute
No description given by bungie.
BELOW_MINIMUM_SUGGESTION_LENGTH = 901
class-attribute
instance-attribute
No description given by bungie.
BUNGIE_NET_ACCOUNT_CREATION_REQUIRED = 98
class-attribute
instance-attribute
No description given by bungie.
BUNGIE_REWARD_EMAIL_STATE_INVALID = 2049
class-attribute
instance-attribute
No description given by bungie.
BUNGIE_REWARD_NOT_YET_CLAIMABLE = 2050
class-attribute
instance-attribute
No description given by bungie.
CANNOT_FOLLOW_SELF = 803
class-attribute
instance-attribute
No description given by bungie.
CANNOT_GET_SUGGESTIONS_ON_MULTIPLE_TAGS_SIMULTANEOUSLY = 902
class-attribute
instance-attribute
No description given by bungie.
CANNOT_USE_MOBILE_AUTH_WITH_NON_MOBILE_PROVIDER = 92
class-attribute
instance-attribute
No description given by bungie.
CHILD_GROUP_ALREADY_IN_ALLIANCE = 660
class-attribute
instance-attribute
No description given by bungie.
CHILD_GROUP_CANNOT_INVITE_TO_ALLIANCE = 664
class-attribute
instance-attribute
No description given by bungie.
CLAN_ALREADY_ENABLED_FOR_PLATFORM = 653
class-attribute
instance-attribute
No description given by bungie.
CLAN_APPLICANT_IN_CLAN_SO_NOW_INVITED = 699
class-attribute
instance-attribute
No description given by bungie.
CLAN_CALLSIGN_CANNOT_START_OR_END_WITH_WHITE_SPACE = 681
class-attribute
instance-attribute
No description given by bungie.
CLAN_CANNOT_JOIN_NO_CREDENTIAL = 657
class-attribute
instance-attribute
No description given by bungie.
CLAN_CANNOT_SET_TWO_DEFAULT_POST_TYPES = 648
class-attribute
instance-attribute
No description given by bungie.
CLAN_CREATION_BAN = 752
class-attribute
instance-attribute
No description given by bungie.
CLAN_CREATION_IN_WORLD_SERVER_FAILED = 685
class-attribute
instance-attribute
No description given by bungie.
CLAN_CREATION_TENURE_REQUIREMENTS_NOT_MET = 753
class-attribute
instance-attribute
No description given by bungie.
CLAN_CULTURE_ILLEGAL_CHARACTERS = 672
class-attribute
instance-attribute
No description given by bungie.
CLAN_ENABLED_BUT_COULD_NOT_JOIN_ALREADY_MEMBER = 656
class-attribute
instance-attribute
No description given by bungie.
CLAN_ENABLED_BUT_COULD_NOT_JOIN_NO_ACCOUNT = 655
class-attribute
instance-attribute
No description given by bungie.
CLAN_FIELD_CONTAINS_INAPPROPRIATE_CONTENT = 755
class-attribute
instance-attribute
No description given by bungie.
CLAN_FIELD_CONTAINS_RESERVED_TERMS = 754
class-attribute
instance-attribute
No description given by bungie.
CLAN_FIRETEAM_ADD_NO_ALTERNATES_FOR_IMMEDIATE = 3001
class-attribute
instance-attribute
No description given by bungie.
CLAN_FIRETEAM_ALREADY_JOINED = 3023
class-attribute
instance-attribute
No description given by bungie.
CLAN_FIRETEAM_ALT_FULL = 3003
class-attribute
instance-attribute
No description given by bungie.
CLAN_FIRETEAM_BLOCKED = 3004
class-attribute
instance-attribute
No description given by bungie.
CLAN_FIRETEAM_CANNOT_ADJUST_SLOT_COUNT = 3008
class-attribute
instance-attribute
No description given by bungie.
CLAN_FIRETEAM_CANNOT_REOPEN_SCHEDULED_FIRETEAMS = 3031
class-attribute
instance-attribute
No description given by bungie.
CLAN_FIRETEAM_EXPIRED = 3026
class-attribute
instance-attribute
No description given by bungie.
CLAN_FIRETEAM_FULL = 3002
class-attribute
instance-attribute
No description given by bungie.
CLAN_FIRETEAM_GAME_INVITES_NOT_SUPPORT_FOR_PLATFORM = 3011
class-attribute
instance-attribute
No description given by bungie.
CLAN_FIRETEAM_INVALID_AUTH_CONTEXT = 3013
class-attribute
instance-attribute
No description given by bungie.
CLAN_FIRETEAM_INVALID_AUTH_PROVIDER = 3027
class-attribute
instance-attribute
No description given by bungie.
CLAN_FIRETEAM_INVALID_AUTH_PROVIDER_PSN = 3014
class-attribute
instance-attribute
No description given by bungie.
CLAN_FIRETEAM_INVALID_AUTH_PROVIDER_XUID = 3028
class-attribute
instance-attribute
No description given by bungie.
CLAN_FIRETEAM_INVALID_AUTH_TOKEN = 3016
class-attribute
instance-attribute
No description given by bungie.
CLAN_FIRETEAM_INVALID_PLATFORM = 3007
class-attribute
instance-attribute
No description given by bungie.
CLAN_FIRETEAM_INVALID_PLAYER_PLATFORM = 3009
class-attribute
instance-attribute
No description given by bungie.
CLAN_FIRETEAM_JOIN_NO_ACCOUNT_SPECIFIED = 3032
class-attribute
instance-attribute
No description given by bungie.
CLAN_FIRETEAM_MIN_DESTINY2_PROGRESS_FOR_CREATION = 3033
class-attribute
instance-attribute
No description given by bungie.
CLAN_FIRETEAM_MIN_DESTINY2_PROGRESS_FOR_JOIN = 3034
class-attribute
instance-attribute
No description given by bungie.
CLAN_FIRETEAM_NON_PUBLIC_MUST_HAVE_CLAN = 3021
class-attribute
instance-attribute
No description given by bungie.
CLAN_FIRETEAM_NOT_FOUND = 3000
class-attribute
instance-attribute
No description given by bungie.
CLAN_FIRETEAM_NOT_READY_FOR_INVITES_CLOSED = 3019
class-attribute
instance-attribute
No description given by bungie.
CLAN_FIRETEAM_NOT_READY_FOR_INVITES_NOT_ENOUGH_PLAYERS = 3010
class-attribute
instance-attribute
No description given by bungie.
CLAN_FIRETEAM_NOT_READY_FOR_INVITES_NOT_SCHEDULED_YET = 3018
class-attribute
instance-attribute
No description given by bungie.
CLAN_FIRETEAM_PERMISSIONS = 3006
class-attribute
instance-attribute
No description given by bungie.
CLAN_FIRETEAM_PLATFORM_INVITE_PREQ_FAILURE = 3012
class-attribute
instance-attribute
No description given by bungie.
CLAN_FIRETEAM_PLAYER_ENTRY_NOT_FOUND = 3005
class-attribute
instance-attribute
No description given by bungie.
CLAN_FIRETEAM_PS4_SESSION_FULL = 3015
class-attribute
instance-attribute
No description given by bungie.
CLAN_FIRETEAM_PUBLIC_CREATION_RESTRICTION = 3022
class-attribute
instance-attribute
No description given by bungie.
CLAN_FIRETEAM_PUBLIC_CREATION_RESTRICTION_EXTENDED = 3025
class-attribute
instance-attribute
No description given by bungie.
CLAN_FIRETEAM_PURCHASE_REQUIRED_CREATE = 3036
class-attribute
instance-attribute
No description given by bungie.
CLAN_FIRETEAM_PURCHASE_REQUIRED_JOIN = 3038
class-attribute
instance-attribute
No description given by bungie.
CLAN_FIRETEAM_SCHEDULED_FIRETEAMS_DISABLED = 3017
class-attribute
instance-attribute
No description given by bungie.
CLAN_FIRETEAM_SCHEDULED_FIRETEAMS_RANGE = 3024
class-attribute
instance-attribute
No description given by bungie.
CLAN_FIRETEAM_SCHEDULED_FIRETEAMS_REQUIRE_ADMIN_PERMISSIONS = 3020
class-attribute
instance-attribute
No description given by bungie.
CLAN_FIRETEAM_S_M_S_OR_PURCHASE_REQUIRED_CREATE = 3035
class-attribute
instance-attribute
No description given by bungie.
CLAN_FIRETEAM_S_M_S_OR_PURCHASE_REQUIRED_JOIN = 3037
class-attribute
instance-attribute
No description given by bungie.
CLAN_FIRETEAM_THROTTLE = 3029
class-attribute
instance-attribute
No description given by bungie.
CLAN_FIRETEAM_TOO_MANY_OPEN_SCHEDULED_FIRETEAMS = 3030
class-attribute
instance-attribute
No description given by bungie.
CLAN_FOUNDER_CANNOT_LEAVE_WITHOUT_ABDICATION = 697
class-attribute
instance-attribute
No description given by bungie.
CLAN_INFO_CANNOT_BE_WHITESPACE = 693
class-attribute
instance-attribute
No description given by bungie.
CLAN_INVALID_OPERATION = 696
class-attribute
instance-attribute
No description given by bungie.
CLAN_INVITE_ALREADY_MEMBER = 676
class-attribute
instance-attribute
No description given by bungie.
CLAN_IN_WRONG_STATE_FOR_REQUESTED_ACTION = 690
class-attribute
instance-attribute
No description given by bungie.
CLAN_MAXIMUM_MEMBERSHIP_REACHED = 667
class-attribute
instance-attribute
No description given by bungie.
CLAN_MEMBERSHIP_CLOSED = 675
class-attribute
instance-attribute
No description given by bungie.
CLAN_MEMBERSHIP_LEVEL_DOES_NOT_PERMIT_THAT_ACTION = 687
class-attribute
instance-attribute
No description given by bungie.
CLAN_MEMBER_NOT_FOUND = 688
class-attribute
instance-attribute
No description given by bungie.
CLAN_MIGRATION_FAILED = 682
class-attribute
instance-attribute
No description given by bungie.
CLAN_MISSING_MEMBERSHIP_APPROVERS = 689
class-attribute
instance-attribute
No description given by bungie.
CLAN_NAME_ALREADY_USED = 691
class-attribute
instance-attribute
No description given by bungie.
CLAN_NAME_NOT_VALID = 668
class-attribute
instance-attribute
No description given by bungie.
CLAN_NAME_NOT_VALID_ERROR = 669
class-attribute
instance-attribute
No description given by bungie.
CLAN_NAME_RESERVED = 698
class-attribute
instance-attribute
No description given by bungie.
CLAN_NAME_RESTRICTED = 751
class-attribute
instance-attribute
No description given by bungie.
CLAN_NOT_ENABLED_ALREADY_MEMBER_OF_ANOTHER_CLAN = 683
class-attribute
instance-attribute
No description given by bungie.
CLAN_NOT_ENABLED_FOR_PLATFORM = 654
class-attribute
instance-attribute
No description given by bungie.
CLAN_NOT_FOUND = 686
class-attribute
instance-attribute
No description given by bungie.
CLAN_REQUIRES_EXISTING_DESTINY_ACCOUNT = 750
class-attribute
instance-attribute
No description given by bungie.
CLAN_REQUIRES_INVITATION = 674
class-attribute
instance-attribute
No description given by bungie.
CLAN_TAG_ILLEGAL_CHARACTERS = 673
class-attribute
instance-attribute
No description given by bungie.
CLAN_TAG_REQUIRED = 679
class-attribute
instance-attribute
No description given by bungie.
CLAN_TARGET_DISALLOWS_INVITES = 695
class-attribute
instance-attribute
No description given by bungie.
CLAN_TOO_FEW_MEMBERS = 692
class-attribute
instance-attribute
No description given by bungie.
COMMUNITY_STREAMING_UNAVAILABLE = 2300
class-attribute
instance-attribute
No description given by bungie.
CONTENT_ASSET_ZIP_CREATION_BUSY = 128
class-attribute
instance-attribute
No description given by bungie.
CONTENT_ASSET_ZIP_CREATION_FAILURE = 127
class-attribute
instance-attribute
No description given by bungie.
CONTENT_BABEL_CALL_FAILED = 173
class-attribute
instance-attribute
No description given by bungie.
CONTENT_CANNOT_CREATE_DEPLOYMENT_PACKAGE = 164
class-attribute
instance-attribute
No description given by bungie.
CONTENT_CANNOT_CREATE_FILE = 156
class-attribute
instance-attribute
No description given by bungie.
CONTENT_CANNOT_DELETE_PACKAGE = 134
class-attribute
instance-attribute
No description given by bungie.
CONTENT_DEPLOYMENT_PACKAGE_NOT_READY_ERROR = 111
class-attribute
instance-attribute
No description given by bungie.
CONTENT_ENGLISH_POST_LIVE_FORBIDDEN = 174
class-attribute
instance-attribute
No description given by bungie.
CONTENT_EXTERNAL_FILE_CANNOT_BE_IMPORTED_LOCALLY = 140
class-attribute
instance-attribute
No description given by bungie.
CONTENT_FILE_UPLOAD_FAILED = 136
class-attribute
instance-attribute
No description given by bungie.
CONTENT_FOLDER_NOT_FOUND = 130
class-attribute
instance-attribute
No description given by bungie.
CONTENT_ILLEGAL_B_NET_MEMBERSHIP_ID = 171
class-attribute
instance-attribute
No description given by bungie.
CONTENT_INVALID_BLACKLISTED_CONTENT = 168
class-attribute
instance-attribute
No description given by bungie.
CONTENT_INVALID_EXTERNAL_URL = 139
class-attribute
instance-attribute
No description given by bungie.
CONTENT_INVALID_ID = 106
class-attribute
instance-attribute
No description given by bungie.
CONTENT_INVALID_LINK_TO_INTERNAL_ENVIRONMENT = 167
class-attribute
instance-attribute
No description given by bungie.
CONTENT_INVALID_MIGRATION_FILE = 157
class-attribute
instance-attribute
No description given by bungie.
CONTENT_INVALID_STATE = 115
class-attribute
instance-attribute
No description given by bungie.
CONTENT_ITEM_NOT_BASED_ON_LATEST_REVISION = 162
class-attribute
instance-attribute
No description given by bungie.
CONTENT_ITEM_PROPERTY_AGGREGATION_ERROR = 124
class-attribute
instance-attribute
No description given by bungie.
CONTENT_LOCALE_DID_NOT_MATCH_EXPECTED = 172
class-attribute
instance-attribute
No description given by bungie.
CONTENT_LOCALE_EDIT_PERMISSION_DENIED = 175
class-attribute
instance-attribute
No description given by bungie.
CONTENT_LOCALE_PERMISSION_DENIED = 166
class-attribute
instance-attribute
No description given by bungie.
CONTENT_LOCKED_FOR_CHANGES = 135
class-attribute
instance-attribute
No description given by bungie.
CONTENT_MACRO_MALFORMED_NO_CONTENT_ID = 169
class-attribute
instance-attribute
No description given by bungie.
CONTENT_MACRO_MALFORMED_NO_TEMPLATE_TYPE = 170
class-attribute
instance-attribute
No description given by bungie.
CONTENT_MAX_LENGTH_FAIL_ON_PROPERTY = 153
class-attribute
instance-attribute
No description given by bungie.
CONTENT_MIGRATION_ALTERING_PROCESSED_ITEM = 158
class-attribute
instance-attribute
No description given by bungie.
CONTENT_NAVIGATION_PARENT_NOT_FOUND = 116
class-attribute
instance-attribute
No description given by bungie.
CONTENT_NAVIGATION_PARENT_UPDATE_ERROR = 117
class-attribute
instance-attribute
No description given by bungie.
CONTENT_NEED_UNIQUE_PATH = 101
class-attribute
instance-attribute
No description given by bungie.
CONTENT_NOT_FOUND = 103
class-attribute
instance-attribute
No description given by bungie.
CONTENT_NOT_REVIEWED = 137
class-attribute
instance-attribute
No description given by bungie.
CONTENT_PACKAGES_INCONSISTENT = 131
class-attribute
instance-attribute
No description given by bungie.
CONTENT_PACKAGES_INCONSISTENT_TYPE = 133
class-attribute
instance-attribute
No description given by bungie.
CONTENT_PACKAGES_INVALID_STATE = 132
class-attribute
instance-attribute
No description given by bungie.
CONTENT_PERFORCE_CHANGELIST_FILE_ITEMS_NOT_FOUND = 144
class-attribute
instance-attribute
No description given by bungie.
CONTENT_PERFORCE_CHANGELIST_RESULT_NOT_FOUND = 143
class-attribute
instance-attribute
No description given by bungie.
CONTENT_PERFORCE_FILE_HISTORY_NOT_FOUND = 126
class-attribute
instance-attribute
No description given by bungie.
CONTENT_PERFORCE_INITIALIZATION_ERROR = 110
class-attribute
instance-attribute
No description given by bungie.
CONTENT_PERFORCE_INVALID_REVISION_ERROR = 145
class-attribute
instance-attribute
No description given by bungie.
CONTENT_PERFORCE_SUBMISSION_ERROR = 109
class-attribute
instance-attribute
No description given by bungie.
CONTENT_PERFORCE_UNMATCHED_FILE_ERROR = 142
class-attribute
instance-attribute
No description given by bungie.
CONTENT_PERMISSION_DENIED = 138
class-attribute
instance-attribute
No description given by bungie.
CONTENT_PHYSICAL_FILE_CREATION_ERROR = 108
class-attribute
instance-attribute
No description given by bungie.
CONTENT_PHYSICAL_FILE_DELETION_ERROR = 107
class-attribute
instance-attribute
No description given by bungie.
CONTENT_PROJECT_NOT_FOUND = 129
class-attribute
instance-attribute
No description given by bungie.
CONTENT_PROPERTIES_VALIDATION_ERROR = 120
class-attribute
instance-attribute
No description given by bungie.
CONTENT_PROPERTY_CANNOT_DESERIALIZE = 151
class-attribute
instance-attribute
No description given by bungie.
CONTENT_PROPERTY_DEFINITION_NOT_FOUND = 159
class-attribute
instance-attribute
No description given by bungie.
CONTENT_PROPERTY_INVALID_DATE = 149
class-attribute
instance-attribute
No description given by bungie.
CONTENT_PROPERTY_INVALID_NUMBER = 147
class-attribute
instance-attribute
No description given by bungie.
CONTENT_PROPERTY_INVALID_SET = 150
class-attribute
instance-attribute
No description given by bungie.
CONTENT_PROPERTY_INVALID_URL = 148
class-attribute
instance-attribute
No description given by bungie.
CONTENT_PROPERTY_REQUIRED = 155
class-attribute
instance-attribute
No description given by bungie.
CONTENT_PROPERTY_UNEXPECTED_DESERIALIZATION_ERROR = 154
class-attribute
instance-attribute
No description given by bungie.
CONTENT_REGEX_VALIDATION_FAIL_ON_PROPERTY = 152
class-attribute
instance-attribute
No description given by bungie.
CONTENT_REVIEW_DATA_CHANGED = 160
class-attribute
instance-attribute
No description given by bungie.
CONTENT_ROLLBACK_REVISION_NOT_IN_PACKAGE = 161
class-attribute
instance-attribute
No description given by bungie.
CONTENT_SEARCH_INVALID_PARAMETERS = 123
class-attribute
instance-attribute
No description given by bungie.
CONTENT_SEARCH_MISSING_PARAMETERS = 105
class-attribute
instance-attribute
No description given by bungie.
CONTENT_SQL_EXCEPTION = 102
class-attribute
instance-attribute
No description given by bungie.
CONTENT_STACK_DESERIALIZATION_FAILURE = 181
class-attribute
instance-attribute
No description given by bungie.
CONTENT_STACK_NOT_FOUND = 177
class-attribute
instance-attribute
No description given by bungie.
CONTENT_STACK_RATE_LIMITED = 178
class-attribute
instance-attribute
No description given by bungie.
CONTENT_STACK_SERVICE_ERROR = 180
class-attribute
instance-attribute
No description given by bungie.
CONTENT_STACK_TIMEOUT = 179
class-attribute
instance-attribute
No description given by bungie.
CONTENT_STACK_UNKNOWN_ERROR = 176
class-attribute
instance-attribute
No description given by bungie.
CONTENT_SUCCESS_WITH_TAG_ADD_FAIL = 104
class-attribute
instance-attribute
No description given by bungie.
CONTENT_TAG_SAVE_FAILURE = 141
class-attribute
instance-attribute
No description given by bungie.
CONTENT_TOO_MANY_RESULTS = 113
class-attribute
instance-attribute
No description given by bungie.
CONTENT_TYPE_NOT_FOUND = 121
class-attribute
instance-attribute
No description given by bungie.
CONTENT_UNAUTHORIZED = 163
class-attribute
instance-attribute
No description given by bungie.
CONTENT_UNKNOWN_SQL_RESULT = 100
class-attribute
instance-attribute
No description given by bungie.
CONTENT_UNLOADED_SAVE_RESULT = 146
class-attribute
instance-attribute
No description given by bungie.
CONTENT_UPLOAD_FAILED = 112
class-attribute
instance-attribute
No description given by bungie.
CONTENT_USER_NOT_FOUND = 165
class-attribute
instance-attribute
No description given by bungie.
CONTENT_VALIDATION_ERROR = 119
class-attribute
instance-attribute
No description given by bungie.
COOKIE_CONTEXT_REQUIRED = 96
class-attribute
instance-attribute
No description given by bungie.
CROSS_SAVE_ACCOUNT_NOT_AUTHENTICATED = 3216
class-attribute
instance-attribute
No description given by bungie.
CROSS_SAVE_BUNGIE_ACCOUNT_VALIDATION_FAILURE = 3206
class-attribute
instance-attribute
No description given by bungie.
CROSS_SAVE_CANNOT_OVERRIDE_SELF = 3213
class-attribute
instance-attribute
No description given by bungie.
CROSS_SAVE_CANNOT_PAIR_JUST_STEAM_AND_BLIZZARD = 3221
class-attribute
instance-attribute
No description given by bungie.
CROSS_SAVE_CANNOT_PAIR_STEAM_ALONE_BEFORE_SHADOWKEEP = 3222
class-attribute
instance-attribute
No description given by bungie.
CROSS_SAVE_COULD_NOT_CREATE_DESTINY_PROFILE_FOR_MEMBERSHIP_TYPE = 3211
class-attribute
instance-attribute
No description given by bungie.
CROSS_SAVE_COULD_NOT_FIND_LINKED_ACCOUNT_FOR_MEMBERSHIP_TYPE = 3210
class-attribute
instance-attribute
No description given by bungie.
CROSS_SAVE_ERROR_CREATING_DESTINY_PROFILE_FOR_MEMBERSHIP_TYPE = 3212
class-attribute
instance-attribute
No description given by bungie.
CROSS_SAVE_INCOMPATIBLE_MEMBERSHIP_TYPE = 3209
class-attribute
instance-attribute
No description given by bungie.
CROSS_SAVE_MUST_MIGRATE_TO_STEAM = 3219
class-attribute
instance-attribute
No description given by bungie.
CROSS_SAVE_NO_OVERRIDDEN_PLATFORMS = 3202
class-attribute
instance-attribute
No description given by bungie.
CROSS_SAVE_OVERRIDDEN_ACCOUNT_NOT_FOUND = 3200
class-attribute
instance-attribute
No description given by bungie.
CROSS_SAVE_OVERRIDDEN_PLATFORM_NOT_ALLOWED = 3207
class-attribute
instance-attribute
No description given by bungie.
CROSS_SAVE_PRIMARY_ACCOUNT_NOT_FOUND = 3203
class-attribute
instance-attribute
No description given by bungie.
CROSS_SAVE_RECENT_SILVER_PURCHASE = 3214
class-attribute
instance-attribute
No description given by bungie.
CROSS_SAVE_REQUEST_INVALID = 3204
class-attribute
instance-attribute
No description given by bungie.
CROSS_SAVE_SILVER_BALANCE_NEGATIVE = 3215
class-attribute
instance-attribute
No description given by bungie.
CROSS_SAVE_STEAM_ALREADY_PAIRED = 3220
class-attribute
instance-attribute
No description given by bungie.
CROSS_SAVE_THRESHOLD_EXCEEDED = 3208
class-attribute
instance-attribute
No description given by bungie.
CROSS_SAVE_TOO_MANY_OVERRIDDEN_PLATFORMS = 3201
class-attribute
instance-attribute
No description given by bungie.
DATA_NOT_FOUND = 11
class-attribute
instance-attribute
No description given by bungie.
DEPLOYMENT_PACKAGE_FILE_NOT_FOUND = 125
class-attribute
instance-attribute
No description given by bungie.
DEPLOYMENT_PACKAGE_NOT_EDITABLE = 118
class-attribute
instance-attribute
No description given by bungie.
DEPLOYMENT_PACKAGE_NOT_FOUND = 122
class-attribute
instance-attribute
No description given by bungie.
DESTINY_ACCOUNT_ACQUISITION_FAILURE = 1600
class-attribute
instance-attribute
No description given by bungie.
DESTINY_ACCOUNT_MUST_BE_OFFLINE = 1654
class-attribute
instance-attribute
No description given by bungie.
DESTINY_ACCOUNT_NOT_FOUND = 1601
class-attribute
instance-attribute
No description given by bungie.
DESTINY_ACTION_INSUFFICIENT_PRIVILEGES = 1666
class-attribute
instance-attribute
No description given by bungie.
DESTINY_BUCKET_NOT_FOUND = 1633
class-attribute
instance-attribute
No description given by bungie.
DESTINY_BUILD_STATS_DATABASE_ERROR = 1602
class-attribute
instance-attribute
No description given by bungie.
DESTINY_CANNOT_AFFORD_MATERIAL_REQUIREMENTS = 1675
class-attribute
instance-attribute
No description given by bungie.
DESTINY_CANNOT_PERFORM_ACTION_AT_THIS_LOCATION = 1671
class-attribute
instance-attribute
No description given by bungie.
DESTINY_CANNOT_PERFORM_ACTION_ON_EQUIPPED_ITEM = 1656
class-attribute
instance-attribute
No description given by bungie.
DESTINY_CAN_ONLY_EQUIP_IN_GAME = 1655
class-attribute
instance-attribute
No description given by bungie.
DESTINY_CHARACTER_LOGGED_IN_NOT_ALLOWED = 1681
class-attribute
instance-attribute
No description given by bungie.
DESTINY_CHARACTER_NOT_FOUND = 1620
class-attribute
instance-attribute
No description given by bungie.
DESTINY_CHARACTER_NOT_IN_TOWER = 1634
class-attribute
instance-attribute
Note: This is one of those holdovers from Destiny 1. We didn't change the enum because I am lazy, but in Destiny 2 this would read "DestinyCharacterNotInSocialSpace"
DESTINY_CHARACTER_NOT_LOGGED_IN = 1635
class-attribute
instance-attribute
No description given by bungie.
DESTINY_CHARACTER_STATS_DATABASE_ERROR = 1603
class-attribute
instance-attribute
No description given by bungie.
DESTINY_CLAIMS_INVALID_STATE = 1686
class-attribute
instance-attribute
No description given by bungie.
DESTINY_CLAIMS_ITEM_ALREADY_CLAIMED = 1683
class-attribute
instance-attribute
No description given by bungie.
DESTINY_CLAIMS_NO_INVENTORY_SPACE = 1684
class-attribute
instance-attribute
No description given by bungie.
DESTINY_CLAIMS_REQUIRED_LEVEL_NOT_MET = 1685
class-attribute
instance-attribute
No description given by bungie.
DESTINY_CONTENT_CONFIG_NOT_FOUND = 1616
class-attribute
instance-attribute
No description given by bungie.
DESTINY_CONTENT_ITEM_NOT_FOUND = 1613
class-attribute
instance-attribute
No description given by bungie.
DESTINY_CONTENT_LOOKUP_NOT_FOUND_FOR_KEY = 1612
class-attribute
instance-attribute
No description given by bungie.
DESTINY_CONTENT_PROPERTY_BUCKET_VALUE_NOT_FOUND = 1617
class-attribute
instance-attribute
No description given by bungie.
DESTINY_CONTENT_PROPERTY_NOT_FOUND = 1615
class-attribute
instance-attribute
No description given by bungie.
DESTINY_CONTENT_SECTION_NOT_FOUND = 1614
class-attribute
instance-attribute
No description given by bungie.
DESTINY_CONTENT_VERSION_MISMATCH = 1662
class-attribute
instance-attribute
No description given by bungie.
DESTINY_DEFINITIONS_NOT_LOADED = 1636
class-attribute
instance-attribute
No description given by bungie.
DESTINY_DIRECT_BABEL_CLIENT_TIMEOUT = 1688
class-attribute
instance-attribute
No description given by bungie.
DESTINY_ERROR_DESERIALIZATION_FAILURE = 1649
class-attribute
instance-attribute
No description given by bungie.
DESTINY_FAILED_PLUG_INSERTION_RULES = 1676
class-attribute
instance-attribute
No description given by bungie.
DESTINY_GRIMOIRE_STATS_DATABASE_ERROR = 1606
class-attribute
instance-attribute
No description given by bungie.
DESTINY_INTERNAL_ERROR = 1626
class-attribute
instance-attribute
No description given by bungie.
DESTINY_INVALID_ACTION = 1619
class-attribute
instance-attribute
No description given by bungie.
DESTINY_INVALID_CLAIM_EXCEPTION = 1667
class-attribute
instance-attribute
No description given by bungie.
DESTINY_INVALID_CUSTOMIZATION_CHOICES = 1624
class-attribute
instance-attribute
No description given by bungie.
DESTINY_INVALID_FLAG = 1621
class-attribute
instance-attribute
No description given by bungie.
DESTINY_INVALID_MEMBERSHIP_TYPE = 1630
class-attribute
instance-attribute
No description given by bungie.
DESTINY_INVALID_REQUEST = 1622
class-attribute
instance-attribute
No description given by bungie.
DESTINY_INVENTORY_FULL = 1637
class-attribute
instance-attribute
No description given by bungie.
DESTINY_ITEM_ACTION_FORBIDDEN = 1663
class-attribute
instance-attribute
No description given by bungie.
DESTINY_ITEM_ALREADY_IN_INVENTORY = 1632
class-attribute
instance-attribute
No description given by bungie.
DESTINY_ITEM_BUCKET_NOT_FOUND = 1629
class-attribute
instance-attribute
No description given by bungie.
DESTINY_ITEM_FAILED_LEVEL_CHECK = 1638
class-attribute
instance-attribute
No description given by bungie.
DESTINY_ITEM_FAILED_UNLOCK_CHECK = 1639
class-attribute
instance-attribute
No description given by bungie.
DESTINY_ITEM_LOCKED = 1674
class-attribute
instance-attribute
No description given by bungie.
DESTINY_ITEM_NOT_FOUND = 1623
class-attribute
instance-attribute
No description given by bungie.
DESTINY_ITEM_NOT_TRANSFERRABLE = 1660
class-attribute
instance-attribute
No description given by bungie.
DESTINY_ITEM_NOT_TRANSFERRABLE_HAS_SIDE_EFFECTS = 1673
class-attribute
instance-attribute
No description given by bungie.
DESTINY_ITEM_UNEQUIPPABLE = 1640
class-attribute
instance-attribute
No description given by bungie.
DESTINY_ITEM_UNIQUE_EQUIP_RESTRICTED = 1641
class-attribute
instance-attribute
No description given by bungie.
DESTINY_LEGACY_PLATFORM_INACCESSIBLE = 1670
class-attribute
instance-attribute
No description given by bungie.
DESTINY_LEGACY_PLATFORM_IN_USE = 1669
class-attribute
instance-attribute
No description given by bungie.
DESTINY_LEGACY_PLATFORM_RESTRICTED = 1668
class-attribute
instance-attribute
No description given by bungie.
DESTINY_NOT_ENOUGH_ROOM_FOR_MULTIPLE_REWARDS = 1687
class-attribute
instance-attribute
No description given by bungie.
DESTINY_NO_ROOM_IN_DESTINATION = 1642
class-attribute
instance-attribute
No description given by bungie.
DESTINY_PLUG_ITEM_NOT_AVAILABLE = 1680
class-attribute
instance-attribute
No description given by bungie.
DESTINY_PRIVACY_RESTRICTION = 1665
class-attribute
instance-attribute
No description given by bungie.
DESTINY_PUBLIC_ACCOUNT_NOT_ACCESSIBLE = 1682
class-attribute
instance-attribute
No description given by bungie.
DESTINY_PV_E_STATS_DATABASE_ERROR = 1605
class-attribute
instance-attribute
No description given by bungie.
DESTINY_PV_P_STATS_DATABASE_ERROR = 1604
class-attribute
instance-attribute
No description given by bungie.
DESTINY_P_G_C_R_NOT_FOUND = 1653
class-attribute
instance-attribute
No description given by bungie.
DESTINY_QUEST_ALREADY_COMPLETED = 1657
class-attribute
instance-attribute
No description given by bungie.
DESTINY_QUEST_ALREADY_TRACKED = 1658
class-attribute
instance-attribute
No description given by bungie.
DESTINY_RECENT_ACTIVITIES_DATABASE_ERROR = 1628
class-attribute
instance-attribute
No description given by bungie.
DESTINY_REFUND_INVALID = 1664
class-attribute
instance-attribute
No description given by bungie.
DESTINY_SERVICE_FAILURE = 1643
class-attribute
instance-attribute
No description given by bungie.
DESTINY_SERVICE_RETIRED = 1644
class-attribute
instance-attribute
No description given by bungie.
DESTINY_SHARD_RELAY_CLIENT_TIMEOUT = 1651
class-attribute
instance-attribute
No description given by bungie.
DESTINY_SHARD_RELAY_PROXY_TIMEOUT = 1652
class-attribute
instance-attribute
No description given by bungie.
DESTINY_SOCKET_ACTION_NOT_ALLOWED = 1678
class-attribute
instance-attribute
No description given by bungie.
DESTINY_SOCKET_ALREADY_HAS_PLUG = 1679
class-attribute
instance-attribute
No description given by bungie.
DESTINY_SOCKET_NOT_FOUND = 1677
class-attribute
instance-attribute
No description given by bungie.
DESTINY_STATS_PARAMETER_MEMBERSHIP_ID_PARSE_ERROR = 1608
class-attribute
instance-attribute
No description given by bungie.
DESTINY_STATS_PARAMETER_MEMBERSHIP_TYPE_PARSE_ERROR = 1607
class-attribute
instance-attribute
No description given by bungie.
DESTINY_STATS_PARAMETER_RANGE_PARSE_ERROR = 1609
class-attribute
instance-attribute
No description given by bungie.
DESTINY_STRING_ITEM_HASH_NOT_FOUND = 1610
class-attribute
instance-attribute
No description given by bungie.
DESTINY_STRING_SET_NOT_FOUND = 1611
class-attribute
instance-attribute
No description given by bungie.
DESTINY_THROTTLED_BY_GAME_SERVER = 1672
class-attribute
instance-attribute
No description given by bungie.
DESTINY_TRACKABLE_QUESTS_FULL = 1659
class-attribute
instance-attribute
No description given by bungie.
DESTINY_TRANSFER_FAILED = 1645
class-attribute
instance-attribute
No description given by bungie.
DESTINY_TRANSFER_NOT_FOUND_FOR_SOURCE_BUCKET = 1646
class-attribute
instance-attribute
No description given by bungie.
DESTINY_UNEXPECTED_ERROR = 1618
class-attribute
instance-attribute
No description given by bungie.
DESTINY_UNEXPECTED_RESULT_IN_VENDOR_TRANSFER_CHECK = 1647
class-attribute
instance-attribute
No description given by bungie.
DESTINY_UNIQUENESS_VIOLATION = 1648
class-attribute
instance-attribute
No description given by bungie.
DESTINY_VALID_ACCOUNT_TICKET_REQUIRED = 1650
class-attribute
instance-attribute
No description given by bungie.
DESTINY_VENDOR_ITEM_NOT_FOUND = 1625
class-attribute
instance-attribute
No description given by bungie.
DESTINY_VENDOR_NOT_FOUND = 1627
class-attribute
instance-attribute
No description given by bungie.
DESTINY_VENDOR_PURCHASE_NOT_ALLOWED = 1661
class-attribute
instance-attribute
No description given by bungie.
DESTINY_VERSION_INCOMPATIBILITY = 1631
class-attribute
instance-attribute
No description given by bungie.
DISCOUNT_ALREADY_CLAIMED = 2039
class-attribute
instance-attribute
No description given by bungie.
DISCOUNT_ALREADY_EXISTS = 2043
class-attribute
instance-attribute
No description given by bungie.
DISCOUNT_CLAIM_FAILURE = 2040
class-attribute
instance-attribute
No description given by bungie.
DISCOUNT_CONFIGURATION_FAILURE = 2041
class-attribute
instance-attribute
No description given by bungie.
DISCOUNT_GENERATION_FAILURE = 2042
class-attribute
instance-attribute
No description given by bungie.
DUPLICATE = 13
class-attribute
instance-attribute
No description given by bungie.
DUPLICATE_GLOBAL_DISPLAY_NAME = 237
class-attribute
instance-attribute
No description given by bungie.
EMAIL_UNSUBSCRIBE_FAIL = 248
class-attribute
instance-attribute
No description given by bungie.
EMAIL_UNSUBSCRIBE_FAIL_NEW = 249
class-attribute
instance-attribute
No description given by bungie.
EMAIL_VALIDATION_FAIL_BAD_LINK = 247
class-attribute
instance-attribute
No description given by bungie.
EMAIL_VALIDATION_FAIL_OLD_CODE = 246
class-attribute
instance-attribute
No description given by bungie.
EMAIL_VALIDATION_OFFLINE = 245
class-attribute
instance-attribute
No description given by bungie.
ERROR_BUNGIE_BLOCK_LIST_FULL = 3911
class-attribute
instance-attribute
No description given by bungie.
ERROR_BUNGIE_BLOCK_SELF = 3908
class-attribute
instance-attribute
No description given by bungie.
ERROR_BUNGIE_FRIENDS_ALREADY_FRIENDS = 3903
class-attribute
instance-attribute
No description given by bungie.
ERROR_BUNGIE_FRIENDS_AUTO_REJECT = 3901
class-attribute
instance-attribute
No description given by bungie.
ERROR_BUNGIE_FRIENDS_BLOCK_FAILED = 3900
class-attribute
instance-attribute
No description given by bungie.
ERROR_BUNGIE_FRIENDS_IDENTICAL_SOURCE_TARGET = 3906
class-attribute
instance-attribute
No description given by bungie.
ERROR_BUNGIE_FRIENDS_LIST_FULL = 3910
class-attribute
instance-attribute
No description given by bungie.
ERROR_BUNGIE_FRIENDS_NO_REQUEST_FOUND = 3902
class-attribute
instance-attribute
No description given by bungie.
ERROR_BUNGIE_FRIENDS_SELF = 3907
class-attribute
instance-attribute
No description given by bungie.
ERROR_BUNGIE_FRIENDS_UNABLE_TO_REMOVE = 3905
class-attribute
instance-attribute
No description given by bungie.
ERROR_BUNGIE_FRIENDS_UNABLE_TO_REMOVE_REQUEST = 3904
class-attribute
instance-attribute
No description given by bungie.
ERROR_BUNGIE_FRIEND_INVALID_MEMBERSHIP_TYPE = 3913
class-attribute
instance-attribute
No description given by bungie.
ERROR_BUNGIE_FRIEND_NOT_FOUND = 3912
class-attribute
instance-attribute
No description given by bungie.
ERROR_DATABASE_GLOBAL_NAME = 239
class-attribute
instance-attribute
No description given by bungie.
ERROR_EGS_ACCOUNT_NOT_FOUND = 4004
class-attribute
instance-attribute
No description given by bungie.
ERROR_EGS_BAD_REQUEST = 4001
class-attribute
instance-attribute
No description given by bungie.
ERROR_EGS_FORBIDDEN = 4003
class-attribute
instance-attribute
No description given by bungie.
ERROR_EGS_JWKS_MISSING = 4007
class-attribute
instance-attribute
No description given by bungie.
ERROR_EGS_JWT_MALFORMED_HEADER = 4008
class-attribute
instance-attribute
No description given by bungie.
ERROR_EGS_JWT_MALFORMED_PAYLOAD = 4009
class-attribute
instance-attribute
No description given by bungie.
ERROR_EGS_NOT_AUTHORIZED = 4002
class-attribute
instance-attribute
No description given by bungie.
ERROR_EGS_UNAVAILABLE = 4006
class-attribute
instance-attribute
No description given by bungie.
ERROR_EGS_UNKNOWN = 4000
class-attribute
instance-attribute
No description given by bungie.
ERROR_EGS_WEB_EXCEPTION = 4005
class-attribute
instance-attribute
No description given by bungie.
ERROR_NAME_ALREADY_SET_TO_INPUT = 241
class-attribute
instance-attribute
No description given by bungie.
ERROR_NO_AVAILABLE_NAME_CHANGES = 240
class-attribute
instance-attribute
No description given by bungie.
ERROR_ONE_ACCOUNT_ALREADY_ACTIVE = 3217
class-attribute
instance-attribute
No description given by bungie.
ERROR_ONE_ACCOUNT_DESTINY_RESTRICTION = 3218
class-attribute
instance-attribute
No description given by bungie.
ERROR_PHONE_VALIDATION_BANNED = 3706
class-attribute
instance-attribute
No description given by bungie.
ERROR_PHONE_VALIDATION_CODE_EXPIRED = 3708
class-attribute
instance-attribute
No description given by bungie.
ERROR_PHONE_VALIDATION_CODE_INVALID = 3705
class-attribute
instance-attribute
No description given by bungie.
ERROR_PHONE_VALIDATION_CODE_TOO_RECENTLY_CHECKED = 3710
class-attribute
instance-attribute
No description given by bungie.
ERROR_PHONE_VALIDATION_CODE_TOO_RECENTLY_SENT = 3707
class-attribute
instance-attribute
No description given by bungie.
ERROR_PHONE_VALIDATION_INVALID_NUMBER_TYPE = 3709
class-attribute
instance-attribute
No description given by bungie.
ERROR_PHONE_VALIDATION_NO_ASSOCIATED_PHONE = 3703
class-attribute
instance-attribute
No description given by bungie.
ERROR_PHONE_VALIDATION_RECENTLY_PLAYED_DESTINY2_ACCOUNT_REQUIRED = 3711
class-attribute
instance-attribute
No description given by bungie.
ERROR_PHONE_VALIDATION_TOO_MANY_USES = 3702
class-attribute
instance-attribute
No description given by bungie.
ERROR_RUNNING_NAME_VALIDATION_CHECKS = 238
class-attribute
instance-attribute
No description given by bungie.
EXTERNAL_SERVICE_FAILED = 42
class-attribute
instance-attribute
No description given by bungie.
EXTERNAL_SERVICE_TIMEOUT = 27
class-attribute
instance-attribute
No description given by bungie.
EXTERNAL_SERVICE_UNKNOWN = 38
class-attribute
instance-attribute
No description given by bungie.
EX_PLATFORM_STRING_VALIDATION_ERROR = 53
class-attribute
instance-attribute
No description given by bungie.
FACEBOOK_TOKEN_EXPIRED = 94
class-attribute
instance-attribute
No description given by bungie.
FAILED_MINIMUM_AGE_CHECK = 60
class-attribute
instance-attribute
No description given by bungie.
FAILED_TO_LOAD_AVAILABLE_LOCALES_CONFIGURATION = 6
class-attribute
instance-attribute
No description given by bungie.
FB_ACCESS_DENIED = 1802
class-attribute
instance-attribute
No description given by bungie.
FB_INVALID_GRANT = 1806
class-attribute
instance-attribute
No description given by bungie.
FB_INVALID_REQUEST = 1800
class-attribute
instance-attribute
No description given by bungie.
FB_INVALID_SCOPE = 1804
class-attribute
instance-attribute
No description given by bungie.
FB_REDIRECT_MISMATCH = 1801
class-attribute
instance-attribute
No description given by bungie.
FB_UNSUPPORTED_GRANT_TYPE = 1805
class-attribute
instance-attribute
No description given by bungie.
FB_UNSUPPORTED_RESPONSE_TYPE = 1803
class-attribute
instance-attribute
No description given by bungie.
FIRETEAM_FINDER_ACTIVATION_FAILED = 3110
class-attribute
instance-attribute
No description given by bungie.
FIRETEAM_FINDER_APPLICANT_NOT_IN_GAME = 3135
class-attribute
instance-attribute
No description given by bungie.
FIRETEAM_FINDER_APPLICATION_CLOSED_FOR_UPDATES = 3113
class-attribute
instance-attribute
No description given by bungie.
FIRETEAM_FINDER_APPLICATION_CLOSED_TO_OFFLINE_PLAYERS = 3129
class-attribute
instance-attribute
No description given by bungie.
FIRETEAM_FINDER_APPLICATION_NOT_FOUND = 3111
class-attribute
instance-attribute
No description given by bungie.
FIRETEAM_FINDER_APPLICATION_USER_ALREADY_LISTING_OWNER = 3116
class-attribute
instance-attribute
No description given by bungie.
FIRETEAM_FINDER_DISABLED_SETTINGS_VALUE = 3127
class-attribute
instance-attribute
No description given by bungie.
FIRETEAM_FINDER_INTERNAL_SERVER_ERROR = 3157
class-attribute
instance-attribute
No description given by bungie.
FIRETEAM_FINDER_INTERNAL_SERVER_ERROR_NON_FATAL = 3159
class-attribute
instance-attribute
No description given by bungie.
FIRETEAM_FINDER_INVALID_CHARACTER_ID = 3102
class-attribute
instance-attribute
No description given by bungie.
FIRETEAM_FINDER_INVALID_LISTING_OPTIONS = 3103
class-attribute
instance-attribute
No description given by bungie.
FIRETEAM_FINDER_INVALID_MEMBERSHIP_ID = 3101
class-attribute
instance-attribute
No description given by bungie.
FIRETEAM_FINDER_INVALID_MEMBERSHIP_TYPE = 3100
class-attribute
instance-attribute
No description given by bungie.
FIRETEAM_FINDER_INVALID_REQUEST_DATA = 3104
class-attribute
instance-attribute
No description given by bungie.
FIRETEAM_FINDER_INVITE_VALIDATION_FAILED = 3131
class-attribute
instance-attribute
No description given by bungie.
FIRETEAM_FINDER_JOIN_LOBBY_HOST_FAILED = 3108
class-attribute
instance-attribute
No description given by bungie.
FIRETEAM_FINDER_LISTING_APPLICATION_FAILED = 3105
class-attribute
instance-attribute
No description given by bungie.
FIRETEAM_FINDER_LISTING_AT_MAX_OPEN_APPLICATIONS_LIMIT = 3114
class-attribute
instance-attribute
No description given by bungie.
FIRETEAM_FINDER_LISTING_AUTO_JOIN_FAILED = 3106
class-attribute
instance-attribute
No description given by bungie.
FIRETEAM_FINDER_LISTING_NOT_FOUND = 3121
class-attribute
instance-attribute
No description given by bungie.
FIRETEAM_FINDER_LOBBY_CLOSED_FOR_UPDATES = 3125
class-attribute
instance-attribute
No description given by bungie.
FIRETEAM_FINDER_LOBBY_FULL = 3122
class-attribute
instance-attribute
No description given by bungie.
FIRETEAM_FINDER_LOBBY_NOT_FOUND = 3120
class-attribute
instance-attribute
No description given by bungie.
FIRETEAM_FINDER_LOBBY_TOO_FAR_IN_THE_FUTURE = 3134
class-attribute
instance-attribute
No description given by bungie.
FIRETEAM_FINDER_OFFER_CLOSED_FOR_UPDATES = 3118
class-attribute
instance-attribute
No description given by bungie.
FIRETEAM_FINDER_OFFER_NOT_FOUND = 3117
class-attribute
instance-attribute
No description given by bungie.
FIRETEAM_FINDER_OFFER_USER_NOT_TARGET = 3119
class-attribute
instance-attribute
No description given by bungie.
FIRETEAM_FINDER_OWNER_IN_ACTIVE_LOBBY = 3128
class-attribute
instance-attribute
No description given by bungie.
FIRETEAM_FINDER_OWNER_NOT_IN_GAME = 3132
class-attribute
instance-attribute
No description given by bungie.
FIRETEAM_FINDER_PLAYER_APPLICATIONS_PARSING_FAILED = 3107
class-attribute
instance-attribute
No description given by bungie.
FIRETEAM_FINDER_PLAYER_AT_MAX_LOBBY_LIMIT = 3133
class-attribute
instance-attribute
No description given by bungie.
FIRETEAM_FINDER_PLAYER_NOT_IN_GAME = 3109
class-attribute
instance-attribute
No description given by bungie.
FIRETEAM_FINDER_RESPONSE_BAD_REQUEST = 3153
class-attribute
instance-attribute
No description given by bungie.
FIRETEAM_FINDER_RESPONSE_FORBIDDEN = 3155
class-attribute
instance-attribute
No description given by bungie.
FIRETEAM_FINDER_RESPONSE_LOGGING_IN = 3152
class-attribute
instance-attribute
No description given by bungie.
FIRETEAM_FINDER_RESPONSE_MOVED = 3151
class-attribute
instance-attribute
No description given by bungie.
FIRETEAM_FINDER_RESPONSE_NOT_FOUND = 3156
class-attribute
instance-attribute
No description given by bungie.
FIRETEAM_FINDER_RESPONSE_UNAUTHORIZED = 3154
class-attribute
instance-attribute
No description given by bungie.
FIRETEAM_FINDER_RESPONSE_UNDEFINED = 3150
class-attribute
instance-attribute
No description given by bungie.
FIRETEAM_FINDER_SERVICE_UNAVAILABLE = 3158
class-attribute
instance-attribute
No description given by bungie.
FIRETEAM_FINDER_USER_ALREADY_APPLIED_TO_LISTING = 3112
class-attribute
instance-attribute
No description given by bungie.
FIRETEAM_FINDER_USER_NOT_APPLICATION_OWNER = 3130
class-attribute
instance-attribute
No description given by bungie.
FIRETEAM_FINDER_USER_NOT_IN_APPLICATION = 3115
class-attribute
instance-attribute
No description given by bungie.
FIRETEAM_FINDER_USER_NOT_IN_LOBBY = 3126
class-attribute
instance-attribute
No description given by bungie.
FIRETEAM_FINDER_USER_NOT_LISTING_OWNER = 3123
class-attribute
instance-attribute
No description given by bungie.
FIRETEAM_FINDER_USER_NOT_LOBBY_OWNER = 3124
class-attribute
instance-attribute
No description given by bungie.
FOLLOW_UNSUPPORTED_ENTITY_TYPE = 807
class-attribute
instance-attribute
No description given by bungie.
FORUM_AGE_LOCK = 578
class-attribute
instance-attribute
No description given by bungie.
FORUM_ALIASED_TAG_ERROR = 511
class-attribute
instance-attribute
No description given by bungie.
FORUM_ANNOUNCEMENT_NOT_ALLOWED = 538
class-attribute
instance-attribute
No description given by bungie.
FORUM_ANSWER_CANNOT_BE_MADE_ON_CREATE_POST = 565
class-attribute
instance-attribute
No description given by bungie.
FORUM_ANSWER_CANNOT_BE_MADE_ON_EDIT_POST = 566
class-attribute
instance-attribute
No description given by bungie.
FORUM_ANSWER_POST_ID_IS_NOT_A_DIRECT_REPLY_OF_QUESTION = 567
class-attribute
instance-attribute
No description given by bungie.
FORUM_ANSWER_TOPIC_ID_IS_NOT_A_QUESTION = 568
class-attribute
instance-attribute
No description given by bungie.
FORUM_AUTHOR_ACCESS_ERROR = 524
class-attribute
instance-attribute
No description given by bungie.
FORUM_BANNED_POSTS_CANNOT_BE_EDITED = 562
class-attribute
instance-attribute
No description given by bungie.
FORUM_BODY_CANNOT_BE_EMPTY = 500
class-attribute
instance-attribute
No description given by bungie.
FORUM_BODY_TOO_LONG = 536
class-attribute
instance-attribute
No description given by bungie.
FORUM_CANNOT_APPLY_FORUM_ID_TO_NON_TOPICS = 582
class-attribute
instance-attribute
No description given by bungie.
FORUM_CANNOT_APPLY_FORUM_ID_WITHOUT_TAGS = 581
class-attribute
instance-attribute
No description given by bungie.
FORUM_CANNOT_CREATE_CONTENT_TOPIC = 530
class-attribute
instance-attribute
No description given by bungie.
FORUM_CANNOT_CROSS_POST_BETWEEN_GROUPS = 544
class-attribute
instance-attribute
No description given by bungie.
FORUM_CANNOT_DOWNVOTE_COMMUNITY_CREATIONS = 583
class-attribute
instance-attribute
No description given by bungie.
FORUM_CANNOT_EDIT_MODERATOR_EDITED_POST = 575
class-attribute
instance-attribute
No description given by bungie.
FORUM_CANNOT_GET_RATING = 518
class-attribute
instance-attribute
No description given by bungie.
FORUM_CANNOT_LOCATE_PARENT_POST = 502
class-attribute
instance-attribute
No description given by bungie.
FORUM_CANNOT_LOCATE_POST = 514
class-attribute
instance-attribute
No description given by bungie.
FORUM_CANNOT_LOCATE_THREAD = 512
class-attribute
instance-attribute
No description given by bungie.
FORUM_CANNOT_RATE_YOUR_OWN_POSTS = 571
class-attribute
instance-attribute
No description given by bungie.
FORUM_CANNOT_SHARE_OWN_POST = 539
class-attribute
instance-attribute
No description given by bungie.
FORUM_CANNOT_SHARE_PRIVATE_POST = 543
class-attribute
instance-attribute
No description given by bungie.
FORUM_CANNOT_USE_OFFICIAL_TAG_CATEGORY_AS_TAG = 564
class-attribute
instance-attribute
No description given by bungie.
FORUM_CANNOT_USE_THESE_CATEGORIES_ON_NON_TOPIC_POST = 556
class-attribute
instance-attribute
No description given by bungie.
FORUM_CAN_ONLY_DELETE_TOPICS = 557
class-attribute
instance-attribute
No description given by bungie.
FORUM_CAN_ONLY_RATE_TOPICS = 561
class-attribute
instance-attribute
No description given by bungie.
FORUM_CONTENT_COMMENTS_NOT_ALLOWED = 532
class-attribute
instance-attribute
No description given by bungie.
FORUM_DELETE_SQL_EXCEPTION = 558
class-attribute
instance-attribute
No description given by bungie.
FORUM_DELETE_SQL_UNKNOWN_RESULT = 559
class-attribute
instance-attribute
No description given by bungie.
FORUM_EDIT_NO_OP = 540
class-attribute
instance-attribute
No description given by bungie.
FORUM_EDIT_PERMISSION_DENIED = 516
class-attribute
instance-attribute
No description given by bungie.
FORUM_EXCEEED_MAXIMUM_ROW_LIMIT = 542
class-attribute
instance-attribute
No description given by bungie.
FORUM_EXCEPTION_DURING_TAG_SEARCH = 509
class-attribute
instance-attribute
No description given by bungie.
FORUM_EXCEPTION_DURING_TOPIC_RETRIEVAL = 510
class-attribute
instance-attribute
No description given by bungie.
FORUM_GROUP_ACCESS_ERROR = 525
class-attribute
instance-attribute
No description given by bungie.
FORUM_GROUP_ADMIN_EDIT_NON_MEMBER = 574
class-attribute
instance-attribute
No description given by bungie.
FORUM_INCOMPATIBLE_CATEGORIES = 555
class-attribute
instance-attribute
No description given by bungie.
FORUM_INVALID_POLL_INPUT = 573
class-attribute
instance-attribute
No description given by bungie.
FORUM_LATEST_REPLY_ACCESS_ERROR = 522
class-attribute
instance-attribute
No description given by bungie.
FORUM_MAX_PAGES = 579
class-attribute
instance-attribute
No description given by bungie.
FORUM_MAX_PAGES_OLDEST_FIRST = 580
class-attribute
instance-attribute
No description given by bungie.
FORUM_POLLS_MUST_BE_THE_FIRST_POST_IN_TOPIC = 572
class-attribute
instance-attribute
No description given by bungie.
FORUM_POST_VALIDATION_BAD_URL = 535
class-attribute
instance-attribute
No description given by bungie.
FORUM_QUESTION_MUST_BE_TOPIC_POST = 508
class-attribute
instance-attribute
No description given by bungie.
FORUM_RATINGS_ACCESS_ERROR = 520
class-attribute
instance-attribute
No description given by bungie.
FORUM_RECRUITMENT_APPROVE_FAIL_MESSAGE_BAN = 591
class-attribute
instance-attribute
No description given by bungie.
FORUM_RECRUITMENT_FIRETEAM_MEMBERS_ONLY = 594
class-attribute
instance-attribute
No description given by bungie.
FORUM_RECRUITMENT_GLOBAL_BAN = 592
class-attribute
instance-attribute
No description given by bungie.
FORUM_RECRUITMENT_TOPIC_KICK_BAN = 588
class-attribute
instance-attribute
No description given by bungie.
FORUM_RECRUITMENT_TOPIC_MALFORMED = 585
class-attribute
instance-attribute
No description given by bungie.
FORUM_RECRUITMENT_TOPIC_NOT_FOUND = 586
class-attribute
instance-attribute
No description given by bungie.
FORUM_RECRUITMENT_TOPIC_NO_PLAYERS = 590
class-attribute
instance-attribute
No description given by bungie.
FORUM_RECRUITMENT_TOPIC_NO_SLOTS_REMAINING = 587
class-attribute
instance-attribute
No description given by bungie.
FORUM_RECRUITMENT_TOPIC_REQUIREMENTS_NOT_MET = 589
class-attribute
instance-attribute
No description given by bungie.
FORUM_RELATED_POST_ACCESS_ERROR = 521
class-attribute
instance-attribute
No description given by bungie.
FORUM_REPLIES_CANNOT_BE_EMPTY = 527
class-attribute
instance-attribute
No description given by bungie.
FORUM_REPLIES_CANNOT_BE_IN_DIFFERENT_GROUPS = 528
class-attribute
instance-attribute
No description given by bungie.
FORUM_REQUIRES_DESTINY2_ENTITLEMENT_PURCHASE = 596
class-attribute
instance-attribute
No description given by bungie.
FORUM_REQUIRES_DESTINY2_PROGRESS = 595
class-attribute
instance-attribute
No description given by bungie.
FORUM_REQUIRES_DESTINY_MEMBERSHIP = 576
class-attribute
instance-attribute
No description given by bungie.
FORUM_SUBJECT_CANNOT_BE_EMPTY_ON_TOPIC_POST = 501
class-attribute
instance-attribute
No description given by bungie.
FORUM_SUBJECT_TOO_LONG = 537
class-attribute
instance-attribute
No description given by bungie.
FORUM_SUB_TOPIC_CANNOT_BE_CREATED_AT_THIS_THREAD_LEVEL = 529
class-attribute
instance-attribute
No description given by bungie.
FORUM_THREAD_LOCKED_FOR_REPLIES = 503
class-attribute
instance-attribute
No description given by bungie.
FORUM_THREAD_ROOT_IS_BANNED = 563
class-attribute
instance-attribute
No description given by bungie.
FORUM_TOO_MANY_TAGS = 560
class-attribute
instance-attribute
No description given by bungie.
FORUM_TOPICS_MUST_HAVE_OFFICIAL_CATEGORY = 584
class-attribute
instance-attribute
No description given by bungie.
FORUM_TOPIC_DOES_NOT_EXIST = 531
class-attribute
instance-attribute
No description given by bungie.
FORUM_UNEXPECTED_ERROR = 577
class-attribute
instance-attribute
No description given by bungie.
FORUM_UNKNOWN_DATABASE_ERROR_DURING_GET_POST = 541
class-attribute
instance-attribute
No description given by bungie.
FORUM_UNKNOWN_EXCEPTION_CREATE_POST = 507
class-attribute
instance-attribute
No description given by bungie.
FORUM_UNKNOWN_EXCEPTION_DURING_MARK_ANSWER = 569
class-attribute
instance-attribute
No description given by bungie.
FORUM_UNKNOWN_EXCEPTION_EDIT_POST = 513
class-attribute
instance-attribute
No description given by bungie.
FORUM_UNKNOWN_EXCEPTION_GET_OR_CREATE_TAGS = 515
class-attribute
instance-attribute
No description given by bungie.
FORUM_UNKNOWN_EXCEPTION_GET_RATING = 519
class-attribute
instance-attribute
No description given by bungie.
FORUM_UNKNOWN_SQL_RESULT_DURING_CREATE_POST = 504
class-attribute
instance-attribute
No description given by bungie.
FORUM_UNKNOWN_SQL_RESULT_DURING_EDIT_POST = 533
class-attribute
instance-attribute
No description given by bungie.
FORUM_UNKNOWN_SQL_RESULT_DURING_GET_POST = 534
class-attribute
instance-attribute
No description given by bungie.
FORUM_UNKNOWN_SQL_RESULT_DURING_MARK_ANSWER = 570
class-attribute
instance-attribute
No description given by bungie.
FORUM_UNKNOWN_SQL_RESULT_DURING_TAG_ID_RETRIEVAL = 517
class-attribute
instance-attribute
No description given by bungie.
FORUM_UNKNOWN_SQL_RESULT_DURING_TAG_ITEM = 506
class-attribute
instance-attribute
No description given by bungie.
FORUM_UNKNOWN_TAG_CREATION_ERROR = 505
class-attribute
instance-attribute
No description given by bungie.
FORUM_URL_EXPECTED_BUT_MISSING = 526
class-attribute
instance-attribute
No description given by bungie.
FORUM_USER_BANNED_FROM_THIS_TOPIC = 593
class-attribute
instance-attribute
No description given by bungie.
FORUM_USER_STATUS_ACCESS_ERROR = 523
class-attribute
instance-attribute
No description given by bungie.
GROUP_ADMIN_ACCESS_ERROR = 616
class-attribute
instance-attribute
No description given by bungie.
GROUP_ALREADY_ALLIED = 641
class-attribute
instance-attribute
No description given by bungie.
GROUP_ALREADY_MEMBER = 642
class-attribute
instance-attribute
No description given by bungie.
GROUP_AT_MAXIMUM_ALLIANCES = 646
class-attribute
instance-attribute
No description given by bungie.
GROUP_CANNOT_CHECK_BAN_STATUS = 628
class-attribute
instance-attribute
No description given by bungie.
GROUP_CANNOT_SET_CLAN_ONLY_SETTINGS = 647
class-attribute
instance-attribute
No description given by bungie.
GROUP_CREATOR_ACCESS_ERROR = 615
class-attribute
instance-attribute
No description given by bungie.
GROUP_CULTURE_THROTTLE = 694
class-attribute
instance-attribute
No description given by bungie.
GROUP_DELETED = 621
class-attribute
instance-attribute
No description given by bungie.
GROUP_DELETION_GRACE_PERIOD_EXPIRED = 627
class-attribute
instance-attribute
No description given by bungie.
GROUP_FOLLOW_LIMIT_EXCEEDED = 804
class-attribute
instance-attribute
No description given by bungie.
GROUP_ID_NOT_RETURNED_FROM_CREATION = 604
class-attribute
instance-attribute
No description given by bungie.
GROUP_INVALID_ID = 607
class-attribute
instance-attribute
No description given by bungie.
GROUP_INVALID_MEMBERSHIP_ID = 608
class-attribute
instance-attribute
No description given by bungie.
GROUP_INVALID_MEMBERSHIP_TYPE = 609
class-attribute
instance-attribute
No description given by bungie.
GROUP_INVALID_PLATFORM_TYPE = 650
class-attribute
instance-attribute
No description given by bungie.
GROUP_INVALID_RATING = 612
class-attribute
instance-attribute
No description given by bungie.
GROUP_INVALID_RESOLVE_STATE = 652
class-attribute
instance-attribute
No description given by bungie.
GROUP_INVITE_ALREADY_MEMBER = 677
class-attribute
instance-attribute
No description given by bungie.
GROUP_JOINED_CANNOT_SET_CLAN_NAME = 633
class-attribute
instance-attribute
No description given by bungie.
GROUP_JOIN_APPROVAL_REQUIRED = 678
class-attribute
instance-attribute
No description given by bungie.
GROUP_LEFT_CANNOT_CLEAR_CLAN_NAME = 634
class-attribute
instance-attribute
No description given by bungie.
GROUP_MAXIMUM_MEMBERSHIP_COUNT_REACHED = 629
class-attribute
instance-attribute
No description given by bungie.
GROUP_MEMBERSHIP_ALREADY_APPLIED = 602
class-attribute
instance-attribute
No description given by bungie.
GROUP_MEMBERSHIP_APPLICATION_ALREADY_RESOLVED = 601
class-attribute
instance-attribute
No description given by bungie.
GROUP_MEMBERSHIP_CLOSED = 624
class-attribute
instance-attribute
No description given by bungie.
GROUP_MEMBERSHIP_INSUFFICIENT_PRIVILEGES = 603
class-attribute
instance-attribute
No description given by bungie.
GROUP_MEMBERSHIP_NOT_FOUND = 611
class-attribute
instance-attribute
No description given by bungie.
GROUP_MEMBERSHIP_NOT_LOGGED_IN = 618
class-attribute
instance-attribute
No description given by bungie.
GROUP_MEMBERSHIP_PENDING_APPLICATION_NOT_FOUND = 606
class-attribute
instance-attribute
No description given by bungie.
GROUP_MEMBER_BANNED = 623
class-attribute
instance-attribute
No description given by bungie.
GROUP_MEMBER_INVALID_MEMBER_TYPE = 649
class-attribute
instance-attribute
No description given by bungie.
GROUP_MEMBER_INVALID_SORT = 651
class-attribute
instance-attribute
No description given by bungie.
GROUP_MISSING_TAGS = 610
class-attribute
instance-attribute
No description given by bungie.
GROUP_MODERATION_NOT_PERMITTED_ON_NON_MEMBERS = 684
class-attribute
instance-attribute
No description given by bungie.
GROUP_NAME_CANNOT_START_OR_END_WITH_WHITE_SPACE = 680
class-attribute
instance-attribute
No description given by bungie.
GROUP_NAME_TAKEN = 626
class-attribute
instance-attribute
No description given by bungie.
GROUP_NOT_DELETED = 619
class-attribute
instance-attribute
No description given by bungie.
GROUP_NOT_FOUND = 622
class-attribute
instance-attribute
No description given by bungie.
GROUP_NOT_IN_ALLIANCE = 663
class-attribute
instance-attribute
No description given by bungie.
GROUP_PRIVATE_POST_NOT_VIEWABLE = 617
class-attribute
instance-attribute
No description given by bungie.
GROUP_PRIVATE_POST_OVERRIDE_ERROR = 625
class-attribute
instance-attribute
No description given by bungie.
GROUP_RELATIONSHIP_ALREADY_EXISTS = 643
class-attribute
instance-attribute
No description given by bungie.
GROUP_RELATIONSHIP_BLOCK_NOT_FOUND = 638
class-attribute
instance-attribute
No description given by bungie.
GROUP_RELATIONSHIP_NOT_FOUND = 639
class-attribute
instance-attribute
No description given by bungie.
GROUP_RELATIONSHIP_REQUEST_BLOCKED = 636
class-attribute
instance-attribute
No description given by bungie.
GROUP_RELATIONSHIP_REQUEST_NOT_FOUND = 637
class-attribute
instance-attribute
No description given by bungie.
GROUP_RELATIONSHIP_REQUEST_PENDING = 635
class-attribute
instance-attribute
No description given by bungie.
GROUP_SEARCH_INVALID_PARAMETERS = 605
class-attribute
instance-attribute
No description given by bungie.
GROUP_TO_GROUP_ALREADY_FOLLOWED = 665
class-attribute
instance-attribute
No description given by bungie.
GROUP_TO_GROUP_FOLLOW_LIMIT_REACHED = 659
class-attribute
instance-attribute
No description given by bungie.
GROUP_TO_GROUP_NOT_FOLLOWING = 666
class-attribute
instance-attribute
No description given by bungie.
GROUP_UNKNOWN_ERROR_UNDELETING_GROUP = 620
class-attribute
instance-attribute
No description given by bungie.
GROUP_USER_FOLLOWING_ACCESS_ERROR = 613
class-attribute
instance-attribute
No description given by bungie.
GROUP_USER_MEMBERSHIP_ACCESS_ERROR = 614
class-attribute
instance-attribute
No description given by bungie.
IGNORE_CANNOT_IGNORE_SELF = 1005
class-attribute
instance-attribute
No description given by bungie.
IGNORE_ERROR_INSUFFICIENT_PERMISSION = 1003
class-attribute
instance-attribute
No description given by bungie.
IGNORE_ERROR_RETRIEVING_GROUP_PERMISSIONS = 1002
class-attribute
instance-attribute
No description given by bungie.
IGNORE_ERROR_RETRIEVING_ITEM = 1004
class-attribute
instance-attribute
No description given by bungie.
IGNORE_ILLEGAL_TYPE = 1006
class-attribute
instance-attribute
No description given by bungie.
IGNORE_INVALID_PARAMETERS = 1000
class-attribute
instance-attribute
No description given by bungie.
IGNORE_NOT_FOUND = 1007
class-attribute
instance-attribute
No description given by bungie.
IGNORE_SQL_EXCEPTION = 1001
class-attribute
instance-attribute
No description given by bungie.
IGNORE_USER_GLOBALLY_IGNORED = 1008
class-attribute
instance-attribute
No description given by bungie.
IGNORE_USER_IGNORED = 1009
class-attribute
instance-attribute
No description given by bungie.
INSUFFICIENT_PRIVILEGES = 12
class-attribute
instance-attribute
No description given by bungie.
INVALID_GROUP_TYPES_FOR_RELATIONSHIP_REQUEST = 644
class-attribute
instance-attribute
No description given by bungie.
INVALID_PAGE_NUMBER = 46
class-attribute
instance-attribute
No description given by bungie.
INVALID_PARAMETERS = 18
class-attribute
instance-attribute
No description given by bungie.
INVALID_POST_BODY = 25
class-attribute
instance-attribute
No description given by bungie.
INVALID_RETURN_VALUE = 23
class-attribute
instance-attribute
No description given by bungie.
INVALID_SERVICE_AUTH_CONTEXT = 59
class-attribute
instance-attribute
No description given by bungie.
INVITATION_ALREADY_PENDING = 1904
class-attribute
instance-attribute
No description given by bungie.
INVITATION_CANNOT_BE_REACTIVATED = 1908
class-attribute
instance-attribute
No description given by bungie.
INVITATION_EXPIRED = 1900
class-attribute
instance-attribute
No description given by bungie.
INVITATION_GROUP_CANNOT_SEND_TO_SELF = 1911
class-attribute
instance-attribute
No description given by bungie.
INVITATION_INSUFFICIENT_PERMISSION = 1905
class-attribute
instance-attribute
No description given by bungie.
INVITATION_INVALID = 1913
class-attribute
instance-attribute
No description given by bungie.
INVITATION_INVALID_CODE = 1906
class-attribute
instance-attribute
No description given by bungie.
INVITATION_INVALID_RESPONSE_STATUS = 1902
class-attribute
instance-attribute
No description given by bungie.
INVITATION_INVALID_TARGET_STATE = 1907
class-attribute
instance-attribute
No description given by bungie.
INVITATION_INVALID_TYPE = 1903
class-attribute
instance-attribute
No description given by bungie.
INVITATION_NOT_FOUND = 1914
class-attribute
instance-attribute
No description given by bungie.
INVITATION_NO_RECIPIENTS = 1910
class-attribute
instance-attribute
No description given by bungie.
INVITATION_TOO_MANY_RECIPIENTS = 1912
class-attribute
instance-attribute
No description given by bungie.
INVITATION_UNKNOWN_TYPE = 1901
class-attribute
instance-attribute
No description given by bungie.
ITEM_ALREADY_FOLLOWED = 801
class-attribute
instance-attribute
No description given by bungie.
ITEM_NOT_FOLLOWED = 802
class-attribute
instance-attribute
No description given by bungie.
JSON_DESERIALIZATION_ERROR = 30
class-attribute
instance-attribute
No description given by bungie.
LEGACY_GAME_STATS_MALFORMED_SNEAKER_NET_CODE = 1502
class-attribute
instance-attribute
No description given by bungie.
LEGACY_GAME_STATS_SYSTEM_DISABLED = 1500
class-attribute
instance-attribute
No description given by bungie.
LEGACY_GAME_STATS_UNKNOWN_ERROR = 1501
class-attribute
instance-attribute
No description given by bungie.
LOYALTY_REWARD_ALREADY_REDEEMED = 2057
class-attribute
instance-attribute
No description given by bungie.
MAIL_HOOK_PERMISSION_FAILURE = 231
class-attribute
instance-attribute
No description given by bungie.
MAIL_SERVICE_RATE_LIMIT = 232
class-attribute
instance-attribute
No description given by bungie.
MARATHON_ACCOUNT_NOT_FOUND = 5005
class-attribute
instance-attribute
No description given by bungie.
MARATHON_BABEL_CONNECTION_TIMEOUT = 5001
class-attribute
instance-attribute
No description given by bungie.
MARATHON_ERROR_DESERIALIZATION_FAILURE = 5007
class-attribute
instance-attribute
No description given by bungie.
MARATHON_INTERNAL_ERROR = 5000
class-attribute
instance-attribute
No description given by bungie.
MARATHON_INVALID_REQUEST = 5003
class-attribute
instance-attribute
No description given by bungie.
MARATHON_SERVICE_FAILURE = 5002
class-attribute
instance-attribute
No description given by bungie.
MARATHON_THROTTLED_BY_GAME_SERVER = 5006
class-attribute
instance-attribute
No description given by bungie.
MARATHON_UNEXPECTED_ERROR = 5004
class-attribute
instance-attribute
No description given by bungie.
MAXIMUM_PAGE_SIZE_EXCEEDED = 47
class-attribute
instance-attribute
No description given by bungie.
MESSAGING_CANNOT_DELETE_EXTERNAL_CONVERSATION = 308
class-attribute
instance-attribute
No description given by bungie.
MESSAGING_CAN_NOT_LEAVE_CONVERSATION = 305
class-attribute
instance-attribute
No description given by bungie.
MESSAGING_DELETED_USER_FORBIDDEN = 307
class-attribute
instance-attribute
No description given by bungie.
MESSAGING_GROUP_CHAT_DISABLED = 309
class-attribute
instance-attribute
No description given by bungie.
MESSAGING_GROUP_OPTIONAL_CHAT_EXCEEDED_MAXIMUM = 312
class-attribute
instance-attribute
No description given by bungie.
MESSAGING_MUST_INCLUDE_SELF_IN_PRIVATE_MESSAGE = 310
class-attribute
instance-attribute
No description given by bungie.
MESSAGING_NO_BODY = 303
class-attribute
instance-attribute
No description given by bungie.
MESSAGING_SELF_ERROR = 301
class-attribute
instance-attribute
No description given by bungie.
MESSAGING_SENDER_IS_BANNED = 311
class-attribute
instance-attribute
No description given by bungie.
MESSAGING_SEND_DAILY_THROTTLE = 314
class-attribute
instance-attribute
No description given by bungie.
MESSAGING_SEND_THROTTLE = 302
class-attribute
instance-attribute
No description given by bungie.
MESSAGING_TOO_MANY_USERS = 304
class-attribute
instance-attribute
No description given by bungie.
MESSAGING_UNABLE_TO_SEND = 306
class-attribute
instance-attribute
No description given by bungie.
MESSAGING_UNKNOWN_ERROR = 300
class-attribute
instance-attribute
No description given by bungie.
MISSING_DEVICE_COOKIE = 93
class-attribute
instance-attribute
No description given by bungie.
MISSING_EVERVERSE_HISTORY_ERROR = 2048
class-attribute
instance-attribute
No description given by bungie.
MISSING_OFFER_CONFIG = 2051
class-attribute
instance-attribute
No description given by bungie.
MISSING_POST_BODY = 26
class-attribute
instance-attribute
No description given by bungie.
NONE = 0
class-attribute
instance-attribute
No description given by bungie.
NON_TRANSACTIONAL_EMAIL_SEND_FAILURE = 235
class-attribute
instance-attribute
No description given by bungie.
NOTIFICATION_SETTING_INVALID = 1100
class-attribute
instance-attribute
No description given by bungie.
NOT_AN_IMAGE_OR_VIDEO = 3807
class-attribute
instance-attribute
No description given by bungie.
NOT_A_VALID_PARTIAL_TAG = 903
class-attribute
instance-attribute
No description given by bungie.
NOT_FOUND = 21
class-attribute
instance-attribute
No description given by bungie.
NOT_IMPLEMENTED = 4
class-attribute
instance-attribute
No description given by bungie.
NO_AVAILABLE_DISCOUNT_CODE = 2038
class-attribute
instance-attribute
No description given by bungie.
NO_CLAN_MEMBERSHIP_FOR_PLATFORM = 658
class-attribute
instance-attribute
No description given by bungie.
NO_DESTINY_ACCOUNT_FOR_CLAN_PLATFORM = 630
class-attribute
instance-attribute
No description given by bungie.
NO_VALID_TAGS_IN_LIST = 900
class-attribute
instance-attribute
No description given by bungie.
OBSOLETE_CREDENTIAL_TYPE = 89
class-attribute
instance-attribute
No description given by bungie.
OFFER_REQUIRED = 2046
class-attribute
instance-attribute
No description given by bungie.
ORIGIN_HEADER_DOES_NOT_MATCH_KEY = 2107
class-attribute
instance-attribute
No description given by bungie.
OWNER_GROUP_ALREADY_IN_ALLIANCE = 661
class-attribute
instance-attribute
No description given by bungie.
O_AUTH_ACCESS_TOKEN_EXPIRED = 2115
class-attribute
instance-attribute
No description given by bungie.
PARAMETER_INVALID_RANGE = 8
class-attribute
instance-attribute
No description given by bungie.
PARAMETER_NOT_FOUND = 19
class-attribute
instance-attribute
No description given by bungie.
PARAMETER_PARSE_FAILURE = 7
class-attribute
instance-attribute
No description given by bungie.
PARTNERSHIP_ACCESS_FAILURE = 2203
class-attribute
instance-attribute
No description given by bungie.
PARTNERSHIP_ACCOUNT_INVALID = 2204
class-attribute
instance-attribute
No description given by bungie.
PARTNERSHIP_ALREADY_EXISTS = 2207
class-attribute
instance-attribute
No description given by bungie.
PARTNERSHIP_DISABLED = 2206
class-attribute
instance-attribute
No description given by bungie.
PARTNERSHIP_GET_ACCOUNT_INFO_FAILURE = 2205
class-attribute
instance-attribute
No description given by bungie.
PARTNERSHIP_INVALID_TYPE = 2200
class-attribute
instance-attribute
No description given by bungie.
PARTNERSHIP_VALIDATION_ERROR = 2201
class-attribute
instance-attribute
No description given by bungie.
PARTNERSHIP_VALIDATION_TIMEOUT = 2202
class-attribute
instance-attribute
No description given by bungie.
PARTNER_OFFER_ALREADY_CLAIMED = 2060
class-attribute
instance-attribute
No description given by bungie.
PARTNER_OFFER_APPLY_DATA_NOT_FOUND = 2065
class-attribute
instance-attribute
No description given by bungie.
PARTNER_OFFER_NO_DESTINY_ACCOUNT = 2064
class-attribute
instance-attribute
No description given by bungie.
PARTNER_OFFER_PARTIAL_FAILURE = 2059
class-attribute
instance-attribute
No description given by bungie.
PARTNER_OFFER_PERMISSION_FAILURE = 2063
class-attribute
instance-attribute
No description given by bungie.
PARTNER_OFFER_SKU_EXPIRED = 2062
class-attribute
instance-attribute
No description given by bungie.
PARTNER_OFFER_SKU_NOT_FOUND = 2061
class-attribute
instance-attribute
No description given by bungie.
PAYLOAD_SIGNATURE_VERIFICATION_FAILURE = 58
class-attribute
instance-attribute
No description given by bungie.
PER_APPLICATION_ANONYMOUS_THROTTLE_EXCEEDED = 55
class-attribute
instance-attribute
No description given by bungie.
PER_APPLICATION_AUTHENTICATED_THROTTLE_EXCEEDED = 56
class-attribute
instance-attribute
No description given by bungie.
PER_APPLICATION_THROTTLE_EXCEEDED = 54
class-attribute
instance-attribute
No description given by bungie.
PER_ENDPOINT_REQUEST_THROTTLE_EXCEEDED = 51
class-attribute
instance-attribute
No description given by bungie.
PER_USER_THROTTLE_EXCEEDED = 57
class-attribute
instance-attribute
No description given by bungie.
PRIVATE_MESSAGING_REQUIRES_DESTINY_MEMBERSHIP = 313
class-attribute
instance-attribute
No description given by bungie.
PROVIDED_TOKEN_NOT_VALID_REFRESH_TOKEN = 2117
class-attribute
instance-attribute
No description given by bungie.
PSN_API_ACCESS_TOKEN_REQUIRED = 1226
class-attribute
instance-attribute
No description given by bungie.
PSN_API_ACCOUNT_ATTRIBUTE_MISSING = 1237
class-attribute
instance-attribute
No description given by bungie.
PSN_API_ACCOUNT_UPGRADE_REQUIRED = 1230
class-attribute
instance-attribute
No description given by bungie.
PSN_API_BAD_REQUEST = 1225
class-attribute
instance-attribute
No description given by bungie.
PSN_API_BANNED_USER = 1229
class-attribute
instance-attribute
No description given by bungie.
PSN_API_ERROR_CODE_UNKNOWN = 1223
class-attribute
instance-attribute
No description given by bungie.
PSN_API_ERROR_WEB_EXCEPTION = 1224
class-attribute
instance-attribute
No description given by bungie.
PSN_API_EXPIRED_ACCESS_TOKEN = 1204
class-attribute
instance-attribute
No description given by bungie.
PSN_API_INVALID_ACCESS_TOKEN = 1227
class-attribute
instance-attribute
No description given by bungie.
PSN_API_JWKS_MISSING = 1240
class-attribute
instance-attribute
No description given by bungie.
PSN_API_JWT_MALFORMED_HEADER = 1241
class-attribute
instance-attribute
No description given by bungie.
PSN_API_JWT_MALFORMED_PAYLOAD = 1242
class-attribute
instance-attribute
No description given by bungie.
PSN_API_NO_PERMISSION = 1238
class-attribute
instance-attribute
No description given by bungie.
PSN_API_PROFILE_PRIVACY_RESTRICTION = 1235
class-attribute
instance-attribute
No description given by bungie.
PSN_API_PROFILE_UNDER_MAINTENANCE = 1236
class-attribute
instance-attribute
No description given by bungie.
PSN_API_PROFILE_USER_NOT_FOUND = 1234
class-attribute
instance-attribute
No description given by bungie.
PSN_API_SERVER_BUSY = 1232
class-attribute
instance-attribute
No description given by bungie.
PSN_API_SERVICE_TEMPORARILY_UNAVAILABLE = 1231
class-attribute
instance-attribute
No description given by bungie.
PSN_API_TARGET_USER_BLOCKED = 1239
class-attribute
instance-attribute
No description given by bungie.
PSN_API_UNDER_MAINTENANCE = 1233
class-attribute
instance-attribute
No description given by bungie.
P_C_MIGRATION_ACCOUNTS_ALREADY_USED = 3407
class-attribute
instance-attribute
No description given by bungie.
P_C_MIGRATION_CANNOT_STOMP_CLAN_FOUNDER = 3414
class-attribute
instance-attribute
No description given by bungie.
P_C_MIGRATION_DESTINATION_BANNED = 3410
class-attribute
instance-attribute
No description given by bungie.
P_C_MIGRATION_DESTINY_FAILURE = 3411
class-attribute
instance-attribute
No description given by bungie.
P_C_MIGRATION_ENTITLEMENT_TRANSFER_FAILED = 3413
class-attribute
instance-attribute
No description given by bungie.
P_C_MIGRATION_INVALID_BLIZZARD = 3402
class-attribute
instance-attribute
No description given by bungie.
P_C_MIGRATION_INVALID_BLIZZARD_CROSS_SAVE_STATE = 3409
class-attribute
instance-attribute
No description given by bungie.
P_C_MIGRATION_INVALID_STEAM = 3403
class-attribute
instance-attribute
No description given by bungie.
P_C_MIGRATION_MISSING_BLIZZARD = 3400
class-attribute
instance-attribute
No description given by bungie.
P_C_MIGRATION_MISSING_STEAM = 3401
class-attribute
instance-attribute
No description given by bungie.
P_C_MIGRATION_NOT_LINKED = 3406
class-attribute
instance-attribute
No description given by bungie.
P_C_MIGRATION_SILVER_TRANSFER_FAILED = 3412
class-attribute
instance-attribute
No description given by bungie.
P_C_MIGRATION_STEP_FAILED = 3408
class-attribute
instance-attribute
No description given by bungie.
P_C_MIGRATION_UNKNOWN_EXCEPTION = 3405
class-attribute
instance-attribute
No description given by bungie.
P_C_MIGRATION_UNKNOWN_FAILURE = 3404
class-attribute
instance-attribute
No description given by bungie.
P_S_N_EX_FORBIDDEN = 1205
class-attribute
instance-attribute
No description given by bungie.
P_S_N_EX_SYSTEM_DISABLED = 1218
class-attribute
instance-attribute
No description given by bungie.
REFRESH_TOKEN_EXPIRED = 2118
class-attribute
instance-attribute
No description given by bungie.
REFRESH_TOKEN_NOT_YET_VALID = 2110
class-attribute
instance-attribute
No description given by bungie.
REPORT_ALREADY_REPORTED = 1403
class-attribute
instance-attribute
No description given by bungie.
REPORT_CANNOT_REPORT_SELF = 2703
class-attribute
instance-attribute
No description given by bungie.
REPORT_INVALID_RESOLUTION = 1404
class-attribute
instance-attribute
No description given by bungie.
REPORT_NOT_ASSIGNED_TO_YOU = 1405
class-attribute
instance-attribute
No description given by bungie.
REPORT_NOT_FOUND = 1402
class-attribute
instance-attribute
No description given by bungie.
REPORT_NOT_YET_RESOLVED = 1400
class-attribute
instance-attribute
No description given by bungie.
REPORT_OFFENDER_NOT_IN_PGCR = 2700
class-attribute
instance-attribute
No description given by bungie.
REPORT_OVERTURN_DOES_NOT_CHANGE_DECISION = 1401
class-attribute
instance-attribute
No description given by bungie.
REPORT_REQUESTOR_NOT_IN_PGCR = 2701
class-attribute
instance-attribute
No description given by bungie.
REPORT_SUBMISSION_FAILED = 2702
class-attribute
instance-attribute
No description given by bungie.
R_A_F_CANNOT_BOND_TO_SELF = 2032
class-attribute
instance-attribute
No description given by bungie.
R_A_F_CODE_ALREADY_CLAIMED_OR_NOT_FOUND = 2026
class-attribute
instance-attribute
No description given by bungie.
R_A_F_DUPLICATE_BOND = 2023
class-attribute
instance-attribute
No description given by bungie.
R_A_F_EXCEEDED_MAXIMUM_REFERRALS = 2022
class-attribute
instance-attribute
No description given by bungie.
R_A_F_GENERATE_THROTTLED = 2034
class-attribute
instance-attribute
No description given by bungie.
R_A_F_INVALID_PLATFORM = 2033
class-attribute
instance-attribute
No description given by bungie.
R_A_F_MISMATCHED_DESTINY_MEMBERSHIP_TYPE = 2027
class-attribute
instance-attribute
No description given by bungie.
R_A_F_NOT_A_VALID_VETERAN_USER = 2025
class-attribute
instance-attribute
No description given by bungie.
R_A_F_NO_VALID_VETERAN_DESTINY_MEMBERSHIPS_FOUND = 2024
class-attribute
instance-attribute
No description given by bungie.
R_A_F_QUEST_ENTITLEMENT_REQUIRES_BNET = 2052
class-attribute
instance-attribute
No description given by bungie.
R_A_F_QUEST_ENTITLEMENT_TRANSPORT_FAILURE = 2053
class-attribute
instance-attribute
No description given by bungie.
R_A_F_QUEST_ENTITLEMENT_UNKNOWN_FAILURE = 2054
class-attribute
instance-attribute
No description given by bungie.
R_A_F_REDEEM_THROTTLED = 2037
class-attribute
instance-attribute
No description given by bungie.
R_A_F_TOO_EARLY_TO_CANCEL_BOND = 2056
class-attribute
instance-attribute
No description given by bungie.
R_A_F_UNABLE_TO_ACCESS_PURCHASE_HISTORY = 2028
class-attribute
instance-attribute
No description given by bungie.
R_A_F_UNABLE_TO_CREATE_BOND = 2029
class-attribute
instance-attribute
No description given by bungie.
R_A_F_UNABLE_TO_CREATE_BOND_VERSION_MISMATCH = 2035
class-attribute
instance-attribute
No description given by bungie.
R_A_F_UNABLE_TO_FIND_BOND = 2030
class-attribute
instance-attribute
No description given by bungie.
R_A_F_UNABLE_TO_REMOVE_BOND = 2031
class-attribute
instance-attribute
No description given by bungie.
R_A_F_UNABLE_TO_REMOVE_BOND_VERSION_MISMATCH = 2036
class-attribute
instance-attribute
No description given by bungie.
R_A_F_VETERAN_REWARD_UNKNOWN_FAILURE = 2055
class-attribute
instance-attribute
No description given by bungie.
SERVICE_RETIRED = 43
class-attribute
instance-attribute
No description given by bungie.
SERVICE_UNSUPPORTED = 48
class-attribute
instance-attribute
No description given by bungie.
SHARE_ALREADY_SHARED = 706
class-attribute
instance-attribute
No description given by bungie.
SINGLE_TAG_EXPECTED = 908
class-attribute
instance-attribute
No description given by bungie.
STADIA_ACCOUNT_REQUIRED = 3600
class-attribute
instance-attribute
No description given by bungie.
STEAM_ACCOUNT_REQUIRED = 2902
class-attribute
instance-attribute
No description given by bungie.
STEAM_NOT_AUTHORIZED = 2903
class-attribute
instance-attribute
No description given by bungie.
STEAM_WEB_API_ERROR = 2900
class-attribute
instance-attribute
No description given by bungie.
STEAM_WEB_NULL_RESPONSE_ERROR = 2901
class-attribute
instance-attribute
No description given by bungie.
SUCCESS = 1
class-attribute
instance-attribute
No description given by bungie.
SYSTEM_DISABLED = 5
class-attribute
instance-attribute
No description given by bungie.
TAGS_EXCEEDED_MAXIMUM_PER_ITEM = 909
class-attribute
instance-attribute
No description given by bungie.
TAGS_UNABLE_TO_LOAD_POPULAR_TAGS_FROM_DATABASE = 905
class-attribute
instance-attribute
No description given by bungie.
TAG_FOLLOW_LIMIT_EXCEEDED = 805
class-attribute
instance-attribute
No description given by bungie.
TAG_INVALID = 906
class-attribute
instance-attribute
No description given by bungie.
TAG_NOT_FOUND = 907
class-attribute
instance-attribute
No description given by bungie.
TAG_SUGGESTIONS_UNKNOWN_SQL_RESULT = 904
class-attribute
instance-attribute
No description given by bungie.
TARGET_USER_IGNORED = 1010
class-attribute
instance-attribute
No description given by bungie.
THROTTLE_LIMIT_EXCEEDED = 31
class-attribute
instance-attribute
No description given by bungie.
THROTTLE_LIMIT_EXCEEDED_MINUTES = 35
class-attribute
instance-attribute
No description given by bungie.
THROTTLE_LIMIT_EXCEEDED_MOMENTARILY = 36
class-attribute
instance-attribute
No description given by bungie.
THROTTLE_LIMIT_EXCEEDED_SECONDS = 37
class-attribute
instance-attribute
No description given by bungie.
TOKEN_ALREADY_CLAIMED = 2002
class-attribute
instance-attribute
No description given by bungie.
TOKEN_ALREADY_CLAIMED_SELF = 2003
class-attribute
instance-attribute
No description given by bungie.
TOKEN_BAD_FORMAT = 2001
class-attribute
instance-attribute
No description given by bungie.
TOKEN_EMAIL_NOT_VALIDATED = 2009
class-attribute
instance-attribute
No description given by bungie.
TOKEN_EXCEEDED_OFFER_MAXIMUM = 2014
class-attribute
instance-attribute
No description given by bungie.
TOKEN_INVALID = 2000
class-attribute
instance-attribute
No description given by bungie.
TOKEN_INVALID_MEMBERSHIP = 2121
class-attribute
instance-attribute
No description given by bungie.
TOKEN_INVALID_OFFER_KEY = 2008
class-attribute
instance-attribute
No description given by bungie.
TOKEN_MARKETPLACE_INVALID_PLATFORM = 2016
class-attribute
instance-attribute
No description given by bungie.
TOKEN_MARKETPLACE_INVALID_REGION = 2020
class-attribute
instance-attribute
No description given by bungie.
TOKEN_NO_AVAILABLE_UNLOCKS = 2015
class-attribute
instance-attribute
No description given by bungie.
TOKEN_NO_MARKETPLACE_CODES_FOUND = 2017
class-attribute
instance-attribute
No description given by bungie.
TOKEN_OFFER_EXPIRED = 2021
class-attribute
instance-attribute
No description given by bungie.
TOKEN_OFFER_NOT_AVAILABLE_FOR_REDEMPTION = 2018
class-attribute
instance-attribute
No description given by bungie.
TOKEN_PREVIOUSLY_REVOKED = 2120
class-attribute
instance-attribute
No description given by bungie.
TOKEN_PROVISIONING_BAD_VENDOR_OR_OFFER = 2010
class-attribute
instance-attribute
No description given by bungie.
TOKEN_PURCHASE_CLAIM_FAILED_AFTER_TOKEN_CLAIMED = 2006
class-attribute
instance-attribute
No description given by bungie.
TOKEN_PURCHASE_HISTORY_UNKNOWN_ERROR = 2011
class-attribute
instance-attribute
No description given by bungie.
TOKEN_REQUIRES_CREDENTIAL_PSNID = 2045
class-attribute
instance-attribute
No description given by bungie.
TOKEN_REQUIRES_CREDENTIAL_XUID = 2044
class-attribute
instance-attribute
No description given by bungie.
TOKEN_THROTTLE_STATE_UNKNOWN_ERROR = 2012
class-attribute
instance-attribute
No description given by bungie.
TOKEN_THROTTLING = 2004
class-attribute
instance-attribute
No description given by bungie.
TOKEN_UNKNOWN_REDEMPTION_FAILURE = 2005
class-attribute
instance-attribute
No description given by bungie.
TOKEN_UNLOCK_PARTIAL_FAILURE = 2019
class-attribute
instance-attribute
No description given by bungie.
TOKEN_USER_AGE_NOT_VERIFIED = 2013
class-attribute
instance-attribute
No description given by bungie.
TOKEN_USER_ALREADY_OWNS_OFFER = 2007
class-attribute
instance-attribute
No description given by bungie.
TRANSACTION_EMAIL_SEND_FAILURE = 230
class-attribute
instance-attribute
No description given by bungie.
TRANSPORT_EXCEPTION = 2
class-attribute
instance-attribute
No description given by bungie.
TRENDING_CATEGORY_NOT_FOUND = 2600
class-attribute
instance-attribute
No description given by bungie.
TRENDING_ENTRY_TYPE_NOT_SUPPORTED = 2601
class-attribute
instance-attribute
No description given by bungie.
TWITCH_ACCOUNT_NOT_FOUND = 2501
class-attribute
instance-attribute
No description given by bungie.
TWITCH_COULD_NOT_LOAD_DESTINY_INFO = 2502
class-attribute
instance-attribute
No description given by bungie.
TWITCH_COULD_NOT_REGISTER_USER = 2503
class-attribute
instance-attribute
No description given by bungie.
TWITCH_COULD_NOT_UNREGISTER_USER = 2504
class-attribute
instance-attribute
No description given by bungie.
TWITCH_DROPS_REPAIR_PARTIAL_FAILURE = 2508
class-attribute
instance-attribute
No description given by bungie.
TWITCH_DROP_HISTORY_PERMISSION_FAILURE = 2507
class-attribute
instance-attribute
No description given by bungie.
TWITCH_NOT_AUTHORIZED = 2509
class-attribute
instance-attribute
No description given by bungie.
TWITCH_NOT_LINKED = 2500
class-attribute
instance-attribute
No description given by bungie.
TWITCH_NO_PLATFORM_CHOSEN = 2506
class-attribute
instance-attribute
No description given by bungie.
TWITCH_REQUIRES_RELINKING = 2505
class-attribute
instance-attribute
No description given by bungie.
TWITCH_UNKNOWN_AUTHORIZATION_FAILURE = 2510
class-attribute
instance-attribute
No description given by bungie.
UNABLE_TO_PAIR_MOBILE_APP = 91
class-attribute
instance-attribute
No description given by bungie.
UNABLE_TO_UN_PAIR_MOBILE_APP = 90
class-attribute
instance-attribute
No description given by bungie.
UNCLAIMED_LOYALTY_REWARD_ENTRY_NOT_FOUND = 2058
class-attribute
instance-attribute
No description given by bungie.
UNHANDLED_EXCEPTION = 3
class-attribute
instance-attribute
No description given by bungie.
UNHANDLED_HTTP_EXCEPTION = 20
class-attribute
instance-attribute
No description given by bungie.
UNKNOWN_AUTHENTICATION_ERROR = 97
class-attribute
instance-attribute
No description given by bungie.
UNKNOWN_ERROR_SETTING_GLOBAL_DISPLAY_NAME = 236
class-attribute
instance-attribute
No description given by bungie.
UNKNOWN_EVERVERSE_HISTORY_ERROR = 2047
class-attribute
instance-attribute
No description given by bungie.
UNKNOWN_SQL_EXCEPTION = 44
class-attribute
instance-attribute
No description given by bungie.
UNKNOWN_SQL_RESULT = 14
class-attribute
instance-attribute
No description given by bungie.
UNSUPPORTED_BROWSER = 3500
class-attribute
instance-attribute
No description given by bungie.
UNSUPPORTED_LOCALE = 45
class-attribute
instance-attribute
No description given by bungie.
USER_ACKNOWLEDGMENT_TABLE_FULL = 225
class-attribute
instance-attribute
No description given by bungie.
USER_BANNED = 24
class-attribute
instance-attribute
No description given by bungie.
USER_CANNOT_CHANGE_DISPLAY_NAME_YET = 221
class-attribute
instance-attribute
No description given by bungie.
USER_CANNOT_CHANGE_EMAIL = 222
class-attribute
instance-attribute
No description given by bungie.
USER_CANNOT_CHANGE_UNIQUE_NAME_YET = 220
class-attribute
instance-attribute
No description given by bungie.
USER_CANNOT_CREATE_NEW_ACCOUNT_WHILE_LOGGED_IN = 216
class-attribute
instance-attribute
No description given by bungie.
USER_CANNOT_FIND_REQUESTED_USER = 205
class-attribute
instance-attribute
No description given by bungie.
USER_CANNOT_GENERATE_MOBILE_KEY_WHILE_USING_MOBILE_CREDENTIAL = 209
class-attribute
instance-attribute
No description given by bungie.
USER_CANNOT_LOAD_ACCOUNT_CREDENTIAL_LINK_INFO = 206
class-attribute
instance-attribute
No description given by bungie.
USER_CANNOT_LOAD_ACCOUNT_PROFILE_DATA = 212
class-attribute
instance-attribute
No description given by bungie.
USER_CANNOT_RESOLVE_CENTRAL_ACCOUNT = 217
class-attribute
instance-attribute
No description given by bungie.
USER_CANNOT_SAVE_USER_PROFILE_DATA = 213
class-attribute
instance-attribute
No description given by bungie.
USER_CREATE_UNKNOWN_SQL_EXCEPTION = 203
class-attribute
instance-attribute
No description given by bungie.
USER_CREATE_UNKNOWN_SQL_RESULT = 202
class-attribute
instance-attribute
No description given by bungie.
USER_CREATION_DESTINY_MEMBERSHIP_REQUIRED = 226
class-attribute
instance-attribute
No description given by bungie.
USER_DISPLAY_NAME_CONTAINS_UNACCEPTABLE_OR_INVALID_CONTENT = 244
class-attribute
instance-attribute
No description given by bungie.
USER_DISPLAY_NAME_GREATER_THAN_MAX_LENGTH = 243
class-attribute
instance-attribute
No description given by bungie.
USER_DISPLAY_NAME_LESS_THAN_MIN_LENGTH = 242
class-attribute
instance-attribute
No description given by bungie.
USER_DISPLAY_NAME_MISSING_OR_INVALID = 211
class-attribute
instance-attribute
No description given by bungie.
USER_EMAIL_MISSING_OR_INVALID = 214
class-attribute
instance-attribute
No description given by bungie.
USER_EMAIL_MUST_BE_VERIFIED = 233
class-attribute
instance-attribute
No description given by bungie.
USER_EMAIL_VALIDATION_LIMIT = 229
class-attribute
instance-attribute
No description given by bungie.
USER_EMAIL_VALIDATION_UNKNOWN = 228
class-attribute
instance-attribute
No description given by bungie.
USER_FOLLOW_LIMIT_EXCEEDED = 806
class-attribute
instance-attribute
No description given by bungie.
USER_FRIENDS_TOKEN_NEEDS_REFRESH = 227
class-attribute
instance-attribute
No description given by bungie.
USER_GENERATE_MOBILE_KEY_EXISTING_SLOT_COLLISION = 210
class-attribute
instance-attribute
No description given by bungie.
USER_INVALID_AVATAR = 218
class-attribute
instance-attribute
No description given by bungie.
USER_INVALID_MOBILE_APP_TYPE = 207
class-attribute
instance-attribute
No description given by bungie.
USER_MALFORMED_MEMBERSHIP_ID = 204
class-attribute
instance-attribute
No description given by bungie.
USER_MANUAL_LINKING_STEP_REQUIRED = 201
class-attribute
instance-attribute
No description given by bungie.
USER_MISSING_CREATED_USER_RESULT = 219
class-attribute
instance-attribute
No description given by bungie.
USER_MISSING_MOBILE_PAIRING_INFO = 208
class-attribute
instance-attribute
No description given by bungie.
USER_MUST_ALLOW_CUSTOMER_SERVICE_EMAILS = 234
class-attribute
instance-attribute
No description given by bungie.
USER_NON_UNIQUE_NAME = 200
class-attribute
instance-attribute
No description given by bungie.
USER_NO_LINKED_ACCOUNTS_SUPPORT_FRIEND_LISTINGS = 224
class-attribute
instance-attribute
No description given by bungie.
USER_TERMS_OF_USE_REQUIRED = 215
class-attribute
instance-attribute
No description given by bungie.
USER_UNIQUE_NAME_MUST_START_WITH_LETTER = 223
class-attribute
instance-attribute
No description given by bungie.
VALIDATION_BAD_NAMES = 41
class-attribute
instance-attribute
No description given by bungie.
VALIDATION_ERROR = 15
class-attribute
instance-attribute
No description given by bungie.
VALIDATION_INVALID_INPUT_ERROR = 17
class-attribute
instance-attribute
No description given by bungie.
VALIDATION_INVISIBLE_UNICODE = 40
class-attribute
instance-attribute
No description given by bungie.
VALIDATION_LENGTH_ERROR = 28
class-attribute
instance-attribute
No description given by bungie.
VALIDATION_MAXIMUM_SEQUENTIAL_CARRIAGE_RETURNS = 50
class-attribute
instance-attribute
No description given by bungie.
VALIDATION_MAXIMUM_UNICODE_COMBINING_CHARACTERS = 49
class-attribute
instance-attribute
No description given by bungie.
VALIDATION_MISSING_FIELD_ERROR = 16
class-attribute
instance-attribute
No description given by bungie.
VALIDATION_PROFANITY_ERROR = 33
class-attribute
instance-attribute
No description given by bungie.
VALIDATION_RANGE_ERROR = 29
class-attribute
instance-attribute
No description given by bungie.
VALIDATION_TAG_ERROR = 32
class-attribute
instance-attribute
No description given by bungie.
VALIDATION_URL_FORMAT_ERROR = 34
class-attribute
instance-attribute
No description given by bungie.
VALIDATION_WORD_LENGTH_ERROR = 39
class-attribute
instance-attribute
No description given by bungie.
WEB_AUTH_MODULE_ASYNC_FAILED = 22
class-attribute
instance-attribute
No description given by bungie.
WEB_AUTH_REQUIRED = 99
class-attribute
instance-attribute
No description given by bungie.
XBL_ACCESS_TO_THE_SANDBOX_DENIED = 1306
class-attribute
instance-attribute
No description given by bungie.
XBL_API_ERROR_WEB_EXCEPTION = 1302
class-attribute
instance-attribute
No description given by bungie.
XBL_DEVELOPER_ACCOUNT = 1313
class-attribute
instance-attribute
No description given by bungie.
XBL_EX_SYSTEM_DISABLED = 1300
class-attribute
instance-attribute
No description given by bungie.
XBL_EX_UNKNOWN_ERROR = 1301
class-attribute
instance-attribute
No description given by bungie.
XBL_MSA_ACCESS_TOKEN_EXPIRED = 1308
class-attribute
instance-attribute
No description given by bungie.
XBL_MSA_FRIENDS_REQUIRE_SIGN_IN = 1310
class-attribute
instance-attribute
No description given by bungie.
XBL_MSA_INVALID_GRANT = 1318
class-attribute
instance-attribute
No description given by bungie.
XBL_MSA_INVALID_REQUEST = 1309
class-attribute
instance-attribute
No description given by bungie.
XBL_MSA_RESPONSE_MISSING = 1307
class-attribute
instance-attribute
No description given by bungie.
XBL_OFFLINE = 1316
class-attribute
instance-attribute
No description given by bungie.
XBL_PARENTAL_CONTROLS = 1312
class-attribute
instance-attribute
No description given by bungie.
XBL_STS_EXPIRED_TOKEN = 1305
class-attribute
instance-attribute
No description given by bungie.
XBL_STS_MISSING_TOKEN = 1304
class-attribute
instance-attribute
No description given by bungie.
XBL_STS_TOKEN_INVALID = 1303
class-attribute
instance-attribute
No description given by bungie.
XBL_UNKNOWN_ERROR_CODE = 1317
class-attribute
instance-attribute
No description given by bungie.
XBL_USER_ACTION_REQUIRED = 1311
class-attribute
instance-attribute
No description given by bungie.
XBL_USER_TOKEN_EXPIRED = 1314
class-attribute
instance-attribute
No description given by bungie.
XBL_USER_TOKEN_INVALID = 1315
class-attribute
instance-attribute
No description given by bungie.
display_name
property
Format the instance name so that it looks like in-game.
Example
name="HAND_CANNON" -> "Hand Cannon"
Returns:
| Type | Description |
|---|---|
str
|
The formatted name |
from_dict(data, client, *args, **kwargs)
async
classmethod
Convert data to this enum
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
int | str
|
The int / str representation of the enum, usually received by bungie |
required |
client
|
'Client'
|
The client obj |
required |
Returns:
| Type | Description |
|---|---|
EnumMixin | UnknownEnumValue
|
The enum |
Source code in src/bungio/models/base.py
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 | |
process_dict(data, client, *args, **kwargs)
staticmethod
Enum specific cleanup
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
int | str
|
The int / str representation of the enum, usually received by bungie |
required |
client
|
'Client'
|
The client obj |
required |
Returns:
| Type | Description |
|---|---|
int | str
|
Clean int / str representation |
Source code in src/bungio/models/base.py
134 135 136 137 138 139 140 141 142 143 144 145 146 | |
to_dict()
Convert the enum into a representation bungie accepts
Returns:
| Type | Description |
|---|---|
Any
|
The value which can be sent to bungie |
Source code in src/bungio/models/base.py
172 173 174 175 176 177 178 179 180 | |