1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
// =================================================================
//
//                           * WARNING *
//
//                    This file is generated!
//
//  Changes made to this file will be overwritten. If changes are
//  required to the generated code, the service_crategen project
//  must be updated to generate the changes.
//
// =================================================================
#![allow(warnings)]

use futures::future;
use futures::Future;
use rusoto_core::credential::ProvideAwsCredentials;
use rusoto_core::region;
use rusoto_core::request::{BufferedHttpResponse, DispatchSignedRequest};
use rusoto_core::{Client, RusotoError, RusotoFuture};
use std::error::Error;
use std::fmt;

use rusoto_core::proto;
use rusoto_core::signature::SignedRequest;
use serde_json;
#[derive(Default, Debug, Clone, PartialEq, Serialize)]
pub struct AcceptQualificationRequestRequest {
    /// <p> The value of the Qualification. You can omit this value if you are using the presence or absence of the Qualification as the basis for a HIT requirement. </p>
    #[serde(rename = "IntegerValue")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub integer_value: Option<i64>,
    /// <p>The ID of the Qualification request, as returned by the <code>GetQualificationRequests</code> operation.</p>
    #[serde(rename = "QualificationRequestId")]
    pub qualification_request_id: String,
}

#[derive(Default, Debug, Clone, PartialEq, Deserialize)]
#[cfg_attr(any(test, feature = "serialize_structs"), derive(Serialize))]
pub struct AcceptQualificationRequestResponse {}

#[derive(Default, Debug, Clone, PartialEq, Serialize)]
pub struct ApproveAssignmentRequest {
    /// <p> The ID of the assignment. The assignment must correspond to a HIT created by the Requester. </p>
    #[serde(rename = "AssignmentId")]
    pub assignment_id: String,
    /// <p> A flag indicating that an assignment should be approved even if it was previously rejected. Defaults to <code>False</code>. </p>
    #[serde(rename = "OverrideRejection")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub override_rejection: Option<bool>,
    /// <p> A message for the Worker, which the Worker can see in the Status section of the web site. </p>
    #[serde(rename = "RequesterFeedback")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub requester_feedback: Option<String>,
}

#[derive(Default, Debug, Clone, PartialEq, Deserialize)]
#[cfg_attr(any(test, feature = "serialize_structs"), derive(Serialize))]
pub struct ApproveAssignmentResponse {}

/// <p> The Assignment data structure represents a single assignment of a HIT to a Worker. The assignment tracks the Worker's efforts to complete the HIT, and contains the results for later retrieval. </p>
#[derive(Default, Debug, Clone, PartialEq, Deserialize)]
#[cfg_attr(any(test, feature = "serialize_structs"), derive(Serialize))]
pub struct Assignment {
    /// <p> The date and time the Worker accepted the assignment.</p>
    #[serde(rename = "AcceptTime")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub accept_time: Option<f64>,
    /// <p> The Worker's answers submitted for the HIT contained in a QuestionFormAnswers document, if the Worker provides an answer. If the Worker does not provide any answers, Answer may contain a QuestionFormAnswers document, or Answer may be empty.</p>
    #[serde(rename = "Answer")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub answer: Option<String>,
    /// <p> If the Worker has submitted results and the Requester has approved the results, ApprovalTime is the date and time the Requester approved the results. This value is omitted from the assignment if the Requester has not yet approved the results.</p>
    #[serde(rename = "ApprovalTime")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub approval_time: Option<f64>,
    /// <p> A unique identifier for the assignment.</p>
    #[serde(rename = "AssignmentId")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub assignment_id: Option<String>,
    /// <p> The status of the assignment.</p>
    #[serde(rename = "AssignmentStatus")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub assignment_status: Option<String>,
    /// <p> If results have been submitted, AutoApprovalTime is the date and time the results of the assignment results are considered Approved automatically if they have not already been explicitly approved or rejected by the Requester. This value is derived from the auto-approval delay specified by the Requester in the HIT. This value is omitted from the assignment if the Worker has not yet submitted results.</p>
    #[serde(rename = "AutoApprovalTime")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub auto_approval_time: Option<f64>,
    /// <p> The date and time of the deadline for the assignment. This value is derived from the deadline specification for the HIT and the date and time the Worker accepted the HIT.</p>
    #[serde(rename = "Deadline")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub deadline: Option<f64>,
    /// <p> The ID of the HIT.</p>
    #[serde(rename = "HITId")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub hit_id: Option<String>,
    /// <p> If the Worker has submitted results and the Requester has rejected the results, RejectionTime is the date and time the Requester rejected the results.</p>
    #[serde(rename = "RejectionTime")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub rejection_time: Option<f64>,
    /// <p> The feedback string included with the call to the ApproveAssignment operation or the RejectAssignment operation, if the Requester approved or rejected the assignment and specified feedback.</p>
    #[serde(rename = "RequesterFeedback")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub requester_feedback: Option<String>,
    /// <p> If the Worker has submitted results, SubmitTime is the date and time the assignment was submitted. This value is omitted from the assignment if the Worker has not yet submitted results.</p>
    #[serde(rename = "SubmitTime")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub submit_time: Option<f64>,
    /// <p> The ID of the Worker who accepted the HIT.</p>
    #[serde(rename = "WorkerId")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub worker_id: Option<String>,
}

#[derive(Default, Debug, Clone, PartialEq, Serialize)]
pub struct AssociateQualificationWithWorkerRequest {
    /// <p>The value of the Qualification to assign.</p>
    #[serde(rename = "IntegerValue")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub integer_value: Option<i64>,
    /// <p>The ID of the Qualification type to use for the assigned Qualification.</p>
    #[serde(rename = "QualificationTypeId")]
    pub qualification_type_id: String,
    /// <p> Specifies whether to send a notification email message to the Worker saying that the qualification was assigned to the Worker. Note: this is true by default. </p>
    #[serde(rename = "SendNotification")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub send_notification: Option<bool>,
    /// <p> The ID of the Worker to whom the Qualification is being assigned. Worker IDs are included with submitted HIT assignments and Qualification requests. </p>
    #[serde(rename = "WorkerId")]
    pub worker_id: String,
}

#[derive(Default, Debug, Clone, PartialEq, Deserialize)]
#[cfg_attr(any(test, feature = "serialize_structs"), derive(Serialize))]
pub struct AssociateQualificationWithWorkerResponse {}

/// <p>An object representing a Bonus payment paid to a Worker.</p>
#[derive(Default, Debug, Clone, PartialEq, Deserialize)]
#[cfg_attr(any(test, feature = "serialize_structs"), derive(Serialize))]
pub struct BonusPayment {
    /// <p>The ID of the assignment associated with this bonus payment.</p>
    #[serde(rename = "AssignmentId")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub assignment_id: Option<String>,
    #[serde(rename = "BonusAmount")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub bonus_amount: Option<String>,
    /// <p>The date and time of when the bonus was granted.</p>
    #[serde(rename = "GrantTime")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub grant_time: Option<f64>,
    /// <p>The Reason text given when the bonus was granted, if any.</p>
    #[serde(rename = "Reason")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub reason: Option<String>,
    /// <p>The ID of the Worker to whom the bonus was paid.</p>
    #[serde(rename = "WorkerId")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub worker_id: Option<String>,
}

#[derive(Default, Debug, Clone, PartialEq, Serialize)]
pub struct CreateAdditionalAssignmentsForHITRequest {
    /// <p>The ID of the HIT to extend.</p>
    #[serde(rename = "HITId")]
    pub hit_id: String,
    /// <p>The number of additional assignments to request for this HIT.</p>
    #[serde(rename = "NumberOfAdditionalAssignments")]
    pub number_of_additional_assignments: i64,
    /// <p> A unique identifier for this request, which allows you to retry the call on error without extending the HIT multiple times. This is useful in cases such as network timeouts where it is unclear whether or not the call succeeded on the server. If the extend HIT already exists in the system from a previous call using the same <code>UniqueRequestToken</code>, subsequent calls will return an error with a message containing the request ID. </p>
    #[serde(rename = "UniqueRequestToken")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub unique_request_token: Option<String>,
}

#[derive(Default, Debug, Clone, PartialEq, Deserialize)]
#[cfg_attr(any(test, feature = "serialize_structs"), derive(Serialize))]
pub struct CreateAdditionalAssignmentsForHITResponse {}

#[derive(Default, Debug, Clone, PartialEq, Serialize)]
pub struct CreateHITRequest {
    /// <p> The amount of time, in seconds, that a Worker has to complete the HIT after accepting it. If a Worker does not complete the assignment within the specified duration, the assignment is considered abandoned. If the HIT is still active (that is, its lifetime has not elapsed), the assignment becomes available for other users to find and accept. </p>
    #[serde(rename = "AssignmentDurationInSeconds")]
    pub assignment_duration_in_seconds: i64,
    /// <p> The Assignment-level Review Policy applies to the assignments under the HIT. You can specify for Mechanical Turk to take various actions based on the policy. </p>
    #[serde(rename = "AssignmentReviewPolicy")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub assignment_review_policy: Option<ReviewPolicy>,
    /// <p> The number of seconds after an assignment for the HIT has been submitted, after which the assignment is considered Approved automatically unless the Requester explicitly rejects it. </p>
    #[serde(rename = "AutoApprovalDelayInSeconds")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub auto_approval_delay_in_seconds: Option<i64>,
    /// <p> A general description of the HIT. A description includes detailed information about the kind of task the HIT contains. On the Amazon Mechanical Turk web site, the HIT description appears in the expanded view of search results, and in the HIT and assignment screens. A good description gives the user enough information to evaluate the HIT before accepting it. </p>
    #[serde(rename = "Description")]
    pub description: String,
    /// <p> The HITLayoutId allows you to use a pre-existing HIT design with placeholder values and create an additional HIT by providing those values as HITLayoutParameters. </p> <p> Constraints: Either a Question parameter or a HITLayoutId parameter must be provided. </p>
    #[serde(rename = "HITLayoutId")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub hit_layout_id: Option<String>,
    /// <p> If the HITLayoutId is provided, any placeholder values must be filled in with values using the HITLayoutParameter structure. For more information, see HITLayout. </p>
    #[serde(rename = "HITLayoutParameters")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub hit_layout_parameters: Option<Vec<HITLayoutParameter>>,
    /// <p> The HIT-level Review Policy applies to the HIT. You can specify for Mechanical Turk to take various actions based on the policy. </p>
    #[serde(rename = "HITReviewPolicy")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub hit_review_policy: Option<ReviewPolicy>,
    /// <p> One or more words or phrases that describe the HIT, separated by commas. These words are used in searches to find HITs. </p>
    #[serde(rename = "Keywords")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub keywords: Option<String>,
    /// <p> An amount of time, in seconds, after which the HIT is no longer available for users to accept. After the lifetime of the HIT elapses, the HIT no longer appears in HIT searches, even if not all of the assignments for the HIT have been accepted. </p>
    #[serde(rename = "LifetimeInSeconds")]
    pub lifetime_in_seconds: i64,
    /// <p> The number of times the HIT can be accepted and completed before the HIT becomes unavailable. </p>
    #[serde(rename = "MaxAssignments")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub max_assignments: Option<i64>,
    /// <p> Conditions that a Worker's Qualifications must meet in order to accept the HIT. A HIT can have between zero and ten Qualification requirements. All requirements must be met in order for a Worker to accept the HIT. Additionally, other actions can be restricted using the <code>ActionsGuarded</code> field on each <code>QualificationRequirement</code> structure. </p>
    #[serde(rename = "QualificationRequirements")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub qualification_requirements: Option<Vec<QualificationRequirement>>,
    /// <p> The data the person completing the HIT uses to produce the results. </p> <p> Constraints: Must be a QuestionForm data structure, an ExternalQuestion data structure, or an HTMLQuestion data structure. The XML question data must not be larger than 64 kilobytes (65,535 bytes) in size, including whitespace. </p> <p>Either a Question parameter or a HITLayoutId parameter must be provided.</p>
    #[serde(rename = "Question")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub question: Option<String>,
    /// <p> An arbitrary data field. The RequesterAnnotation parameter lets your application attach arbitrary data to the HIT for tracking purposes. For example, this parameter could be an identifier internal to the Requester's application that corresponds with the HIT. </p> <p> The RequesterAnnotation parameter for a HIT is only visible to the Requester who created the HIT. It is not shown to the Worker, or any other Requester. </p> <p> The RequesterAnnotation parameter may be different for each HIT you submit. It does not affect how your HITs are grouped. </p>
    #[serde(rename = "RequesterAnnotation")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub requester_annotation: Option<String>,
    /// <p> The amount of money the Requester will pay a Worker for successfully completing the HIT. </p>
    #[serde(rename = "Reward")]
    pub reward: String,
    /// <p> The title of the HIT. A title should be short and descriptive about the kind of task the HIT contains. On the Amazon Mechanical Turk web site, the HIT title appears in search results, and everywhere the HIT is mentioned. </p>
    #[serde(rename = "Title")]
    pub title: String,
    /// <p><p> A unique identifier for this request which allows you to retry the call on error without creating duplicate HITs. This is useful in cases such as network timeouts where it is unclear whether or not the call succeeded on the server. If the HIT already exists in the system from a previous call using the same UniqueRequestToken, subsequent calls will return a AWS.MechanicalTurk.HitAlreadyExists error with a message containing the HITId. </p> <note> <p> Note: It is your responsibility to ensure uniqueness of the token. The unique token expires after 24 hours. Subsequent calls using the same UniqueRequestToken made after the 24 hour limit could create duplicate HITs. </p> </note></p>
    #[serde(rename = "UniqueRequestToken")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub unique_request_token: Option<String>,
}

#[derive(Default, Debug, Clone, PartialEq, Deserialize)]
#[cfg_attr(any(test, feature = "serialize_structs"), derive(Serialize))]
pub struct CreateHITResponse {
    /// <p> Contains the newly created HIT data. For a description of the HIT data structure as it appears in responses, see the HIT Data Structure documentation. </p>
    #[serde(rename = "HIT")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub hit: Option<HIT>,
}

#[derive(Default, Debug, Clone, PartialEq, Serialize)]
pub struct CreateHITTypeRequest {
    /// <p> The amount of time, in seconds, that a Worker has to complete the HIT after accepting it. If a Worker does not complete the assignment within the specified duration, the assignment is considered abandoned. If the HIT is still active (that is, its lifetime has not elapsed), the assignment becomes available for other users to find and accept. </p>
    #[serde(rename = "AssignmentDurationInSeconds")]
    pub assignment_duration_in_seconds: i64,
    /// <p> The number of seconds after an assignment for the HIT has been submitted, after which the assignment is considered Approved automatically unless the Requester explicitly rejects it. </p>
    #[serde(rename = "AutoApprovalDelayInSeconds")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub auto_approval_delay_in_seconds: Option<i64>,
    /// <p> A general description of the HIT. A description includes detailed information about the kind of task the HIT contains. On the Amazon Mechanical Turk web site, the HIT description appears in the expanded view of search results, and in the HIT and assignment screens. A good description gives the user enough information to evaluate the HIT before accepting it. </p>
    #[serde(rename = "Description")]
    pub description: String,
    /// <p> One or more words or phrases that describe the HIT, separated by commas. These words are used in searches to find HITs. </p>
    #[serde(rename = "Keywords")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub keywords: Option<String>,
    /// <p> Conditions that a Worker's Qualifications must meet in order to accept the HIT. A HIT can have between zero and ten Qualification requirements. All requirements must be met in order for a Worker to accept the HIT. Additionally, other actions can be restricted using the <code>ActionsGuarded</code> field on each <code>QualificationRequirement</code> structure. </p>
    #[serde(rename = "QualificationRequirements")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub qualification_requirements: Option<Vec<QualificationRequirement>>,
    /// <p> The amount of money the Requester will pay a Worker for successfully completing the HIT. </p>
    #[serde(rename = "Reward")]
    pub reward: String,
    /// <p> The title of the HIT. A title should be short and descriptive about the kind of task the HIT contains. On the Amazon Mechanical Turk web site, the HIT title appears in search results, and everywhere the HIT is mentioned. </p>
    #[serde(rename = "Title")]
    pub title: String,
}

#[derive(Default, Debug, Clone, PartialEq, Deserialize)]
#[cfg_attr(any(test, feature = "serialize_structs"), derive(Serialize))]
pub struct CreateHITTypeResponse {
    /// <p> The ID of the newly registered HIT type.</p>
    #[serde(rename = "HITTypeId")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub hit_type_id: Option<String>,
}

#[derive(Default, Debug, Clone, PartialEq, Serialize)]
pub struct CreateHITWithHITTypeRequest {
    /// <p> The Assignment-level Review Policy applies to the assignments under the HIT. You can specify for Mechanical Turk to take various actions based on the policy. </p>
    #[serde(rename = "AssignmentReviewPolicy")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub assignment_review_policy: Option<ReviewPolicy>,
    /// <p> The HITLayoutId allows you to use a pre-existing HIT design with placeholder values and create an additional HIT by providing those values as HITLayoutParameters. </p> <p> Constraints: Either a Question parameter or a HITLayoutId parameter must be provided. </p>
    #[serde(rename = "HITLayoutId")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub hit_layout_id: Option<String>,
    /// <p> If the HITLayoutId is provided, any placeholder values must be filled in with values using the HITLayoutParameter structure. For more information, see HITLayout. </p>
    #[serde(rename = "HITLayoutParameters")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub hit_layout_parameters: Option<Vec<HITLayoutParameter>>,
    /// <p> The HIT-level Review Policy applies to the HIT. You can specify for Mechanical Turk to take various actions based on the policy. </p>
    #[serde(rename = "HITReviewPolicy")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub hit_review_policy: Option<ReviewPolicy>,
    /// <p>The HIT type ID you want to create this HIT with.</p>
    #[serde(rename = "HITTypeId")]
    pub hit_type_id: String,
    /// <p> An amount of time, in seconds, after which the HIT is no longer available for users to accept. After the lifetime of the HIT elapses, the HIT no longer appears in HIT searches, even if not all of the assignments for the HIT have been accepted. </p>
    #[serde(rename = "LifetimeInSeconds")]
    pub lifetime_in_seconds: i64,
    /// <p> The number of times the HIT can be accepted and completed before the HIT becomes unavailable. </p>
    #[serde(rename = "MaxAssignments")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub max_assignments: Option<i64>,
    /// <p> The data the person completing the HIT uses to produce the results. </p> <p> Constraints: Must be a QuestionForm data structure, an ExternalQuestion data structure, or an HTMLQuestion data structure. The XML question data must not be larger than 64 kilobytes (65,535 bytes) in size, including whitespace. </p> <p>Either a Question parameter or a HITLayoutId parameter must be provided.</p>
    #[serde(rename = "Question")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub question: Option<String>,
    /// <p> An arbitrary data field. The RequesterAnnotation parameter lets your application attach arbitrary data to the HIT for tracking purposes. For example, this parameter could be an identifier internal to the Requester's application that corresponds with the HIT. </p> <p> The RequesterAnnotation parameter for a HIT is only visible to the Requester who created the HIT. It is not shown to the Worker, or any other Requester. </p> <p> The RequesterAnnotation parameter may be different for each HIT you submit. It does not affect how your HITs are grouped. </p>
    #[serde(rename = "RequesterAnnotation")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub requester_annotation: Option<String>,
    /// <p><p> A unique identifier for this request which allows you to retry the call on error without creating duplicate HITs. This is useful in cases such as network timeouts where it is unclear whether or not the call succeeded on the server. If the HIT already exists in the system from a previous call using the same UniqueRequestToken, subsequent calls will return a AWS.MechanicalTurk.HitAlreadyExists error with a message containing the HITId. </p> <note> <p> Note: It is your responsibility to ensure uniqueness of the token. The unique token expires after 24 hours. Subsequent calls using the same UniqueRequestToken made after the 24 hour limit could create duplicate HITs. </p> </note></p>
    #[serde(rename = "UniqueRequestToken")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub unique_request_token: Option<String>,
}

#[derive(Default, Debug, Clone, PartialEq, Deserialize)]
#[cfg_attr(any(test, feature = "serialize_structs"), derive(Serialize))]
pub struct CreateHITWithHITTypeResponse {
    /// <p> Contains the newly created HIT data. For a description of the HIT data structure as it appears in responses, see the HIT Data Structure documentation. </p>
    #[serde(rename = "HIT")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub hit: Option<HIT>,
}

#[derive(Default, Debug, Clone, PartialEq, Serialize)]
pub struct CreateQualificationTypeRequest {
    /// <p>The answers to the Qualification test specified in the Test parameter, in the form of an AnswerKey data structure.</p> <p>Constraints: Must not be longer than 65535 bytes.</p> <p>Constraints: None. If not specified, you must process Qualification requests manually.</p>
    #[serde(rename = "AnswerKey")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub answer_key: Option<String>,
    /// <p>Specifies whether requests for the Qualification type are granted immediately, without prompting the Worker with a Qualification test.</p> <p>Constraints: If the Test parameter is specified, this parameter cannot be true.</p>
    #[serde(rename = "AutoGranted")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub auto_granted: Option<bool>,
    /// <p>The Qualification value to use for automatically granted Qualifications. This parameter is used only if the AutoGranted parameter is true.</p>
    #[serde(rename = "AutoGrantedValue")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub auto_granted_value: Option<i64>,
    /// <p>A long description for the Qualification type. On the Amazon Mechanical Turk website, the long description is displayed when a Worker examines a Qualification type.</p>
    #[serde(rename = "Description")]
    pub description: String,
    /// <p>One or more words or phrases that describe the Qualification type, separated by commas. The keywords of a type make the type easier to find during a search.</p>
    #[serde(rename = "Keywords")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub keywords: Option<String>,
    /// <p> The name you give to the Qualification type. The type name is used to represent the Qualification to Workers, and to find the type using a Qualification type search. It must be unique across all of your Qualification types.</p>
    #[serde(rename = "Name")]
    pub name: String,
    /// <p>The initial status of the Qualification type.</p> <p>Constraints: Valid values are: Active | Inactive</p>
    #[serde(rename = "QualificationTypeStatus")]
    pub qualification_type_status: String,
    /// <p>The number of seconds that a Worker must wait after requesting a Qualification of the Qualification type before the worker can retry the Qualification request.</p> <p>Constraints: None. If not specified, retries are disabled and Workers can request a Qualification of this type only once, even if the Worker has not been granted the Qualification. It is not possible to disable retries for a Qualification type after it has been created with retries enabled. If you want to disable retries, you must delete existing retry-enabled Qualification type and then create a new Qualification type with retries disabled.</p>
    #[serde(rename = "RetryDelayInSeconds")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub retry_delay_in_seconds: Option<i64>,
    /// <p> The questions for the Qualification test a Worker must answer correctly to obtain a Qualification of this type. If this parameter is specified, <code>TestDurationInSeconds</code> must also be specified. </p> <p>Constraints: Must not be longer than 65535 bytes. Must be a QuestionForm data structure. This parameter cannot be specified if AutoGranted is true.</p> <p>Constraints: None. If not specified, the Worker may request the Qualification without answering any questions.</p>
    #[serde(rename = "Test")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub test: Option<String>,
    /// <p>The number of seconds the Worker has to complete the Qualification test, starting from the time the Worker requests the Qualification.</p>
    #[serde(rename = "TestDurationInSeconds")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub test_duration_in_seconds: Option<i64>,
}

#[derive(Default, Debug, Clone, PartialEq, Deserialize)]
#[cfg_attr(any(test, feature = "serialize_structs"), derive(Serialize))]
pub struct CreateQualificationTypeResponse {
    /// <p>The created Qualification type, returned as a QualificationType data structure.</p>
    #[serde(rename = "QualificationType")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub qualification_type: Option<QualificationType>,
}

#[derive(Default, Debug, Clone, PartialEq, Serialize)]
pub struct CreateWorkerBlockRequest {
    /// <p>A message explaining the reason for blocking the Worker. This parameter enables you to keep track of your Workers. The Worker does not see this message.</p>
    #[serde(rename = "Reason")]
    pub reason: String,
    /// <p>The ID of the Worker to block.</p>
    #[serde(rename = "WorkerId")]
    pub worker_id: String,
}

#[derive(Default, Debug, Clone, PartialEq, Deserialize)]
#[cfg_attr(any(test, feature = "serialize_structs"), derive(Serialize))]
pub struct CreateWorkerBlockResponse {}

#[derive(Default, Debug, Clone, PartialEq, Serialize)]
pub struct DeleteHITRequest {
    /// <p>The ID of the HIT to be deleted.</p>
    #[serde(rename = "HITId")]
    pub hit_id: String,
}

#[derive(Default, Debug, Clone, PartialEq, Deserialize)]
#[cfg_attr(any(test, feature = "serialize_structs"), derive(Serialize))]
pub struct DeleteHITResponse {}

#[derive(Default, Debug, Clone, PartialEq, Serialize)]
pub struct DeleteQualificationTypeRequest {
    /// <p>The ID of the QualificationType to dispose.</p>
    #[serde(rename = "QualificationTypeId")]
    pub qualification_type_id: String,
}

#[derive(Default, Debug, Clone, PartialEq, Deserialize)]
#[cfg_attr(any(test, feature = "serialize_structs"), derive(Serialize))]
pub struct DeleteQualificationTypeResponse {}

#[derive(Default, Debug, Clone, PartialEq, Serialize)]
pub struct DeleteWorkerBlockRequest {
    /// <p>A message that explains the reason for unblocking the Worker. The Worker does not see this message.</p>
    #[serde(rename = "Reason")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub reason: Option<String>,
    /// <p>The ID of the Worker to unblock.</p>
    #[serde(rename = "WorkerId")]
    pub worker_id: String,
}

#[derive(Default, Debug, Clone, PartialEq, Deserialize)]
#[cfg_attr(any(test, feature = "serialize_structs"), derive(Serialize))]
pub struct DeleteWorkerBlockResponse {}

#[derive(Default, Debug, Clone, PartialEq, Serialize)]
pub struct DisassociateQualificationFromWorkerRequest {
    /// <p>The ID of the Qualification type of the Qualification to be revoked.</p>
    #[serde(rename = "QualificationTypeId")]
    pub qualification_type_id: String,
    /// <p>A text message that explains why the Qualification was revoked. The user who had the Qualification sees this message.</p>
    #[serde(rename = "Reason")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub reason: Option<String>,
    /// <p>The ID of the Worker who possesses the Qualification to be revoked.</p>
    #[serde(rename = "WorkerId")]
    pub worker_id: String,
}

#[derive(Default, Debug, Clone, PartialEq, Deserialize)]
#[cfg_attr(any(test, feature = "serialize_structs"), derive(Serialize))]
pub struct DisassociateQualificationFromWorkerResponse {}

#[derive(Default, Debug, Clone, PartialEq, Serialize)]
pub struct GetAccountBalanceRequest {}

#[derive(Default, Debug, Clone, PartialEq, Deserialize)]
#[cfg_attr(any(test, feature = "serialize_structs"), derive(Serialize))]
pub struct GetAccountBalanceResponse {
    #[serde(rename = "AvailableBalance")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub available_balance: Option<String>,
    #[serde(rename = "OnHoldBalance")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub on_hold_balance: Option<String>,
}

#[derive(Default, Debug, Clone, PartialEq, Serialize)]
pub struct GetAssignmentRequest {
    /// <p>The ID of the Assignment to be retrieved.</p>
    #[serde(rename = "AssignmentId")]
    pub assignment_id: String,
}

#[derive(Default, Debug, Clone, PartialEq, Deserialize)]
#[cfg_attr(any(test, feature = "serialize_structs"), derive(Serialize))]
pub struct GetAssignmentResponse {
    /// <p> The assignment. The response includes one Assignment element. </p>
    #[serde(rename = "Assignment")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub assignment: Option<Assignment>,
    /// <p> The HIT associated with this assignment. The response includes one HIT element.</p>
    #[serde(rename = "HIT")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub hit: Option<HIT>,
}

#[derive(Default, Debug, Clone, PartialEq, Serialize)]
pub struct GetFileUploadURLRequest {
    /// <p>The ID of the assignment that contains the question with a FileUploadAnswer.</p>
    #[serde(rename = "AssignmentId")]
    pub assignment_id: String,
    /// <p>The identifier of the question with a FileUploadAnswer, as specified in the QuestionForm of the HIT.</p>
    #[serde(rename = "QuestionIdentifier")]
    pub question_identifier: String,
}

#[derive(Default, Debug, Clone, PartialEq, Deserialize)]
#[cfg_attr(any(test, feature = "serialize_structs"), derive(Serialize))]
pub struct GetFileUploadURLResponse {
    /// <p> A temporary URL for the file that the Worker uploaded for the answer. </p>
    #[serde(rename = "FileUploadURL")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub file_upload_url: Option<String>,
}

#[derive(Default, Debug, Clone, PartialEq, Serialize)]
pub struct GetHITRequest {
    /// <p>The ID of the HIT to be retrieved.</p>
    #[serde(rename = "HITId")]
    pub hit_id: String,
}

#[derive(Default, Debug, Clone, PartialEq, Deserialize)]
#[cfg_attr(any(test, feature = "serialize_structs"), derive(Serialize))]
pub struct GetHITResponse {
    /// <p> Contains the requested HIT data.</p>
    #[serde(rename = "HIT")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub hit: Option<HIT>,
}

#[derive(Default, Debug, Clone, PartialEq, Serialize)]
pub struct GetQualificationScoreRequest {
    /// <p>The ID of the QualificationType.</p>
    #[serde(rename = "QualificationTypeId")]
    pub qualification_type_id: String,
    /// <p>The ID of the Worker whose Qualification is being updated.</p>
    #[serde(rename = "WorkerId")]
    pub worker_id: String,
}

#[derive(Default, Debug, Clone, PartialEq, Deserialize)]
#[cfg_attr(any(test, feature = "serialize_structs"), derive(Serialize))]
pub struct GetQualificationScoreResponse {
    /// <p> The Qualification data structure of the Qualification assigned to a user, including the Qualification type and the value (score). </p>
    #[serde(rename = "Qualification")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub qualification: Option<Qualification>,
}

#[derive(Default, Debug, Clone, PartialEq, Serialize)]
pub struct GetQualificationTypeRequest {
    /// <p>The ID of the QualificationType.</p>
    #[serde(rename = "QualificationTypeId")]
    pub qualification_type_id: String,
}

#[derive(Default, Debug, Clone, PartialEq, Deserialize)]
#[cfg_attr(any(test, feature = "serialize_structs"), derive(Serialize))]
pub struct GetQualificationTypeResponse {
    /// <p> The returned Qualification Type</p>
    #[serde(rename = "QualificationType")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub qualification_type: Option<QualificationType>,
}

/// <p> The HIT data structure represents a single HIT, including all the information necessary for a Worker to accept and complete the HIT.</p>
#[derive(Default, Debug, Clone, PartialEq, Deserialize)]
#[cfg_attr(any(test, feature = "serialize_structs"), derive(Serialize))]
pub struct HIT {
    /// <p> The length of time, in seconds, that a Worker has to complete the HIT after accepting it.</p>
    #[serde(rename = "AssignmentDurationInSeconds")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub assignment_duration_in_seconds: Option<i64>,
    /// <p>The amount of time, in seconds, after the Worker submits an assignment for the HIT that the results are automatically approved by Amazon Mechanical Turk. This is the amount of time the Requester has to reject an assignment submitted by a Worker before the assignment is auto-approved and the Worker is paid. </p>
    #[serde(rename = "AutoApprovalDelayInSeconds")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub auto_approval_delay_in_seconds: Option<i64>,
    /// <p> The date and time the HIT was created.</p>
    #[serde(rename = "CreationTime")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub creation_time: Option<f64>,
    /// <p> A general description of the HIT.</p>
    #[serde(rename = "Description")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub description: Option<String>,
    /// <p>The date and time the HIT expires.</p>
    #[serde(rename = "Expiration")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub expiration: Option<f64>,
    /// <p> The ID of the HIT Group of this HIT.</p>
    #[serde(rename = "HITGroupId")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub hit_group_id: Option<String>,
    /// <p> A unique identifier for the HIT.</p>
    #[serde(rename = "HITId")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub hit_id: Option<String>,
    /// <p> The ID of the HIT Layout of this HIT.</p>
    #[serde(rename = "HITLayoutId")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub hit_layout_id: Option<String>,
    /// <p> Indicates the review status of the HIT. Valid Values are NotReviewed | MarkedForReview | ReviewedAppropriate | ReviewedInappropriate.</p>
    #[serde(rename = "HITReviewStatus")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub hit_review_status: Option<String>,
    /// <p>The status of the HIT and its assignments. Valid Values are Assignable | Unassignable | Reviewable | Reviewing | Disposed. </p>
    #[serde(rename = "HITStatus")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub hit_status: Option<String>,
    /// <p>The ID of the HIT type of this HIT</p>
    #[serde(rename = "HITTypeId")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub hit_type_id: Option<String>,
    /// <p> One or more words or phrases that describe the HIT, separated by commas. Search terms similar to the keywords of a HIT are more likely to have the HIT in the search results.</p>
    #[serde(rename = "Keywords")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub keywords: Option<String>,
    /// <p>The number of times the HIT can be accepted and completed before the HIT becomes unavailable. </p>
    #[serde(rename = "MaxAssignments")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub max_assignments: Option<i64>,
    /// <p> The number of assignments for this HIT that are available for Workers to accept.</p>
    #[serde(rename = "NumberOfAssignmentsAvailable")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub number_of_assignments_available: Option<i64>,
    /// <p> The number of assignments for this HIT that have been approved or rejected.</p>
    #[serde(rename = "NumberOfAssignmentsCompleted")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub number_of_assignments_completed: Option<i64>,
    /// <p> The number of assignments for this HIT that are being previewed or have been accepted by Workers, but have not yet been submitted, returned, or abandoned.</p>
    #[serde(rename = "NumberOfAssignmentsPending")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub number_of_assignments_pending: Option<i64>,
    /// <p> Conditions that a Worker's Qualifications must meet in order to accept the HIT. A HIT can have between zero and ten Qualification requirements. All requirements must be met in order for a Worker to accept the HIT. Additionally, other actions can be restricted using the <code>ActionsGuarded</code> field on each <code>QualificationRequirement</code> structure. </p>
    #[serde(rename = "QualificationRequirements")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub qualification_requirements: Option<Vec<QualificationRequirement>>,
    /// <p> The data the Worker completing the HIT uses produce the results. This is either either a QuestionForm, HTMLQuestion or an ExternalQuestion data structure.</p>
    #[serde(rename = "Question")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub question: Option<String>,
    /// <p> An arbitrary data field the Requester who created the HIT can use. This field is visible only to the creator of the HIT.</p>
    #[serde(rename = "RequesterAnnotation")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub requester_annotation: Option<String>,
    #[serde(rename = "Reward")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub reward: Option<String>,
    /// <p> The title of the HIT.</p>
    #[serde(rename = "Title")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub title: Option<String>,
}

/// <p> The HITLayoutParameter data structure defines parameter values used with a HITLayout. A HITLayout is a reusable Amazon Mechanical Turk project template used to provide Human Intelligence Task (HIT) question data for CreateHIT. </p>
#[derive(Default, Debug, Clone, PartialEq, Serialize)]
pub struct HITLayoutParameter {
    /// <p> The name of the parameter in the HITLayout. </p>
    #[serde(rename = "Name")]
    pub name: String,
    /// <p>The value substituted for the parameter referenced in the HITLayout. </p>
    #[serde(rename = "Value")]
    pub value: String,
}

#[derive(Default, Debug, Clone, PartialEq, Serialize)]
pub struct ListAssignmentsForHITRequest {
    /// <p>The status of the assignments to return: Submitted | Approved | Rejected</p>
    #[serde(rename = "AssignmentStatuses")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub assignment_statuses: Option<Vec<String>>,
    /// <p>The ID of the HIT.</p>
    #[serde(rename = "HITId")]
    pub hit_id: String,
    #[serde(rename = "MaxResults")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub max_results: Option<i64>,
    /// <p>Pagination token</p>
    #[serde(rename = "NextToken")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub next_token: Option<String>,
}

#[derive(Default, Debug, Clone, PartialEq, Deserialize)]
#[cfg_attr(any(test, feature = "serialize_structs"), derive(Serialize))]
pub struct ListAssignmentsForHITResponse {
    /// <p> The collection of Assignment data structures returned by this call.</p>
    #[serde(rename = "Assignments")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub assignments: Option<Vec<Assignment>>,
    #[serde(rename = "NextToken")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub next_token: Option<String>,
    /// <p> The number of assignments on the page in the filtered results list, equivalent to the number of assignments returned by this call.</p>
    #[serde(rename = "NumResults")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub num_results: Option<i64>,
}

#[derive(Default, Debug, Clone, PartialEq, Serialize)]
pub struct ListBonusPaymentsRequest {
    /// <p>The ID of the assignment associated with the bonus payments to retrieve. If specified, only bonus payments for the given assignment are returned. Either the HITId parameter or the AssignmentId parameter must be specified</p>
    #[serde(rename = "AssignmentId")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub assignment_id: Option<String>,
    /// <p>The ID of the HIT associated with the bonus payments to retrieve. If not specified, all bonus payments for all assignments for the given HIT are returned. Either the HITId parameter or the AssignmentId parameter must be specified</p>
    #[serde(rename = "HITId")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub hit_id: Option<String>,
    #[serde(rename = "MaxResults")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub max_results: Option<i64>,
    /// <p>Pagination token</p>
    #[serde(rename = "NextToken")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub next_token: Option<String>,
}

#[derive(Default, Debug, Clone, PartialEq, Deserialize)]
#[cfg_attr(any(test, feature = "serialize_structs"), derive(Serialize))]
pub struct ListBonusPaymentsResponse {
    /// <p>A successful request to the ListBonusPayments operation returns a list of BonusPayment objects. </p>
    #[serde(rename = "BonusPayments")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub bonus_payments: Option<Vec<BonusPayment>>,
    #[serde(rename = "NextToken")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub next_token: Option<String>,
    /// <p>The number of bonus payments on this page in the filtered results list, equivalent to the number of bonus payments being returned by this call. </p>
    #[serde(rename = "NumResults")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub num_results: Option<i64>,
}

#[derive(Default, Debug, Clone, PartialEq, Serialize)]
pub struct ListHITsForQualificationTypeRequest {
    /// <p> Limit the number of results returned. </p>
    #[serde(rename = "MaxResults")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub max_results: Option<i64>,
    /// <p>Pagination Token</p>
    #[serde(rename = "NextToken")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub next_token: Option<String>,
    /// <p> The ID of the Qualification type to use when querying HITs. </p>
    #[serde(rename = "QualificationTypeId")]
    pub qualification_type_id: String,
}

#[derive(Default, Debug, Clone, PartialEq, Deserialize)]
#[cfg_attr(any(test, feature = "serialize_structs"), derive(Serialize))]
pub struct ListHITsForQualificationTypeResponse {
    /// <p> The list of HIT elements returned by the query.</p>
    #[serde(rename = "HITs")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub hi_ts: Option<Vec<HIT>>,
    #[serde(rename = "NextToken")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub next_token: Option<String>,
    /// <p> The number of HITs on this page in the filtered results list, equivalent to the number of HITs being returned by this call. </p>
    #[serde(rename = "NumResults")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub num_results: Option<i64>,
}

#[derive(Default, Debug, Clone, PartialEq, Serialize)]
pub struct ListHITsRequest {
    #[serde(rename = "MaxResults")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub max_results: Option<i64>,
    /// <p>Pagination token</p>
    #[serde(rename = "NextToken")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub next_token: Option<String>,
}

#[derive(Default, Debug, Clone, PartialEq, Deserialize)]
#[cfg_attr(any(test, feature = "serialize_structs"), derive(Serialize))]
pub struct ListHITsResponse {
    /// <p> The list of HIT elements returned by the query.</p>
    #[serde(rename = "HITs")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub hi_ts: Option<Vec<HIT>>,
    #[serde(rename = "NextToken")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub next_token: Option<String>,
    /// <p>The number of HITs on this page in the filtered results list, equivalent to the number of HITs being returned by this call.</p>
    #[serde(rename = "NumResults")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub num_results: Option<i64>,
}

#[derive(Default, Debug, Clone, PartialEq, Serialize)]
pub struct ListQualificationRequestsRequest {
    /// <p> The maximum number of results to return in a single call. </p>
    #[serde(rename = "MaxResults")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub max_results: Option<i64>,
    #[serde(rename = "NextToken")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub next_token: Option<String>,
    /// <p>The ID of the QualificationType.</p>
    #[serde(rename = "QualificationTypeId")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub qualification_type_id: Option<String>,
}

#[derive(Default, Debug, Clone, PartialEq, Deserialize)]
#[cfg_attr(any(test, feature = "serialize_structs"), derive(Serialize))]
pub struct ListQualificationRequestsResponse {
    #[serde(rename = "NextToken")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub next_token: Option<String>,
    /// <p>The number of Qualification requests on this page in the filtered results list, equivalent to the number of Qualification requests being returned by this call.</p>
    #[serde(rename = "NumResults")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub num_results: Option<i64>,
    /// <p>The Qualification request. The response includes one QualificationRequest element for each Qualification request returned by the query.</p>
    #[serde(rename = "QualificationRequests")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub qualification_requests: Option<Vec<QualificationRequest>>,
}

#[derive(Default, Debug, Clone, PartialEq, Serialize)]
pub struct ListQualificationTypesRequest {
    /// <p> The maximum number of results to return in a single call. </p>
    #[serde(rename = "MaxResults")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub max_results: Option<i64>,
    /// <p> Specifies that only Qualification types that the Requester created are returned. If false, the operation returns all Qualification types. </p>
    #[serde(rename = "MustBeOwnedByCaller")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub must_be_owned_by_caller: Option<bool>,
    /// <p>Specifies that only Qualification types that a user can request through the Amazon Mechanical Turk web site, such as by taking a Qualification test, are returned as results of the search. Some Qualification types, such as those assigned automatically by the system, cannot be requested directly by users. If false, all Qualification types, including those managed by the system, are considered. Valid values are True | False. </p>
    #[serde(rename = "MustBeRequestable")]
    pub must_be_requestable: bool,
    #[serde(rename = "NextToken")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub next_token: Option<String>,
    /// <p> A text query against all of the searchable attributes of Qualification types. </p>
    #[serde(rename = "Query")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub query: Option<String>,
}

#[derive(Default, Debug, Clone, PartialEq, Deserialize)]
#[cfg_attr(any(test, feature = "serialize_structs"), derive(Serialize))]
pub struct ListQualificationTypesResponse {
    #[serde(rename = "NextToken")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub next_token: Option<String>,
    /// <p> The number of Qualification types on this page in the filtered results list, equivalent to the number of types this operation returns. </p>
    #[serde(rename = "NumResults")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub num_results: Option<i64>,
    /// <p> The list of QualificationType elements returned by the query. </p>
    #[serde(rename = "QualificationTypes")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub qualification_types: Option<Vec<QualificationType>>,
}

#[derive(Default, Debug, Clone, PartialEq, Serialize)]
pub struct ListReviewPolicyResultsForHITRequest {
    /// <p>The unique identifier of the HIT to retrieve review results for.</p>
    #[serde(rename = "HITId")]
    pub hit_id: String,
    /// <p>Limit the number of results returned.</p>
    #[serde(rename = "MaxResults")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub max_results: Option<i64>,
    /// <p>Pagination token</p>
    #[serde(rename = "NextToken")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub next_token: Option<String>,
    /// <p> The Policy Level(s) to retrieve review results for - HIT or Assignment. If omitted, the default behavior is to retrieve all data for both policy levels. For a list of all the described policies, see Review Policies. </p>
    #[serde(rename = "PolicyLevels")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub policy_levels: Option<Vec<String>>,
    /// <p> Specify if the operation should retrieve a list of the actions taken executing the Review Policies and their outcomes. </p>
    #[serde(rename = "RetrieveActions")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub retrieve_actions: Option<bool>,
    /// <p> Specify if the operation should retrieve a list of the results computed by the Review Policies. </p>
    #[serde(rename = "RetrieveResults")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub retrieve_results: Option<bool>,
}

#[derive(Default, Debug, Clone, PartialEq, Deserialize)]
#[cfg_attr(any(test, feature = "serialize_structs"), derive(Serialize))]
pub struct ListReviewPolicyResultsForHITResponse {
    /// <p> The name of the Assignment-level Review Policy. This contains only the PolicyName element. </p>
    #[serde(rename = "AssignmentReviewPolicy")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub assignment_review_policy: Option<ReviewPolicy>,
    /// <p> Contains both ReviewResult and ReviewAction elements for an Assignment. </p>
    #[serde(rename = "AssignmentReviewReport")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub assignment_review_report: Option<ReviewReport>,
    /// <p>The HITId of the HIT for which results have been returned.</p>
    #[serde(rename = "HITId")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub hit_id: Option<String>,
    /// <p>The name of the HIT-level Review Policy. This contains only the PolicyName element.</p>
    #[serde(rename = "HITReviewPolicy")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub hit_review_policy: Option<ReviewPolicy>,
    /// <p>Contains both ReviewResult and ReviewAction elements for a particular HIT. </p>
    #[serde(rename = "HITReviewReport")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub hit_review_report: Option<ReviewReport>,
    #[serde(rename = "NextToken")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub next_token: Option<String>,
}

#[derive(Default, Debug, Clone, PartialEq, Serialize)]
pub struct ListReviewableHITsRequest {
    /// <p> The ID of the HIT type of the HITs to consider for the query. If not specified, all HITs for the Reviewer are considered </p>
    #[serde(rename = "HITTypeId")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub hit_type_id: Option<String>,
    /// <p> Limit the number of results returned. </p>
    #[serde(rename = "MaxResults")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub max_results: Option<i64>,
    /// <p>Pagination Token</p>
    #[serde(rename = "NextToken")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub next_token: Option<String>,
    /// <p> Can be either <code>Reviewable</code> or <code>Reviewing</code>. Reviewable is the default value. </p>
    #[serde(rename = "Status")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub status: Option<String>,
}

#[derive(Default, Debug, Clone, PartialEq, Deserialize)]
#[cfg_attr(any(test, feature = "serialize_structs"), derive(Serialize))]
pub struct ListReviewableHITsResponse {
    /// <p> The list of HIT elements returned by the query.</p>
    #[serde(rename = "HITs")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub hi_ts: Option<Vec<HIT>>,
    #[serde(rename = "NextToken")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub next_token: Option<String>,
    /// <p> The number of HITs on this page in the filtered results list, equivalent to the number of HITs being returned by this call. </p>
    #[serde(rename = "NumResults")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub num_results: Option<i64>,
}

#[derive(Default, Debug, Clone, PartialEq, Serialize)]
pub struct ListWorkerBlocksRequest {
    #[serde(rename = "MaxResults")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub max_results: Option<i64>,
    /// <p>Pagination token</p>
    #[serde(rename = "NextToken")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub next_token: Option<String>,
}

#[derive(Default, Debug, Clone, PartialEq, Deserialize)]
#[cfg_attr(any(test, feature = "serialize_structs"), derive(Serialize))]
pub struct ListWorkerBlocksResponse {
    #[serde(rename = "NextToken")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub next_token: Option<String>,
    /// <p> The number of assignments on the page in the filtered results list, equivalent to the number of assignments returned by this call.</p>
    #[serde(rename = "NumResults")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub num_results: Option<i64>,
    /// <p> The list of WorkerBlocks, containing the collection of Worker IDs and reasons for blocking.</p>
    #[serde(rename = "WorkerBlocks")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub worker_blocks: Option<Vec<WorkerBlock>>,
}

#[derive(Default, Debug, Clone, PartialEq, Serialize)]
pub struct ListWorkersWithQualificationTypeRequest {
    /// <p> Limit the number of results returned. </p>
    #[serde(rename = "MaxResults")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub max_results: Option<i64>,
    /// <p>Pagination Token</p>
    #[serde(rename = "NextToken")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub next_token: Option<String>,
    /// <p>The ID of the Qualification type of the Qualifications to return.</p>
    #[serde(rename = "QualificationTypeId")]
    pub qualification_type_id: String,
    /// <p> The status of the Qualifications to return. Can be <code>Granted | Revoked</code>. </p>
    #[serde(rename = "Status")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub status: Option<String>,
}

#[derive(Default, Debug, Clone, PartialEq, Deserialize)]
#[cfg_attr(any(test, feature = "serialize_structs"), derive(Serialize))]
pub struct ListWorkersWithQualificationTypeResponse {
    #[serde(rename = "NextToken")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub next_token: Option<String>,
    /// <p> The number of Qualifications on this page in the filtered results list, equivalent to the number of Qualifications being returned by this call.</p>
    #[serde(rename = "NumResults")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub num_results: Option<i64>,
    /// <p> The list of Qualification elements returned by this call. </p>
    #[serde(rename = "Qualifications")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub qualifications: Option<Vec<Qualification>>,
}

/// <p>The Locale data structure represents a geographical region or location.</p>
#[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct Locale {
    /// <p> The country of the locale. Must be a valid ISO 3166 country code. For example, the code US refers to the United States of America. </p>
    #[serde(rename = "Country")]
    pub country: String,
    /// <p>The state or subdivision of the locale. A valid ISO 3166-2 subdivision code. For example, the code WA refers to the state of Washington.</p>
    #[serde(rename = "Subdivision")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub subdivision: Option<String>,
}

/// <p>The NotificationSpecification data structure describes a HIT event notification for a HIT type.</p>
#[derive(Default, Debug, Clone, PartialEq, Serialize)]
pub struct NotificationSpecification {
    /// <p><p> The target for notification messages. The Destination’s format is determined by the specified Transport: </p> <ul> <li> <p>When Transport is Email, the Destination is your email address.</p> </li> <li> <p>When Transport is SQS, the Destination is your queue URL.</p> </li> <li> <p>When Transport is SNS, the Destination is the ARN of your topic.</p> </li> </ul></p>
    #[serde(rename = "Destination")]
    pub destination: String,
    /// <p> The list of events that should cause notifications to be sent. Valid Values: AssignmentAccepted | AssignmentAbandoned | AssignmentReturned | AssignmentSubmitted | AssignmentRejected | AssignmentApproved | HITCreated | HITExtended | HITDisposed | HITReviewable | HITExpired | Ping. The Ping event is only valid for the SendTestEventNotification operation. </p>
    #[serde(rename = "EventTypes")]
    pub event_types: Vec<String>,
    /// <p> The method Amazon Mechanical Turk uses to send the notification. Valid Values: Email | SQS | SNS. </p>
    #[serde(rename = "Transport")]
    pub transport: String,
    /// <p>The version of the Notification API to use. Valid value is 2006-05-05.</p>
    #[serde(rename = "Version")]
    pub version: String,
}

/// <p> When MTurk encounters an issue with notifying the Workers you specified, it returns back this object with failure details. </p>
#[derive(Default, Debug, Clone, PartialEq, Deserialize)]
#[cfg_attr(any(test, feature = "serialize_structs"), derive(Serialize))]
pub struct NotifyWorkersFailureStatus {
    /// <p> Encoded value for the failure type. </p>
    #[serde(rename = "NotifyWorkersFailureCode")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub notify_workers_failure_code: Option<String>,
    /// <p> A message detailing the reason the Worker could not be notified. </p>
    #[serde(rename = "NotifyWorkersFailureMessage")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub notify_workers_failure_message: Option<String>,
    /// <p> The ID of the Worker.</p>
    #[serde(rename = "WorkerId")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub worker_id: Option<String>,
}

#[derive(Default, Debug, Clone, PartialEq, Serialize)]
pub struct NotifyWorkersRequest {
    /// <p>The text of the email message to send. Can include up to 4,096 characters</p>
    #[serde(rename = "MessageText")]
    pub message_text: String,
    /// <p>The subject line of the email message to send. Can include up to 200 characters.</p>
    #[serde(rename = "Subject")]
    pub subject: String,
    /// <p>A list of Worker IDs you wish to notify. You can notify upto 100 Workers at a time.</p>
    #[serde(rename = "WorkerIds")]
    pub worker_ids: Vec<String>,
}

#[derive(Default, Debug, Clone, PartialEq, Deserialize)]
#[cfg_attr(any(test, feature = "serialize_structs"), derive(Serialize))]
pub struct NotifyWorkersResponse {
    /// <p> When MTurk sends notifications to the list of Workers, it returns back any failures it encounters in this list of NotifyWorkersFailureStatus objects. </p>
    #[serde(rename = "NotifyWorkersFailureStatuses")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub notify_workers_failure_statuses: Option<Vec<NotifyWorkersFailureStatus>>,
}

/// <p> This data structure is the data type for the AnswerKey parameter of the ScoreMyKnownAnswers/2011-09-01 Review Policy. </p>
#[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct ParameterMapEntry {
    /// <p> The QuestionID from the HIT that is used to identify which question requires Mechanical Turk to score as part of the ScoreMyKnownAnswers/2011-09-01 Review Policy. </p>
    #[serde(rename = "Key")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub key: Option<String>,
    /// <p> The list of answers to the question specified in the MapEntry Key element. The Worker must match all values in order for the answer to be scored correctly. </p>
    #[serde(rename = "Values")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub values: Option<Vec<String>>,
}

/// <p> Name of the parameter from the Review policy. </p>
#[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct PolicyParameter {
    /// <p> Name of the parameter from the list of Review Polices. </p>
    #[serde(rename = "Key")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub key: Option<String>,
    /// <p> List of ParameterMapEntry objects. </p>
    #[serde(rename = "MapEntries")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub map_entries: Option<Vec<ParameterMapEntry>>,
    /// <p> The list of values of the Parameter</p>
    #[serde(rename = "Values")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub values: Option<Vec<String>>,
}

/// <p>The Qualification data structure represents a Qualification assigned to a user, including the Qualification type and the value (score).</p>
#[derive(Default, Debug, Clone, PartialEq, Deserialize)]
#[cfg_attr(any(test, feature = "serialize_structs"), derive(Serialize))]
pub struct Qualification {
    /// <p> The date and time the Qualification was granted to the Worker. If the Worker's Qualification was revoked, and then re-granted based on a new Qualification request, GrantTime is the date and time of the last call to the AcceptQualificationRequest operation.</p>
    #[serde(rename = "GrantTime")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub grant_time: Option<f64>,
    /// <p> The value (score) of the Qualification, if the Qualification has an integer value.</p>
    #[serde(rename = "IntegerValue")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub integer_value: Option<i64>,
    #[serde(rename = "LocaleValue")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub locale_value: Option<Locale>,
    /// <p> The ID of the Qualification type for the Qualification.</p>
    #[serde(rename = "QualificationTypeId")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub qualification_type_id: Option<String>,
    /// <p> The status of the Qualification. Valid values are Granted | Revoked.</p>
    #[serde(rename = "Status")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub status: Option<String>,
    /// <p> The ID of the Worker who possesses the Qualification. </p>
    #[serde(rename = "WorkerId")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub worker_id: Option<String>,
}

/// <p> The QualificationRequest data structure represents a request a Worker has made for a Qualification. </p>
#[derive(Default, Debug, Clone, PartialEq, Deserialize)]
#[cfg_attr(any(test, feature = "serialize_structs"), derive(Serialize))]
pub struct QualificationRequest {
    /// <p> The Worker's answers for the Qualification type's test contained in a QuestionFormAnswers document, if the type has a test and the Worker has submitted answers. If the Worker does not provide any answers, Answer may be empty. </p>
    #[serde(rename = "Answer")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub answer: Option<String>,
    /// <p>The ID of the Qualification request, a unique identifier generated when the request was submitted. </p>
    #[serde(rename = "QualificationRequestId")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub qualification_request_id: Option<String>,
    /// <p> The ID of the Qualification type the Worker is requesting, as returned by the CreateQualificationType operation. </p>
    #[serde(rename = "QualificationTypeId")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub qualification_type_id: Option<String>,
    /// <p>The date and time the Qualification request had a status of Submitted. This is either the time the Worker submitted answers for a Qualification test, or the time the Worker requested the Qualification if the Qualification type does not have a test. </p>
    #[serde(rename = "SubmitTime")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub submit_time: Option<f64>,
    /// <p> The contents of the Qualification test that was presented to the Worker, if the type has a test and the Worker has submitted answers. This value is identical to the QuestionForm associated with the Qualification type at the time the Worker requests the Qualification.</p>
    #[serde(rename = "Test")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub test: Option<String>,
    /// <p> The ID of the Worker requesting the Qualification.</p>
    #[serde(rename = "WorkerId")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub worker_id: Option<String>,
}

/// <p> The QualificationRequirement data structure describes a Qualification that a Worker must have before the Worker is allowed to accept a HIT. A requirement may optionally state that a Worker must have the Qualification in order to preview the HIT, or see the HIT in search results. </p>
#[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct QualificationRequirement {
    /// <p> Setting this attribute prevents Workers whose Qualifications do not meet this QualificationRequirement from taking the specified action. Valid arguments include "Accept" (Worker cannot accept the HIT, but can preview the HIT and see it in their search results), "PreviewAndAccept" (Worker cannot accept or preview the HIT, but can see the HIT in their search results), and "DiscoverPreviewAndAccept" (Worker cannot accept, preview, or see the HIT in their search results). It's possible for you to create a HIT with multiple QualificationRequirements (which can have different values for the ActionGuarded attribute). In this case, the Worker is only permitted to perform an action when they have met all QualificationRequirements guarding the action. The actions in the order of least restrictive to most restrictive are Discover, Preview and Accept. For example, if a Worker meets all QualificationRequirements that are set to DiscoverPreviewAndAccept, but do not meet all requirements that are set with PreviewAndAccept, then the Worker will be able to Discover, i.e. see the HIT in their search result, but will not be able to Preview or Accept the HIT. ActionsGuarded should not be used in combination with the <code>RequiredToPreview</code> field. </p>
    #[serde(rename = "ActionsGuarded")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub actions_guarded: Option<String>,
    /// <p>The kind of comparison to make against a Qualification's value. You can compare a Qualification's value to an IntegerValue to see if it is LessThan, LessThanOrEqualTo, GreaterThan, GreaterThanOrEqualTo, EqualTo, or NotEqualTo the IntegerValue. You can compare it to a LocaleValue to see if it is EqualTo, or NotEqualTo the LocaleValue. You can check to see if the value is In or NotIn a set of IntegerValue or LocaleValue values. Lastly, a Qualification requirement can also test if a Qualification Exists or DoesNotExist in the user's profile, regardless of its value. </p>
    #[serde(rename = "Comparator")]
    pub comparator: String,
    /// <p> The integer value to compare against the Qualification's value. IntegerValue must not be present if Comparator is Exists or DoesNotExist. IntegerValue can only be used if the Qualification type has an integer value; it cannot be used with the Worker_Locale QualificationType ID. When performing a set comparison by using the In or the NotIn comparator, you can use up to 15 IntegerValue elements in a QualificationRequirement data structure. </p>
    #[serde(rename = "IntegerValues")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub integer_values: Option<Vec<i64>>,
    /// <p> The locale value to compare against the Qualification's value. The local value must be a valid ISO 3166 country code or supports ISO 3166-2 subdivisions. LocaleValue can only be used with a Worker_Locale QualificationType ID. LocaleValue can only be used with the EqualTo, NotEqualTo, In, and NotIn comparators. You must only use a single LocaleValue element when using the EqualTo or NotEqualTo comparators. When performing a set comparison by using the In or the NotIn comparator, you can use up to 30 LocaleValue elements in a QualificationRequirement data structure. </p>
    #[serde(rename = "LocaleValues")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub locale_values: Option<Vec<Locale>>,
    /// <p> The ID of the Qualification type for the requirement.</p>
    #[serde(rename = "QualificationTypeId")]
    pub qualification_type_id: String,
}

/// <p> The QualificationType data structure represents a Qualification type, a description of a property of a Worker that must match the requirements of a HIT for the Worker to be able to accept the HIT. The type also describes how a Worker can obtain a Qualification of that type, such as through a Qualification test. </p>
#[derive(Default, Debug, Clone, PartialEq, Deserialize)]
#[cfg_attr(any(test, feature = "serialize_structs"), derive(Serialize))]
pub struct QualificationType {
    /// <p>The answers to the Qualification test specified in the Test parameter.</p>
    #[serde(rename = "AnswerKey")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub answer_key: Option<String>,
    /// <p>Specifies that requests for the Qualification type are granted immediately, without prompting the Worker with a Qualification test. Valid values are True | False.</p>
    #[serde(rename = "AutoGranted")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub auto_granted: Option<bool>,
    /// <p> The Qualification integer value to use for automatically granted Qualifications, if AutoGranted is true. This is 1 by default. </p>
    #[serde(rename = "AutoGrantedValue")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub auto_granted_value: Option<i64>,
    /// <p> The date and time the Qualification type was created. </p>
    #[serde(rename = "CreationTime")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub creation_time: Option<f64>,
    /// <p> A long description for the Qualification type. </p>
    #[serde(rename = "Description")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub description: Option<String>,
    /// <p> Specifies whether the Qualification type is one that a user can request through the Amazon Mechanical Turk web site, such as by taking a Qualification test. This value is False for Qualifications assigned automatically by the system. Valid values are True | False. </p>
    #[serde(rename = "IsRequestable")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub is_requestable: Option<bool>,
    /// <p> One or more words or phrases that describe theQualification type, separated by commas. The Keywords make the type easier to find using a search. </p>
    #[serde(rename = "Keywords")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub keywords: Option<String>,
    /// <p> The name of the Qualification type. The type name is used to identify the type, and to find the type using a Qualification type search. </p>
    #[serde(rename = "Name")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
    /// <p> A unique identifier for the Qualification type. A Qualification type is given a Qualification type ID when you call the CreateQualificationType operation. </p>
    #[serde(rename = "QualificationTypeId")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub qualification_type_id: Option<String>,
    /// <p> The status of the Qualification type. A Qualification type's status determines if users can apply to receive a Qualification of this type, and if HITs can be created with requirements based on this type. Valid values are Active | Inactive. </p>
    #[serde(rename = "QualificationTypeStatus")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub qualification_type_status: Option<String>,
    /// <p> The amount of time, in seconds, Workers must wait after taking the Qualification test before they can take it again. Workers can take a Qualification test multiple times if they were not granted the Qualification from a previous attempt, or if the test offers a gradient score and they want a better score. If not specified, retries are disabled and Workers can request a Qualification only once. </p>
    #[serde(rename = "RetryDelayInSeconds")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub retry_delay_in_seconds: Option<i64>,
    /// <p> The questions for a Qualification test associated with this Qualification type that a user can take to obtain a Qualification of this type. This parameter must be specified if AnswerKey is present. A Qualification type cannot have both a specified Test parameter and an AutoGranted value of true. </p>
    #[serde(rename = "Test")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub test: Option<String>,
    /// <p> The amount of time, in seconds, given to a Worker to complete the Qualification test, beginning from the time the Worker requests the Qualification. </p>
    #[serde(rename = "TestDurationInSeconds")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub test_duration_in_seconds: Option<i64>,
}

#[derive(Default, Debug, Clone, PartialEq, Serialize)]
pub struct RejectAssignmentRequest {
    /// <p> The ID of the assignment. The assignment must correspond to a HIT created by the Requester. </p>
    #[serde(rename = "AssignmentId")]
    pub assignment_id: String,
    /// <p> A message for the Worker, which the Worker can see in the Status section of the web site. </p>
    #[serde(rename = "RequesterFeedback")]
    pub requester_feedback: String,
}

#[derive(Default, Debug, Clone, PartialEq, Deserialize)]
#[cfg_attr(any(test, feature = "serialize_structs"), derive(Serialize))]
pub struct RejectAssignmentResponse {}

#[derive(Default, Debug, Clone, PartialEq, Serialize)]
pub struct RejectQualificationRequestRequest {
    /// <p> The ID of the Qualification request, as returned by the <code>ListQualificationRequests</code> operation. </p>
    #[serde(rename = "QualificationRequestId")]
    pub qualification_request_id: String,
    /// <p>A text message explaining why the request was rejected, to be shown to the Worker who made the request.</p>
    #[serde(rename = "Reason")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub reason: Option<String>,
}

#[derive(Default, Debug, Clone, PartialEq, Deserialize)]
#[cfg_attr(any(test, feature = "serialize_structs"), derive(Serialize))]
pub struct RejectQualificationRequestResponse {}

/// <p> Both the AssignmentReviewReport and the HITReviewReport elements contains the ReviewActionDetail data structure. This structure is returned multiple times for each action specified in the Review Policy. </p>
#[derive(Default, Debug, Clone, PartialEq, Deserialize)]
#[cfg_attr(any(test, feature = "serialize_structs"), derive(Serialize))]
pub struct ReviewActionDetail {
    /// <p>The unique identifier for the action.</p>
    #[serde(rename = "ActionId")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub action_id: Option<String>,
    /// <p> The nature of the action itself. The Review Policy is responsible for examining the HIT and Assignments, emitting results, and deciding which other actions will be necessary. </p>
    #[serde(rename = "ActionName")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub action_name: Option<String>,
    /// <p> The date when the action was completed.</p>
    #[serde(rename = "CompleteTime")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub complete_time: Option<f64>,
    /// <p> Present only when the Results have a FAILED Status.</p>
    #[serde(rename = "ErrorCode")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub error_code: Option<String>,
    /// <p> A description of the outcome of the review.</p>
    #[serde(rename = "Result")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub result: Option<String>,
    /// <p> The current disposition of the action: INTENDED, SUCCEEDED, FAILED, or CANCELLED. </p>
    #[serde(rename = "Status")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub status: Option<String>,
    /// <p> The specific HITId or AssignmentID targeted by the action.</p>
    #[serde(rename = "TargetId")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub target_id: Option<String>,
    /// <p> The type of object in TargetId.</p>
    #[serde(rename = "TargetType")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub target_type: Option<String>,
}

/// <p> HIT Review Policy data structures represent HIT review policies, which you specify when you create a HIT. </p>
#[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct ReviewPolicy {
    /// <p>Name of the parameter from the Review policy.</p>
    #[serde(rename = "Parameters")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub parameters: Option<Vec<PolicyParameter>>,
    /// <p> Name of a Review Policy: SimplePlurality/2011-09-01 or ScoreMyKnownAnswers/2011-09-01 </p>
    #[serde(rename = "PolicyName")]
    pub policy_name: String,
}

/// <p> Contains both ReviewResult and ReviewAction elements for a particular HIT. </p>
#[derive(Default, Debug, Clone, PartialEq, Deserialize)]
#[cfg_attr(any(test, feature = "serialize_structs"), derive(Serialize))]
pub struct ReviewReport {
    /// <p> A list of ReviewAction objects for each action specified in the Review Policy. </p>
    #[serde(rename = "ReviewActions")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub review_actions: Option<Vec<ReviewActionDetail>>,
    /// <p> A list of ReviewResults objects for each action specified in the Review Policy. </p>
    #[serde(rename = "ReviewResults")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub review_results: Option<Vec<ReviewResultDetail>>,
}

/// <p> This data structure is returned multiple times for each result specified in the Review Policy. </p>
#[derive(Default, Debug, Clone, PartialEq, Deserialize)]
#[cfg_attr(any(test, feature = "serialize_structs"), derive(Serialize))]
pub struct ReviewResultDetail {
    /// <p> A unique identifier of the Review action result. </p>
    #[serde(rename = "ActionId")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub action_id: Option<String>,
    /// <p> Key identifies the particular piece of reviewed information. </p>
    #[serde(rename = "Key")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub key: Option<String>,
    /// <p> Specifies the QuestionId the result is describing. Depending on whether the TargetType is a HIT or Assignment this results could specify multiple values. If TargetType is HIT and QuestionId is absent, then the result describes results of the HIT, including the HIT agreement score. If ObjectType is Assignment and QuestionId is absent, then the result describes the Worker's performance on the HIT. </p>
    #[serde(rename = "QuestionId")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub question_id: Option<String>,
    /// <p>The HITID or AssignmentId about which this result was taken. Note that HIT-level Review Policies will often emit results about both the HIT itself and its Assignments, while Assignment-level review policies generally only emit results about the Assignment itself. </p>
    #[serde(rename = "SubjectId")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub subject_id: Option<String>,
    /// <p> The type of the object from the SubjectId field.</p>
    #[serde(rename = "SubjectType")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub subject_type: Option<String>,
    /// <p> The values of Key provided by the review policies you have selected. </p>
    #[serde(rename = "Value")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub value: Option<String>,
}

#[derive(Default, Debug, Clone, PartialEq, Serialize)]
pub struct SendBonusRequest {
    /// <p>The ID of the assignment for which this bonus is paid.</p>
    #[serde(rename = "AssignmentId")]
    pub assignment_id: String,
    /// <p> The Bonus amount is a US Dollar amount specified using a string (for example, "5" represents $5.00 USD and "101.42" represents $101.42 USD). Do not include currency symbols or currency codes. </p>
    #[serde(rename = "BonusAmount")]
    pub bonus_amount: String,
    /// <p>A message that explains the reason for the bonus payment. The Worker receiving the bonus can see this message.</p>
    #[serde(rename = "Reason")]
    pub reason: String,
    /// <p>A unique identifier for this request, which allows you to retry the call on error without granting multiple bonuses. This is useful in cases such as network timeouts where it is unclear whether or not the call succeeded on the server. If the bonus already exists in the system from a previous call using the same UniqueRequestToken, subsequent calls will return an error with a message containing the request ID.</p>
    #[serde(rename = "UniqueRequestToken")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub unique_request_token: Option<String>,
    /// <p>The ID of the Worker being paid the bonus.</p>
    #[serde(rename = "WorkerId")]
    pub worker_id: String,
}

#[derive(Default, Debug, Clone, PartialEq, Deserialize)]
#[cfg_attr(any(test, feature = "serialize_structs"), derive(Serialize))]
pub struct SendBonusResponse {}

#[derive(Default, Debug, Clone, PartialEq, Serialize)]
pub struct SendTestEventNotificationRequest {
    /// <p> The notification specification to test. This value is identical to the value you would provide to the UpdateNotificationSettings operation when you establish the notification specification for a HIT type. </p>
    #[serde(rename = "Notification")]
    pub notification: NotificationSpecification,
    /// <p> The event to simulate to test the notification specification. This event is included in the test message even if the notification specification does not include the event type. The notification specification does not filter out the test event. </p>
    #[serde(rename = "TestEventType")]
    pub test_event_type: String,
}

#[derive(Default, Debug, Clone, PartialEq, Deserialize)]
#[cfg_attr(any(test, feature = "serialize_structs"), derive(Serialize))]
pub struct SendTestEventNotificationResponse {}

#[derive(Default, Debug, Clone, PartialEq, Serialize)]
pub struct UpdateExpirationForHITRequest {
    /// <p> The date and time at which you want the HIT to expire </p>
    #[serde(rename = "ExpireAt")]
    pub expire_at: f64,
    /// <p> The HIT to update. </p>
    #[serde(rename = "HITId")]
    pub hit_id: String,
}

#[derive(Default, Debug, Clone, PartialEq, Deserialize)]
#[cfg_attr(any(test, feature = "serialize_structs"), derive(Serialize))]
pub struct UpdateExpirationForHITResponse {}

#[derive(Default, Debug, Clone, PartialEq, Serialize)]
pub struct UpdateHITReviewStatusRequest {
    /// <p> The ID of the HIT to update. </p>
    #[serde(rename = "HITId")]
    pub hit_id: String,
    /// <p><p> Specifies how to update the HIT status. Default is <code>False</code>. </p> <ul> <li> <p> Setting this to false will only transition a HIT from <code>Reviewable</code> to <code>Reviewing</code> </p> </li> <li> <p> Setting this to true will only transition a HIT from <code>Reviewing</code> to <code>Reviewable</code> </p> </li> </ul></p>
    #[serde(rename = "Revert")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub revert: Option<bool>,
}

#[derive(Default, Debug, Clone, PartialEq, Deserialize)]
#[cfg_attr(any(test, feature = "serialize_structs"), derive(Serialize))]
pub struct UpdateHITReviewStatusResponse {}

#[derive(Default, Debug, Clone, PartialEq, Serialize)]
pub struct UpdateHITTypeOfHITRequest {
    /// <p>The HIT to update.</p>
    #[serde(rename = "HITId")]
    pub hit_id: String,
    /// <p>The ID of the new HIT type.</p>
    #[serde(rename = "HITTypeId")]
    pub hit_type_id: String,
}

#[derive(Default, Debug, Clone, PartialEq, Deserialize)]
#[cfg_attr(any(test, feature = "serialize_structs"), derive(Serialize))]
pub struct UpdateHITTypeOfHITResponse {}

#[derive(Default, Debug, Clone, PartialEq, Serialize)]
pub struct UpdateNotificationSettingsRequest {
    /// <p> Specifies whether notifications are sent for HITs of this HIT type, according to the notification specification. You must specify either the Notification parameter or the Active parameter for the call to UpdateNotificationSettings to succeed. </p>
    #[serde(rename = "Active")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub active: Option<bool>,
    /// <p> The ID of the HIT type whose notification specification is being updated. </p>
    #[serde(rename = "HITTypeId")]
    pub hit_type_id: String,
    /// <p> The notification specification for the HIT type. </p>
    #[serde(rename = "Notification")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub notification: Option<NotificationSpecification>,
}

#[derive(Default, Debug, Clone, PartialEq, Deserialize)]
#[cfg_attr(any(test, feature = "serialize_structs"), derive(Serialize))]
pub struct UpdateNotificationSettingsResponse {}

#[derive(Default, Debug, Clone, PartialEq, Serialize)]
pub struct UpdateQualificationTypeRequest {
    /// <p>The answers to the Qualification test specified in the Test parameter, in the form of an AnswerKey data structure.</p>
    #[serde(rename = "AnswerKey")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub answer_key: Option<String>,
    /// <p>Specifies whether requests for the Qualification type are granted immediately, without prompting the Worker with a Qualification test.</p> <p>Constraints: If the Test parameter is specified, this parameter cannot be true.</p>
    #[serde(rename = "AutoGranted")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub auto_granted: Option<bool>,
    /// <p>The Qualification value to use for automatically granted Qualifications. This parameter is used only if the AutoGranted parameter is true.</p>
    #[serde(rename = "AutoGrantedValue")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub auto_granted_value: Option<i64>,
    /// <p>The new description of the Qualification type.</p>
    #[serde(rename = "Description")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub description: Option<String>,
    /// <p>The ID of the Qualification type to update.</p>
    #[serde(rename = "QualificationTypeId")]
    pub qualification_type_id: String,
    /// <p>The new status of the Qualification type - Active | Inactive</p>
    #[serde(rename = "QualificationTypeStatus")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub qualification_type_status: Option<String>,
    /// <p>The amount of time, in seconds, that Workers must wait after requesting a Qualification of the specified Qualification type before they can retry the Qualification request. It is not possible to disable retries for a Qualification type after it has been created with retries enabled. If you want to disable retries, you must dispose of the existing retry-enabled Qualification type using DisposeQualificationType and then create a new Qualification type with retries disabled using CreateQualificationType.</p>
    #[serde(rename = "RetryDelayInSeconds")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub retry_delay_in_seconds: Option<i64>,
    /// <p>The questions for the Qualification test a Worker must answer correctly to obtain a Qualification of this type. If this parameter is specified, <code>TestDurationInSeconds</code> must also be specified.</p> <p>Constraints: Must not be longer than 65535 bytes. Must be a QuestionForm data structure. This parameter cannot be specified if AutoGranted is true.</p> <p>Constraints: None. If not specified, the Worker may request the Qualification without answering any questions.</p>
    #[serde(rename = "Test")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub test: Option<String>,
    /// <p>The number of seconds the Worker has to complete the Qualification test, starting from the time the Worker requests the Qualification.</p>
    #[serde(rename = "TestDurationInSeconds")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub test_duration_in_seconds: Option<i64>,
}

#[derive(Default, Debug, Clone, PartialEq, Deserialize)]
#[cfg_attr(any(test, feature = "serialize_structs"), derive(Serialize))]
pub struct UpdateQualificationTypeResponse {
    /// <p> Contains a QualificationType data structure.</p>
    #[serde(rename = "QualificationType")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub qualification_type: Option<QualificationType>,
}

/// <p> The WorkerBlock data structure represents a Worker who has been blocked. It has two elements: the WorkerId and the Reason for the block. </p>
#[derive(Default, Debug, Clone, PartialEq, Deserialize)]
#[cfg_attr(any(test, feature = "serialize_structs"), derive(Serialize))]
pub struct WorkerBlock {
    /// <p> A message explaining the reason the Worker was blocked. </p>
    #[serde(rename = "Reason")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub reason: Option<String>,
    /// <p> The ID of the Worker who accepted the HIT.</p>
    #[serde(rename = "WorkerId")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub worker_id: Option<String>,
}

/// Errors returned by AcceptQualificationRequest
#[derive(Debug, PartialEq)]
pub enum AcceptQualificationRequestError {
    /// <p>Your request is invalid.</p>
    RequestError(String),
    /// <p>Amazon Mechanical Turk is temporarily unable to process your request. Try your call again.</p>
    ServiceFault(String),
}

impl AcceptQualificationRequestError {
    pub fn from_response(
        res: BufferedHttpResponse,
    ) -> RusotoError<AcceptQualificationRequestError> {
        if let Some(err) = proto::json::Error::parse(&res) {
            match err.typ.as_str() {
                "RequestError" => {
                    return RusotoError::Service(AcceptQualificationRequestError::RequestError(
                        err.msg,
                    ))
                }
                "ServiceFault" => {
                    return RusotoError::Service(AcceptQualificationRequestError::ServiceFault(
                        err.msg,
                    ))
                }
                "ValidationException" => return RusotoError::Validation(err.msg),
                _ => {}
            }
        }
        return RusotoError::Unknown(res);
    }
}
impl fmt::Display for AcceptQualificationRequestError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for AcceptQualificationRequestError {
    fn description(&self) -> &str {
        match *self {
            AcceptQualificationRequestError::RequestError(ref cause) => cause,
            AcceptQualificationRequestError::ServiceFault(ref cause) => cause,
        }
    }
}
/// Errors returned by ApproveAssignment
#[derive(Debug, PartialEq)]
pub enum ApproveAssignmentError {
    /// <p>Your request is invalid.</p>
    RequestError(String),
    /// <p>Amazon Mechanical Turk is temporarily unable to process your request. Try your call again.</p>
    ServiceFault(String),
}

impl ApproveAssignmentError {
    pub fn from_response(res: BufferedHttpResponse) -> RusotoError<ApproveAssignmentError> {
        if let Some(err) = proto::json::Error::parse(&res) {
            match err.typ.as_str() {
                "RequestError" => {
                    return RusotoError::Service(ApproveAssignmentError::RequestError(err.msg))
                }
                "ServiceFault" => {
                    return RusotoError::Service(ApproveAssignmentError::ServiceFault(err.msg))
                }
                "ValidationException" => return RusotoError::Validation(err.msg),
                _ => {}
            }
        }
        return RusotoError::Unknown(res);
    }
}
impl fmt::Display for ApproveAssignmentError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for ApproveAssignmentError {
    fn description(&self) -> &str {
        match *self {
            ApproveAssignmentError::RequestError(ref cause) => cause,
            ApproveAssignmentError::ServiceFault(ref cause) => cause,
        }
    }
}
/// Errors returned by AssociateQualificationWithWorker
#[derive(Debug, PartialEq)]
pub enum AssociateQualificationWithWorkerError {
    /// <p>Your request is invalid.</p>
    RequestError(String),
    /// <p>Amazon Mechanical Turk is temporarily unable to process your request. Try your call again.</p>
    ServiceFault(String),
}

impl AssociateQualificationWithWorkerError {
    pub fn from_response(
        res: BufferedHttpResponse,
    ) -> RusotoError<AssociateQualificationWithWorkerError> {
        if let Some(err) = proto::json::Error::parse(&res) {
            match err.typ.as_str() {
                "RequestError" => {
                    return RusotoError::Service(
                        AssociateQualificationWithWorkerError::RequestError(err.msg),
                    )
                }
                "ServiceFault" => {
                    return RusotoError::Service(
                        AssociateQualificationWithWorkerError::ServiceFault(err.msg),
                    )
                }
                "ValidationException" => return RusotoError::Validation(err.msg),
                _ => {}
            }
        }
        return RusotoError::Unknown(res);
    }
}
impl fmt::Display for AssociateQualificationWithWorkerError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for AssociateQualificationWithWorkerError {
    fn description(&self) -> &str {
        match *self {
            AssociateQualificationWithWorkerError::RequestError(ref cause) => cause,
            AssociateQualificationWithWorkerError::ServiceFault(ref cause) => cause,
        }
    }
}
/// Errors returned by CreateAdditionalAssignmentsForHIT
#[derive(Debug, PartialEq)]
pub enum CreateAdditionalAssignmentsForHITError {
    /// <p>Your request is invalid.</p>
    RequestError(String),
    /// <p>Amazon Mechanical Turk is temporarily unable to process your request. Try your call again.</p>
    ServiceFault(String),
}

impl CreateAdditionalAssignmentsForHITError {
    pub fn from_response(
        res: BufferedHttpResponse,
    ) -> RusotoError<CreateAdditionalAssignmentsForHITError> {
        if let Some(err) = proto::json::Error::parse(&res) {
            match err.typ.as_str() {
                "RequestError" => {
                    return RusotoError::Service(
                        CreateAdditionalAssignmentsForHITError::RequestError(err.msg),
                    )
                }
                "ServiceFault" => {
                    return RusotoError::Service(
                        CreateAdditionalAssignmentsForHITError::ServiceFault(err.msg),
                    )
                }
                "ValidationException" => return RusotoError::Validation(err.msg),
                _ => {}
            }
        }
        return RusotoError::Unknown(res);
    }
}
impl fmt::Display for CreateAdditionalAssignmentsForHITError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for CreateAdditionalAssignmentsForHITError {
    fn description(&self) -> &str {
        match *self {
            CreateAdditionalAssignmentsForHITError::RequestError(ref cause) => cause,
            CreateAdditionalAssignmentsForHITError::ServiceFault(ref cause) => cause,
        }
    }
}
/// Errors returned by CreateHIT
#[derive(Debug, PartialEq)]
pub enum CreateHITError {
    /// <p>Your request is invalid.</p>
    RequestError(String),
    /// <p>Amazon Mechanical Turk is temporarily unable to process your request. Try your call again.</p>
    ServiceFault(String),
}

impl CreateHITError {
    pub fn from_response(res: BufferedHttpResponse) -> RusotoError<CreateHITError> {
        if let Some(err) = proto::json::Error::parse(&res) {
            match err.typ.as_str() {
                "RequestError" => {
                    return RusotoError::Service(CreateHITError::RequestError(err.msg))
                }
                "ServiceFault" => {
                    return RusotoError::Service(CreateHITError::ServiceFault(err.msg))
                }
                "ValidationException" => return RusotoError::Validation(err.msg),
                _ => {}
            }
        }
        return RusotoError::Unknown(res);
    }
}
impl fmt::Display for CreateHITError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for CreateHITError {
    fn description(&self) -> &str {
        match *self {
            CreateHITError::RequestError(ref cause) => cause,
            CreateHITError::ServiceFault(ref cause) => cause,
        }
    }
}
/// Errors returned by CreateHITType
#[derive(Debug, PartialEq)]
pub enum CreateHITTypeError {
    /// <p>Your request is invalid.</p>
    RequestError(String),
    /// <p>Amazon Mechanical Turk is temporarily unable to process your request. Try your call again.</p>
    ServiceFault(String),
}

impl CreateHITTypeError {
    pub fn from_response(res: BufferedHttpResponse) -> RusotoError<CreateHITTypeError> {
        if let Some(err) = proto::json::Error::parse(&res) {
            match err.typ.as_str() {
                "RequestError" => {
                    return RusotoError::Service(CreateHITTypeError::RequestError(err.msg))
                }
                "ServiceFault" => {
                    return RusotoError::Service(CreateHITTypeError::ServiceFault(err.msg))
                }
                "ValidationException" => return RusotoError::Validation(err.msg),
                _ => {}
            }
        }
        return RusotoError::Unknown(res);
    }
}
impl fmt::Display for CreateHITTypeError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for CreateHITTypeError {
    fn description(&self) -> &str {
        match *self {
            CreateHITTypeError::RequestError(ref cause) => cause,
            CreateHITTypeError::ServiceFault(ref cause) => cause,
        }
    }
}
/// Errors returned by CreateHITWithHITType
#[derive(Debug, PartialEq)]
pub enum CreateHITWithHITTypeError {
    /// <p>Your request is invalid.</p>
    RequestError(String),
    /// <p>Amazon Mechanical Turk is temporarily unable to process your request. Try your call again.</p>
    ServiceFault(String),
}

impl CreateHITWithHITTypeError {
    pub fn from_response(res: BufferedHttpResponse) -> RusotoError<CreateHITWithHITTypeError> {
        if let Some(err) = proto::json::Error::parse(&res) {
            match err.typ.as_str() {
                "RequestError" => {
                    return RusotoError::Service(CreateHITWithHITTypeError::RequestError(err.msg))
                }
                "ServiceFault" => {
                    return RusotoError::Service(CreateHITWithHITTypeError::ServiceFault(err.msg))
                }
                "ValidationException" => return RusotoError::Validation(err.msg),
                _ => {}
            }
        }
        return RusotoError::Unknown(res);
    }
}
impl fmt::Display for CreateHITWithHITTypeError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for CreateHITWithHITTypeError {
    fn description(&self) -> &str {
        match *self {
            CreateHITWithHITTypeError::RequestError(ref cause) => cause,
            CreateHITWithHITTypeError::ServiceFault(ref cause) => cause,
        }
    }
}
/// Errors returned by CreateQualificationType
#[derive(Debug, PartialEq)]
pub enum CreateQualificationTypeError {
    /// <p>Your request is invalid.</p>
    RequestError(String),
    /// <p>Amazon Mechanical Turk is temporarily unable to process your request. Try your call again.</p>
    ServiceFault(String),
}

impl CreateQualificationTypeError {
    pub fn from_response(res: BufferedHttpResponse) -> RusotoError<CreateQualificationTypeError> {
        if let Some(err) = proto::json::Error::parse(&res) {
            match err.typ.as_str() {
                "RequestError" => {
                    return RusotoError::Service(CreateQualificationTypeError::RequestError(
                        err.msg,
                    ))
                }
                "ServiceFault" => {
                    return RusotoError::Service(CreateQualificationTypeError::ServiceFault(
                        err.msg,
                    ))
                }
                "ValidationException" => return RusotoError::Validation(err.msg),
                _ => {}
            }
        }
        return RusotoError::Unknown(res);
    }
}
impl fmt::Display for CreateQualificationTypeError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for CreateQualificationTypeError {
    fn description(&self) -> &str {
        match *self {
            CreateQualificationTypeError::RequestError(ref cause) => cause,
            CreateQualificationTypeError::ServiceFault(ref cause) => cause,
        }
    }
}
/// Errors returned by CreateWorkerBlock
#[derive(Debug, PartialEq)]
pub enum CreateWorkerBlockError {
    /// <p>Your request is invalid.</p>
    RequestError(String),
    /// <p>Amazon Mechanical Turk is temporarily unable to process your request. Try your call again.</p>
    ServiceFault(String),
}

impl CreateWorkerBlockError {
    pub fn from_response(res: BufferedHttpResponse) -> RusotoError<CreateWorkerBlockError> {
        if let Some(err) = proto::json::Error::parse(&res) {
            match err.typ.as_str() {
                "RequestError" => {
                    return RusotoError::Service(CreateWorkerBlockError::RequestError(err.msg))
                }
                "ServiceFault" => {
                    return RusotoError::Service(CreateWorkerBlockError::ServiceFault(err.msg))
                }
                "ValidationException" => return RusotoError::Validation(err.msg),
                _ => {}
            }
        }
        return RusotoError::Unknown(res);
    }
}
impl fmt::Display for CreateWorkerBlockError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for CreateWorkerBlockError {
    fn description(&self) -> &str {
        match *self {
            CreateWorkerBlockError::RequestError(ref cause) => cause,
            CreateWorkerBlockError::ServiceFault(ref cause) => cause,
        }
    }
}
/// Errors returned by DeleteHIT
#[derive(Debug, PartialEq)]
pub enum DeleteHITError {
    /// <p>Your request is invalid.</p>
    RequestError(String),
    /// <p>Amazon Mechanical Turk is temporarily unable to process your request. Try your call again.</p>
    ServiceFault(String),
}

impl DeleteHITError {
    pub fn from_response(res: BufferedHttpResponse) -> RusotoError<DeleteHITError> {
        if let Some(err) = proto::json::Error::parse(&res) {
            match err.typ.as_str() {
                "RequestError" => {
                    return RusotoError::Service(DeleteHITError::RequestError(err.msg))
                }
                "ServiceFault" => {
                    return RusotoError::Service(DeleteHITError::ServiceFault(err.msg))
                }
                "ValidationException" => return RusotoError::Validation(err.msg),
                _ => {}
            }
        }
        return RusotoError::Unknown(res);
    }
}
impl fmt::Display for DeleteHITError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for DeleteHITError {
    fn description(&self) -> &str {
        match *self {
            DeleteHITError::RequestError(ref cause) => cause,
            DeleteHITError::ServiceFault(ref cause) => cause,
        }
    }
}
/// Errors returned by DeleteQualificationType
#[derive(Debug, PartialEq)]
pub enum DeleteQualificationTypeError {
    /// <p>Your request is invalid.</p>
    RequestError(String),
    /// <p>Amazon Mechanical Turk is temporarily unable to process your request. Try your call again.</p>
    ServiceFault(String),
}

impl DeleteQualificationTypeError {
    pub fn from_response(res: BufferedHttpResponse) -> RusotoError<DeleteQualificationTypeError> {
        if let Some(err) = proto::json::Error::parse(&res) {
            match err.typ.as_str() {
                "RequestError" => {
                    return RusotoError::Service(DeleteQualificationTypeError::RequestError(
                        err.msg,
                    ))
                }
                "ServiceFault" => {
                    return RusotoError::Service(DeleteQualificationTypeError::ServiceFault(
                        err.msg,
                    ))
                }
                "ValidationException" => return RusotoError::Validation(err.msg),
                _ => {}
            }
        }
        return RusotoError::Unknown(res);
    }
}
impl fmt::Display for DeleteQualificationTypeError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for DeleteQualificationTypeError {
    fn description(&self) -> &str {
        match *self {
            DeleteQualificationTypeError::RequestError(ref cause) => cause,
            DeleteQualificationTypeError::ServiceFault(ref cause) => cause,
        }
    }
}
/// Errors returned by DeleteWorkerBlock
#[derive(Debug, PartialEq)]
pub enum DeleteWorkerBlockError {
    /// <p>Your request is invalid.</p>
    RequestError(String),
    /// <p>Amazon Mechanical Turk is temporarily unable to process your request. Try your call again.</p>
    ServiceFault(String),
}

impl DeleteWorkerBlockError {
    pub fn from_response(res: BufferedHttpResponse) -> RusotoError<DeleteWorkerBlockError> {
        if let Some(err) = proto::json::Error::parse(&res) {
            match err.typ.as_str() {
                "RequestError" => {
                    return RusotoError::Service(DeleteWorkerBlockError::RequestError(err.msg))
                }
                "ServiceFault" => {
                    return RusotoError::Service(DeleteWorkerBlockError::ServiceFault(err.msg))
                }
                "ValidationException" => return RusotoError::Validation(err.msg),
                _ => {}
            }
        }
        return RusotoError::Unknown(res);
    }
}
impl fmt::Display for DeleteWorkerBlockError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for DeleteWorkerBlockError {
    fn description(&self) -> &str {
        match *self {
            DeleteWorkerBlockError::RequestError(ref cause) => cause,
            DeleteWorkerBlockError::ServiceFault(ref cause) => cause,
        }
    }
}
/// Errors returned by DisassociateQualificationFromWorker
#[derive(Debug, PartialEq)]
pub enum DisassociateQualificationFromWorkerError {
    /// <p>Your request is invalid.</p>
    RequestError(String),
    /// <p>Amazon Mechanical Turk is temporarily unable to process your request. Try your call again.</p>
    ServiceFault(String),
}

impl DisassociateQualificationFromWorkerError {
    pub fn from_response(
        res: BufferedHttpResponse,
    ) -> RusotoError<DisassociateQualificationFromWorkerError> {
        if let Some(err) = proto::json::Error::parse(&res) {
            match err.typ.as_str() {
                "RequestError" => {
                    return RusotoError::Service(
                        DisassociateQualificationFromWorkerError::RequestError(err.msg),
                    )
                }
                "ServiceFault" => {
                    return RusotoError::Service(
                        DisassociateQualificationFromWorkerError::ServiceFault(err.msg),
                    )
                }
                "ValidationException" => return RusotoError::Validation(err.msg),
                _ => {}
            }
        }
        return RusotoError::Unknown(res);
    }
}
impl fmt::Display for DisassociateQualificationFromWorkerError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for DisassociateQualificationFromWorkerError {
    fn description(&self) -> &str {
        match *self {
            DisassociateQualificationFromWorkerError::RequestError(ref cause) => cause,
            DisassociateQualificationFromWorkerError::ServiceFault(ref cause) => cause,
        }
    }
}
/// Errors returned by GetAccountBalance
#[derive(Debug, PartialEq)]
pub enum GetAccountBalanceError {
    /// <p>Your request is invalid.</p>
    RequestError(String),
    /// <p>Amazon Mechanical Turk is temporarily unable to process your request. Try your call again.</p>
    ServiceFault(String),
}

impl GetAccountBalanceError {
    pub fn from_response(res: BufferedHttpResponse) -> RusotoError<GetAccountBalanceError> {
        if let Some(err) = proto::json::Error::parse(&res) {
            match err.typ.as_str() {
                "RequestError" => {
                    return RusotoError::Service(GetAccountBalanceError::RequestError(err.msg))
                }
                "ServiceFault" => {
                    return RusotoError::Service(GetAccountBalanceError::ServiceFault(err.msg))
                }
                "ValidationException" => return RusotoError::Validation(err.msg),
                _ => {}
            }
        }
        return RusotoError::Unknown(res);
    }
}
impl fmt::Display for GetAccountBalanceError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for GetAccountBalanceError {
    fn description(&self) -> &str {
        match *self {
            GetAccountBalanceError::RequestError(ref cause) => cause,
            GetAccountBalanceError::ServiceFault(ref cause) => cause,
        }
    }
}
/// Errors returned by GetAssignment
#[derive(Debug, PartialEq)]
pub enum GetAssignmentError {
    /// <p>Your request is invalid.</p>
    RequestError(String),
    /// <p>Amazon Mechanical Turk is temporarily unable to process your request. Try your call again.</p>
    ServiceFault(String),
}

impl GetAssignmentError {
    pub fn from_response(res: BufferedHttpResponse) -> RusotoError<GetAssignmentError> {
        if let Some(err) = proto::json::Error::parse(&res) {
            match err.typ.as_str() {
                "RequestError" => {
                    return RusotoError::Service(GetAssignmentError::RequestError(err.msg))
                }
                "ServiceFault" => {
                    return RusotoError::Service(GetAssignmentError::ServiceFault(err.msg))
                }
                "ValidationException" => return RusotoError::Validation(err.msg),
                _ => {}
            }
        }
        return RusotoError::Unknown(res);
    }
}
impl fmt::Display for GetAssignmentError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for GetAssignmentError {
    fn description(&self) -> &str {
        match *self {
            GetAssignmentError::RequestError(ref cause) => cause,
            GetAssignmentError::ServiceFault(ref cause) => cause,
        }
    }
}
/// Errors returned by GetFileUploadURL
#[derive(Debug, PartialEq)]
pub enum GetFileUploadURLError {
    /// <p>Your request is invalid.</p>
    RequestError(String),
    /// <p>Amazon Mechanical Turk is temporarily unable to process your request. Try your call again.</p>
    ServiceFault(String),
}

impl GetFileUploadURLError {
    pub fn from_response(res: BufferedHttpResponse) -> RusotoError<GetFileUploadURLError> {
        if let Some(err) = proto::json::Error::parse(&res) {
            match err.typ.as_str() {
                "RequestError" => {
                    return RusotoError::Service(GetFileUploadURLError::RequestError(err.msg))
                }
                "ServiceFault" => {
                    return RusotoError::Service(GetFileUploadURLError::ServiceFault(err.msg))
                }
                "ValidationException" => return RusotoError::Validation(err.msg),
                _ => {}
            }
        }
        return RusotoError::Unknown(res);
    }
}
impl fmt::Display for GetFileUploadURLError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for GetFileUploadURLError {
    fn description(&self) -> &str {
        match *self {
            GetFileUploadURLError::RequestError(ref cause) => cause,
            GetFileUploadURLError::ServiceFault(ref cause) => cause,
        }
    }
}
/// Errors returned by GetHIT
#[derive(Debug, PartialEq)]
pub enum GetHITError {
    /// <p>Your request is invalid.</p>
    RequestError(String),
    /// <p>Amazon Mechanical Turk is temporarily unable to process your request. Try your call again.</p>
    ServiceFault(String),
}

impl GetHITError {
    pub fn from_response(res: BufferedHttpResponse) -> RusotoError<GetHITError> {
        if let Some(err) = proto::json::Error::parse(&res) {
            match err.typ.as_str() {
                "RequestError" => return RusotoError::Service(GetHITError::RequestError(err.msg)),
                "ServiceFault" => return RusotoError::Service(GetHITError::ServiceFault(err.msg)),
                "ValidationException" => return RusotoError::Validation(err.msg),
                _ => {}
            }
        }
        return RusotoError::Unknown(res);
    }
}
impl fmt::Display for GetHITError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for GetHITError {
    fn description(&self) -> &str {
        match *self {
            GetHITError::RequestError(ref cause) => cause,
            GetHITError::ServiceFault(ref cause) => cause,
        }
    }
}
/// Errors returned by GetQualificationScore
#[derive(Debug, PartialEq)]
pub enum GetQualificationScoreError {
    /// <p>Your request is invalid.</p>
    RequestError(String),
    /// <p>Amazon Mechanical Turk is temporarily unable to process your request. Try your call again.</p>
    ServiceFault(String),
}

impl GetQualificationScoreError {
    pub fn from_response(res: BufferedHttpResponse) -> RusotoError<GetQualificationScoreError> {
        if let Some(err) = proto::json::Error::parse(&res) {
            match err.typ.as_str() {
                "RequestError" => {
                    return RusotoError::Service(GetQualificationScoreError::RequestError(err.msg))
                }
                "ServiceFault" => {
                    return RusotoError::Service(GetQualificationScoreError::ServiceFault(err.msg))
                }
                "ValidationException" => return RusotoError::Validation(err.msg),
                _ => {}
            }
        }
        return RusotoError::Unknown(res);
    }
}
impl fmt::Display for GetQualificationScoreError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for GetQualificationScoreError {
    fn description(&self) -> &str {
        match *self {
            GetQualificationScoreError::RequestError(ref cause) => cause,
            GetQualificationScoreError::ServiceFault(ref cause) => cause,
        }
    }
}
/// Errors returned by GetQualificationType
#[derive(Debug, PartialEq)]
pub enum GetQualificationTypeError {
    /// <p>Your request is invalid.</p>
    RequestError(String),
    /// <p>Amazon Mechanical Turk is temporarily unable to process your request. Try your call again.</p>
    ServiceFault(String),
}

impl GetQualificationTypeError {
    pub fn from_response(res: BufferedHttpResponse) -> RusotoError<GetQualificationTypeError> {
        if let Some(err) = proto::json::Error::parse(&res) {
            match err.typ.as_str() {
                "RequestError" => {
                    return RusotoError::Service(GetQualificationTypeError::RequestError(err.msg))
                }
                "ServiceFault" => {
                    return RusotoError::Service(GetQualificationTypeError::ServiceFault(err.msg))
                }
                "ValidationException" => return RusotoError::Validation(err.msg),
                _ => {}
            }
        }
        return RusotoError::Unknown(res);
    }
}
impl fmt::Display for GetQualificationTypeError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for GetQualificationTypeError {
    fn description(&self) -> &str {
        match *self {
            GetQualificationTypeError::RequestError(ref cause) => cause,
            GetQualificationTypeError::ServiceFault(ref cause) => cause,
        }
    }
}
/// Errors returned by ListAssignmentsForHIT
#[derive(Debug, PartialEq)]
pub enum ListAssignmentsForHITError {
    /// <p>Your request is invalid.</p>
    RequestError(String),
    /// <p>Amazon Mechanical Turk is temporarily unable to process your request. Try your call again.</p>
    ServiceFault(String),
}

impl ListAssignmentsForHITError {
    pub fn from_response(res: BufferedHttpResponse) -> RusotoError<ListAssignmentsForHITError> {
        if let Some(err) = proto::json::Error::parse(&res) {
            match err.typ.as_str() {
                "RequestError" => {
                    return RusotoError::Service(ListAssignmentsForHITError::RequestError(err.msg))
                }
                "ServiceFault" => {
                    return RusotoError::Service(ListAssignmentsForHITError::ServiceFault(err.msg))
                }
                "ValidationException" => return RusotoError::Validation(err.msg),
                _ => {}
            }
        }
        return RusotoError::Unknown(res);
    }
}
impl fmt::Display for ListAssignmentsForHITError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for ListAssignmentsForHITError {
    fn description(&self) -> &str {
        match *self {
            ListAssignmentsForHITError::RequestError(ref cause) => cause,
            ListAssignmentsForHITError::ServiceFault(ref cause) => cause,
        }
    }
}
/// Errors returned by ListBonusPayments
#[derive(Debug, PartialEq)]
pub enum ListBonusPaymentsError {
    /// <p>Your request is invalid.</p>
    RequestError(String),
    /// <p>Amazon Mechanical Turk is temporarily unable to process your request. Try your call again.</p>
    ServiceFault(String),
}

impl ListBonusPaymentsError {
    pub fn from_response(res: BufferedHttpResponse) -> RusotoError<ListBonusPaymentsError> {
        if let Some(err) = proto::json::Error::parse(&res) {
            match err.typ.as_str() {
                "RequestError" => {
                    return RusotoError::Service(ListBonusPaymentsError::RequestError(err.msg))
                }
                "ServiceFault" => {
                    return RusotoError::Service(ListBonusPaymentsError::ServiceFault(err.msg))
                }
                "ValidationException" => return RusotoError::Validation(err.msg),
                _ => {}
            }
        }
        return RusotoError::Unknown(res);
    }
}
impl fmt::Display for ListBonusPaymentsError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for ListBonusPaymentsError {
    fn description(&self) -> &str {
        match *self {
            ListBonusPaymentsError::RequestError(ref cause) => cause,
            ListBonusPaymentsError::ServiceFault(ref cause) => cause,
        }
    }
}
/// Errors returned by ListHITs
#[derive(Debug, PartialEq)]
pub enum ListHITsError {
    /// <p>Your request is invalid.</p>
    RequestError(String),
    /// <p>Amazon Mechanical Turk is temporarily unable to process your request. Try your call again.</p>
    ServiceFault(String),
}

impl ListHITsError {
    pub fn from_response(res: BufferedHttpResponse) -> RusotoError<ListHITsError> {
        if let Some(err) = proto::json::Error::parse(&res) {
            match err.typ.as_str() {
                "RequestError" => {
                    return RusotoError::Service(ListHITsError::RequestError(err.msg))
                }
                "ServiceFault" => {
                    return RusotoError::Service(ListHITsError::ServiceFault(err.msg))
                }
                "ValidationException" => return RusotoError::Validation(err.msg),
                _ => {}
            }
        }
        return RusotoError::Unknown(res);
    }
}
impl fmt::Display for ListHITsError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for ListHITsError {
    fn description(&self) -> &str {
        match *self {
            ListHITsError::RequestError(ref cause) => cause,
            ListHITsError::ServiceFault(ref cause) => cause,
        }
    }
}
/// Errors returned by ListHITsForQualificationType
#[derive(Debug, PartialEq)]
pub enum ListHITsForQualificationTypeError {
    /// <p>Your request is invalid.</p>
    RequestError(String),
    /// <p>Amazon Mechanical Turk is temporarily unable to process your request. Try your call again.</p>
    ServiceFault(String),
}

impl ListHITsForQualificationTypeError {
    pub fn from_response(
        res: BufferedHttpResponse,
    ) -> RusotoError<ListHITsForQualificationTypeError> {
        if let Some(err) = proto::json::Error::parse(&res) {
            match err.typ.as_str() {
                "RequestError" => {
                    return RusotoError::Service(ListHITsForQualificationTypeError::RequestError(
                        err.msg,
                    ))
                }
                "ServiceFault" => {
                    return RusotoError::Service(ListHITsForQualificationTypeError::ServiceFault(
                        err.msg,
                    ))
                }
                "ValidationException" => return RusotoError::Validation(err.msg),
                _ => {}
            }
        }
        return RusotoError::Unknown(res);
    }
}
impl fmt::Display for ListHITsForQualificationTypeError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for ListHITsForQualificationTypeError {
    fn description(&self) -> &str {
        match *self {
            ListHITsForQualificationTypeError::RequestError(ref cause) => cause,
            ListHITsForQualificationTypeError::ServiceFault(ref cause) => cause,
        }
    }
}
/// Errors returned by ListQualificationRequests
#[derive(Debug, PartialEq)]
pub enum ListQualificationRequestsError {
    /// <p>Your request is invalid.</p>
    RequestError(String),
    /// <p>Amazon Mechanical Turk is temporarily unable to process your request. Try your call again.</p>
    ServiceFault(String),
}

impl ListQualificationRequestsError {
    pub fn from_response(res: BufferedHttpResponse) -> RusotoError<ListQualificationRequestsError> {
        if let Some(err) = proto::json::Error::parse(&res) {
            match err.typ.as_str() {
                "RequestError" => {
                    return RusotoError::Service(ListQualificationRequestsError::RequestError(
                        err.msg,
                    ))
                }
                "ServiceFault" => {
                    return RusotoError::Service(ListQualificationRequestsError::ServiceFault(
                        err.msg,
                    ))
                }
                "ValidationException" => return RusotoError::Validation(err.msg),
                _ => {}
            }
        }
        return RusotoError::Unknown(res);
    }
}
impl fmt::Display for ListQualificationRequestsError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for ListQualificationRequestsError {
    fn description(&self) -> &str {
        match *self {
            ListQualificationRequestsError::RequestError(ref cause) => cause,
            ListQualificationRequestsError::ServiceFault(ref cause) => cause,
        }
    }
}
/// Errors returned by ListQualificationTypes
#[derive(Debug, PartialEq)]
pub enum ListQualificationTypesError {
    /// <p>Your request is invalid.</p>
    RequestError(String),
    /// <p>Amazon Mechanical Turk is temporarily unable to process your request. Try your call again.</p>
    ServiceFault(String),
}

impl ListQualificationTypesError {
    pub fn from_response(res: BufferedHttpResponse) -> RusotoError<ListQualificationTypesError> {
        if let Some(err) = proto::json::Error::parse(&res) {
            match err.typ.as_str() {
                "RequestError" => {
                    return RusotoError::Service(ListQualificationTypesError::RequestError(err.msg))
                }
                "ServiceFault" => {
                    return RusotoError::Service(ListQualificationTypesError::ServiceFault(err.msg))
                }
                "ValidationException" => return RusotoError::Validation(err.msg),
                _ => {}
            }
        }
        return RusotoError::Unknown(res);
    }
}
impl fmt::Display for ListQualificationTypesError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for ListQualificationTypesError {
    fn description(&self) -> &str {
        match *self {
            ListQualificationTypesError::RequestError(ref cause) => cause,
            ListQualificationTypesError::ServiceFault(ref cause) => cause,
        }
    }
}
/// Errors returned by ListReviewPolicyResultsForHIT
#[derive(Debug, PartialEq)]
pub enum ListReviewPolicyResultsForHITError {
    /// <p>Your request is invalid.</p>
    RequestError(String),
    /// <p>Amazon Mechanical Turk is temporarily unable to process your request. Try your call again.</p>
    ServiceFault(String),
}

impl ListReviewPolicyResultsForHITError {
    pub fn from_response(
        res: BufferedHttpResponse,
    ) -> RusotoError<ListReviewPolicyResultsForHITError> {
        if let Some(err) = proto::json::Error::parse(&res) {
            match err.typ.as_str() {
                "RequestError" => {
                    return RusotoError::Service(ListReviewPolicyResultsForHITError::RequestError(
                        err.msg,
                    ))
                }
                "ServiceFault" => {
                    return RusotoError::Service(ListReviewPolicyResultsForHITError::ServiceFault(
                        err.msg,
                    ))
                }
                "ValidationException" => return RusotoError::Validation(err.msg),
                _ => {}
            }
        }
        return RusotoError::Unknown(res);
    }
}
impl fmt::Display for ListReviewPolicyResultsForHITError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for ListReviewPolicyResultsForHITError {
    fn description(&self) -> &str {
        match *self {
            ListReviewPolicyResultsForHITError::RequestError(ref cause) => cause,
            ListReviewPolicyResultsForHITError::ServiceFault(ref cause) => cause,
        }
    }
}
/// Errors returned by ListReviewableHITs
#[derive(Debug, PartialEq)]
pub enum ListReviewableHITsError {
    /// <p>Your request is invalid.</p>
    RequestError(String),
    /// <p>Amazon Mechanical Turk is temporarily unable to process your request. Try your call again.</p>
    ServiceFault(String),
}

impl ListReviewableHITsError {
    pub fn from_response(res: BufferedHttpResponse) -> RusotoError<ListReviewableHITsError> {
        if let Some(err) = proto::json::Error::parse(&res) {
            match err.typ.as_str() {
                "RequestError" => {
                    return RusotoError::Service(ListReviewableHITsError::RequestError(err.msg))
                }
                "ServiceFault" => {
                    return RusotoError::Service(ListReviewableHITsError::ServiceFault(err.msg))
                }
                "ValidationException" => return RusotoError::Validation(err.msg),
                _ => {}
            }
        }
        return RusotoError::Unknown(res);
    }
}
impl fmt::Display for ListReviewableHITsError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for ListReviewableHITsError {
    fn description(&self) -> &str {
        match *self {
            ListReviewableHITsError::RequestError(ref cause) => cause,
            ListReviewableHITsError::ServiceFault(ref cause) => cause,
        }
    }
}
/// Errors returned by ListWorkerBlocks
#[derive(Debug, PartialEq)]
pub enum ListWorkerBlocksError {
    /// <p>Your request is invalid.</p>
    RequestError(String),
    /// <p>Amazon Mechanical Turk is temporarily unable to process your request. Try your call again.</p>
    ServiceFault(String),
}

impl ListWorkerBlocksError {
    pub fn from_response(res: BufferedHttpResponse) -> RusotoError<ListWorkerBlocksError> {
        if let Some(err) = proto::json::Error::parse(&res) {
            match err.typ.as_str() {
                "RequestError" => {
                    return RusotoError::Service(ListWorkerBlocksError::RequestError(err.msg))
                }
                "ServiceFault" => {
                    return RusotoError::Service(ListWorkerBlocksError::ServiceFault(err.msg))
                }
                "ValidationException" => return RusotoError::Validation(err.msg),
                _ => {}
            }
        }
        return RusotoError::Unknown(res);
    }
}
impl fmt::Display for ListWorkerBlocksError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for ListWorkerBlocksError {
    fn description(&self) -> &str {
        match *self {
            ListWorkerBlocksError::RequestError(ref cause) => cause,
            ListWorkerBlocksError::ServiceFault(ref cause) => cause,
        }
    }
}
/// Errors returned by ListWorkersWithQualificationType
#[derive(Debug, PartialEq)]
pub enum ListWorkersWithQualificationTypeError {
    /// <p>Your request is invalid.</p>
    RequestError(String),
    /// <p>Amazon Mechanical Turk is temporarily unable to process your request. Try your call again.</p>
    ServiceFault(String),
}

impl ListWorkersWithQualificationTypeError {
    pub fn from_response(
        res: BufferedHttpResponse,
    ) -> RusotoError<ListWorkersWithQualificationTypeError> {
        if let Some(err) = proto::json::Error::parse(&res) {
            match err.typ.as_str() {
                "RequestError" => {
                    return RusotoError::Service(
                        ListWorkersWithQualificationTypeError::RequestError(err.msg),
                    )
                }
                "ServiceFault" => {
                    return RusotoError::Service(
                        ListWorkersWithQualificationTypeError::ServiceFault(err.msg),
                    )
                }
                "ValidationException" => return RusotoError::Validation(err.msg),
                _ => {}
            }
        }
        return RusotoError::Unknown(res);
    }
}
impl fmt::Display for ListWorkersWithQualificationTypeError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for ListWorkersWithQualificationTypeError {
    fn description(&self) -> &str {
        match *self {
            ListWorkersWithQualificationTypeError::RequestError(ref cause) => cause,
            ListWorkersWithQualificationTypeError::ServiceFault(ref cause) => cause,
        }
    }
}
/// Errors returned by NotifyWorkers
#[derive(Debug, PartialEq)]
pub enum NotifyWorkersError {
    /// <p>Your request is invalid.</p>
    RequestError(String),
    /// <p>Amazon Mechanical Turk is temporarily unable to process your request. Try your call again.</p>
    ServiceFault(String),
}

impl NotifyWorkersError {
    pub fn from_response(res: BufferedHttpResponse) -> RusotoError<NotifyWorkersError> {
        if let Some(err) = proto::json::Error::parse(&res) {
            match err.typ.as_str() {
                "RequestError" => {
                    return RusotoError::Service(NotifyWorkersError::RequestError(err.msg))
                }
                "ServiceFault" => {
                    return RusotoError::Service(NotifyWorkersError::ServiceFault(err.msg))
                }
                "ValidationException" => return RusotoError::Validation(err.msg),
                _ => {}
            }
        }
        return RusotoError::Unknown(res);
    }
}
impl fmt::Display for NotifyWorkersError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for NotifyWorkersError {
    fn description(&self) -> &str {
        match *self {
            NotifyWorkersError::RequestError(ref cause) => cause,
            NotifyWorkersError::ServiceFault(ref cause) => cause,
        }
    }
}
/// Errors returned by RejectAssignment
#[derive(Debug, PartialEq)]
pub enum RejectAssignmentError {
    /// <p>Your request is invalid.</p>
    RequestError(String),
    /// <p>Amazon Mechanical Turk is temporarily unable to process your request. Try your call again.</p>
    ServiceFault(String),
}

impl RejectAssignmentError {
    pub fn from_response(res: BufferedHttpResponse) -> RusotoError<RejectAssignmentError> {
        if let Some(err) = proto::json::Error::parse(&res) {
            match err.typ.as_str() {
                "RequestError" => {
                    return RusotoError::Service(RejectAssignmentError::RequestError(err.msg))
                }
                "ServiceFault" => {
                    return RusotoError::Service(RejectAssignmentError::ServiceFault(err.msg))
                }
                "ValidationException" => return RusotoError::Validation(err.msg),
                _ => {}
            }
        }
        return RusotoError::Unknown(res);
    }
}
impl fmt::Display for RejectAssignmentError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for RejectAssignmentError {
    fn description(&self) -> &str {
        match *self {
            RejectAssignmentError::RequestError(ref cause) => cause,
            RejectAssignmentError::ServiceFault(ref cause) => cause,
        }
    }
}
/// Errors returned by RejectQualificationRequest
#[derive(Debug, PartialEq)]
pub enum RejectQualificationRequestError {
    /// <p>Your request is invalid.</p>
    RequestError(String),
    /// <p>Amazon Mechanical Turk is temporarily unable to process your request. Try your call again.</p>
    ServiceFault(String),
}

impl RejectQualificationRequestError {
    pub fn from_response(
        res: BufferedHttpResponse,
    ) -> RusotoError<RejectQualificationRequestError> {
        if let Some(err) = proto::json::Error::parse(&res) {
            match err.typ.as_str() {
                "RequestError" => {
                    return RusotoError::Service(RejectQualificationRequestError::RequestError(
                        err.msg,
                    ))
                }
                "ServiceFault" => {
                    return RusotoError::Service(RejectQualificationRequestError::ServiceFault(
                        err.msg,
                    ))
                }
                "ValidationException" => return RusotoError::Validation(err.msg),
                _ => {}
            }
        }
        return RusotoError::Unknown(res);
    }
}
impl fmt::Display for RejectQualificationRequestError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for RejectQualificationRequestError {
    fn description(&self) -> &str {
        match *self {
            RejectQualificationRequestError::RequestError(ref cause) => cause,
            RejectQualificationRequestError::ServiceFault(ref cause) => cause,
        }
    }
}
/// Errors returned by SendBonus
#[derive(Debug, PartialEq)]
pub enum SendBonusError {
    /// <p>Your request is invalid.</p>
    RequestError(String),
    /// <p>Amazon Mechanical Turk is temporarily unable to process your request. Try your call again.</p>
    ServiceFault(String),
}

impl SendBonusError {
    pub fn from_response(res: BufferedHttpResponse) -> RusotoError<SendBonusError> {
        if let Some(err) = proto::json::Error::parse(&res) {
            match err.typ.as_str() {
                "RequestError" => {
                    return RusotoError::Service(SendBonusError::RequestError(err.msg))
                }
                "ServiceFault" => {
                    return RusotoError::Service(SendBonusError::ServiceFault(err.msg))
                }
                "ValidationException" => return RusotoError::Validation(err.msg),
                _ => {}
            }
        }
        return RusotoError::Unknown(res);
    }
}
impl fmt::Display for SendBonusError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for SendBonusError {
    fn description(&self) -> &str {
        match *self {
            SendBonusError::RequestError(ref cause) => cause,
            SendBonusError::ServiceFault(ref cause) => cause,
        }
    }
}
/// Errors returned by SendTestEventNotification
#[derive(Debug, PartialEq)]
pub enum SendTestEventNotificationError {
    /// <p>Your request is invalid.</p>
    RequestError(String),
    /// <p>Amazon Mechanical Turk is temporarily unable to process your request. Try your call again.</p>
    ServiceFault(String),
}

impl SendTestEventNotificationError {
    pub fn from_response(res: BufferedHttpResponse) -> RusotoError<SendTestEventNotificationError> {
        if let Some(err) = proto::json::Error::parse(&res) {
            match err.typ.as_str() {
                "RequestError" => {
                    return RusotoError::Service(SendTestEventNotificationError::RequestError(
                        err.msg,
                    ))
                }
                "ServiceFault" => {
                    return RusotoError::Service(SendTestEventNotificationError::ServiceFault(
                        err.msg,
                    ))
                }
                "ValidationException" => return RusotoError::Validation(err.msg),
                _ => {}
            }
        }
        return RusotoError::Unknown(res);
    }
}
impl fmt::Display for SendTestEventNotificationError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for SendTestEventNotificationError {
    fn description(&self) -> &str {
        match *self {
            SendTestEventNotificationError::RequestError(ref cause) => cause,
            SendTestEventNotificationError::ServiceFault(ref cause) => cause,
        }
    }
}
/// Errors returned by UpdateExpirationForHIT
#[derive(Debug, PartialEq)]
pub enum UpdateExpirationForHITError {
    /// <p>Your request is invalid.</p>
    RequestError(String),
    /// <p>Amazon Mechanical Turk is temporarily unable to process your request. Try your call again.</p>
    ServiceFault(String),
}

impl UpdateExpirationForHITError {
    pub fn from_response(res: BufferedHttpResponse) -> RusotoError<UpdateExpirationForHITError> {
        if let Some(err) = proto::json::Error::parse(&res) {
            match err.typ.as_str() {
                "RequestError" => {
                    return RusotoError::Service(UpdateExpirationForHITError::RequestError(err.msg))
                }
                "ServiceFault" => {
                    return RusotoError::Service(UpdateExpirationForHITError::ServiceFault(err.msg))
                }
                "ValidationException" => return RusotoError::Validation(err.msg),
                _ => {}
            }
        }
        return RusotoError::Unknown(res);
    }
}
impl fmt::Display for UpdateExpirationForHITError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for UpdateExpirationForHITError {
    fn description(&self) -> &str {
        match *self {
            UpdateExpirationForHITError::RequestError(ref cause) => cause,
            UpdateExpirationForHITError::ServiceFault(ref cause) => cause,
        }
    }
}
/// Errors returned by UpdateHITReviewStatus
#[derive(Debug, PartialEq)]
pub enum UpdateHITReviewStatusError {
    /// <p>Your request is invalid.</p>
    RequestError(String),
    /// <p>Amazon Mechanical Turk is temporarily unable to process your request. Try your call again.</p>
    ServiceFault(String),
}

impl UpdateHITReviewStatusError {
    pub fn from_response(res: BufferedHttpResponse) -> RusotoError<UpdateHITReviewStatusError> {
        if let Some(err) = proto::json::Error::parse(&res) {
            match err.typ.as_str() {
                "RequestError" => {
                    return RusotoError::Service(UpdateHITReviewStatusError::RequestError(err.msg))
                }
                "ServiceFault" => {
                    return RusotoError::Service(UpdateHITReviewStatusError::ServiceFault(err.msg))
                }
                "ValidationException" => return RusotoError::Validation(err.msg),
                _ => {}
            }
        }
        return RusotoError::Unknown(res);
    }
}
impl fmt::Display for UpdateHITReviewStatusError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for UpdateHITReviewStatusError {
    fn description(&self) -> &str {
        match *self {
            UpdateHITReviewStatusError::RequestError(ref cause) => cause,
            UpdateHITReviewStatusError::ServiceFault(ref cause) => cause,
        }
    }
}
/// Errors returned by UpdateHITTypeOfHIT
#[derive(Debug, PartialEq)]
pub enum UpdateHITTypeOfHITError {
    /// <p>Your request is invalid.</p>
    RequestError(String),
    /// <p>Amazon Mechanical Turk is temporarily unable to process your request. Try your call again.</p>
    ServiceFault(String),
}

impl UpdateHITTypeOfHITError {
    pub fn from_response(res: BufferedHttpResponse) -> RusotoError<UpdateHITTypeOfHITError> {
        if let Some(err) = proto::json::Error::parse(&res) {
            match err.typ.as_str() {
                "RequestError" => {
                    return RusotoError::Service(UpdateHITTypeOfHITError::RequestError(err.msg))
                }
                "ServiceFault" => {
                    return RusotoError::Service(UpdateHITTypeOfHITError::ServiceFault(err.msg))
                }
                "ValidationException" => return RusotoError::Validation(err.msg),
                _ => {}
            }
        }
        return RusotoError::Unknown(res);
    }
}
impl fmt::Display for UpdateHITTypeOfHITError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for UpdateHITTypeOfHITError {
    fn description(&self) -> &str {
        match *self {
            UpdateHITTypeOfHITError::RequestError(ref cause) => cause,
            UpdateHITTypeOfHITError::ServiceFault(ref cause) => cause,
        }
    }
}
/// Errors returned by UpdateNotificationSettings
#[derive(Debug, PartialEq)]
pub enum UpdateNotificationSettingsError {
    /// <p>Your request is invalid.</p>
    RequestError(String),
    /// <p>Amazon Mechanical Turk is temporarily unable to process your request. Try your call again.</p>
    ServiceFault(String),
}

impl UpdateNotificationSettingsError {
    pub fn from_response(
        res: BufferedHttpResponse,
    ) -> RusotoError<UpdateNotificationSettingsError> {
        if let Some(err) = proto::json::Error::parse(&res) {
            match err.typ.as_str() {
                "RequestError" => {
                    return RusotoError::Service(UpdateNotificationSettingsError::RequestError(
                        err.msg,
                    ))
                }
                "ServiceFault" => {
                    return RusotoError::Service(UpdateNotificationSettingsError::ServiceFault(
                        err.msg,
                    ))
                }
                "ValidationException" => return RusotoError::Validation(err.msg),
                _ => {}
            }
        }
        return RusotoError::Unknown(res);
    }
}
impl fmt::Display for UpdateNotificationSettingsError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for UpdateNotificationSettingsError {
    fn description(&self) -> &str {
        match *self {
            UpdateNotificationSettingsError::RequestError(ref cause) => cause,
            UpdateNotificationSettingsError::ServiceFault(ref cause) => cause,
        }
    }
}
/// Errors returned by UpdateQualificationType
#[derive(Debug, PartialEq)]
pub enum UpdateQualificationTypeError {
    /// <p>Your request is invalid.</p>
    RequestError(String),
    /// <p>Amazon Mechanical Turk is temporarily unable to process your request. Try your call again.</p>
    ServiceFault(String),
}

impl UpdateQualificationTypeError {
    pub fn from_response(res: BufferedHttpResponse) -> RusotoError<UpdateQualificationTypeError> {
        if let Some(err) = proto::json::Error::parse(&res) {
            match err.typ.as_str() {
                "RequestError" => {
                    return RusotoError::Service(UpdateQualificationTypeError::RequestError(
                        err.msg,
                    ))
                }
                "ServiceFault" => {
                    return RusotoError::Service(UpdateQualificationTypeError::ServiceFault(
                        err.msg,
                    ))
                }
                "ValidationException" => return RusotoError::Validation(err.msg),
                _ => {}
            }
        }
        return RusotoError::Unknown(res);
    }
}
impl fmt::Display for UpdateQualificationTypeError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for UpdateQualificationTypeError {
    fn description(&self) -> &str {
        match *self {
            UpdateQualificationTypeError::RequestError(ref cause) => cause,
            UpdateQualificationTypeError::ServiceFault(ref cause) => cause,
        }
    }
}
/// Trait representing the capabilities of the Amazon MTurk API. Amazon MTurk clients implement this trait.
pub trait MechanicalTurk {
    /// <p> The <code>AcceptQualificationRequest</code> operation approves a Worker's request for a Qualification. </p> <p> Only the owner of the Qualification type can grant a Qualification request for that type. </p> <p> A successful request for the <code>AcceptQualificationRequest</code> operation returns with no errors and an empty body. </p>
    fn accept_qualification_request(
        &self,
        input: AcceptQualificationRequestRequest,
    ) -> RusotoFuture<AcceptQualificationRequestResponse, AcceptQualificationRequestError>;

    /// <p> The <code>ApproveAssignment</code> operation approves the results of a completed assignment. </p> <p> Approving an assignment initiates two payments from the Requester's Amazon.com account </p> <ul> <li> <p> The Worker who submitted the results is paid the reward specified in the HIT. </p> </li> <li> <p> Amazon Mechanical Turk fees are debited. </p> </li> </ul> <p> If the Requester's account does not have adequate funds for these payments, the call to ApproveAssignment returns an exception, and the approval is not processed. You can include an optional feedback message with the approval, which the Worker can see in the Status section of the web site. </p> <p> You can also call this operation for assignments that were previous rejected and approve them by explicitly overriding the previous rejection. This only works on rejected assignments that were submitted within the previous 30 days and only if the assignment's related HIT has not been deleted. </p>
    fn approve_assignment(
        &self,
        input: ApproveAssignmentRequest,
    ) -> RusotoFuture<ApproveAssignmentResponse, ApproveAssignmentError>;

    /// <p><p> The <code>AssociateQualificationWithWorker</code> operation gives a Worker a Qualification. <code>AssociateQualificationWithWorker</code> does not require that the Worker submit a Qualification request. It gives the Qualification directly to the Worker. </p> <p> You can only assign a Qualification of a Qualification type that you created (using the <code>CreateQualificationType</code> operation). </p> <note> <p> Note: <code>AssociateQualificationWithWorker</code> does not affect any pending Qualification requests for the Qualification by the Worker. If you assign a Qualification to a Worker, then later grant a Qualification request made by the Worker, the granting of the request may modify the Qualification score. To resolve a pending Qualification request without affecting the Qualification the Worker already has, reject the request with the <code>RejectQualificationRequest</code> operation. </p> </note></p>
    fn associate_qualification_with_worker(
        &self,
        input: AssociateQualificationWithWorkerRequest,
    ) -> RusotoFuture<AssociateQualificationWithWorkerResponse, AssociateQualificationWithWorkerError>;

    /// <p><p> The <code>CreateAdditionalAssignmentsForHIT</code> operation increases the maximum number of assignments of an existing HIT. </p> <p> To extend the maximum number of assignments, specify the number of additional assignments.</p> <note> <ul> <li> <p>HITs created with fewer than 10 assignments cannot be extended to have 10 or more assignments. Attempting to add assignments in a way that brings the total number of assignments for a HIT from fewer than 10 assignments to 10 or more assignments will result in an <code>AWS.MechanicalTurk.InvalidMaximumAssignmentsIncrease</code> exception.</p> </li> <li> <p>HITs that were created before July 22, 2015 cannot be extended. Attempting to extend HITs that were created before July 22, 2015 will result in an <code>AWS.MechanicalTurk.HITTooOldForExtension</code> exception. </p> </li> </ul> </note></p>
    fn create_additional_assignments_for_hit(
        &self,
        input: CreateAdditionalAssignmentsForHITRequest,
    ) -> RusotoFuture<
        CreateAdditionalAssignmentsForHITResponse,
        CreateAdditionalAssignmentsForHITError,
    >;

    /// <p><p>The <code>CreateHIT</code> operation creates a new Human Intelligence Task (HIT). The new HIT is made available for Workers to find and accept on the Amazon Mechanical Turk website. </p> <p> This operation allows you to specify a new HIT by passing in values for the properties of the HIT, such as its title, reward amount and number of assignments. When you pass these values to <code>CreateHIT</code>, a new HIT is created for you, with a new <code>HITTypeID</code>. The HITTypeID can be used to create additional HITs in the future without needing to specify common parameters such as the title, description and reward amount each time.</p> <p> An alternative way to create HITs is to first generate a HITTypeID using the <code>CreateHITType</code> operation and then call the <code>CreateHITWithHITType</code> operation. This is the recommended best practice for Requesters who are creating large numbers of HITs. </p> <p>CreateHIT also supports several ways to provide question data: by providing a value for the <code>Question</code> parameter that fully specifies the contents of the HIT, or by providing a <code>HitLayoutId</code> and associated <code>HitLayoutParameters</code>. </p> <note> <p> If a HIT is created with 10 or more maximum assignments, there is an additional fee. For more information, see <a href="https://requester.mturk.com/pricing">Amazon Mechanical Turk Pricing</a>.</p> </note></p>
    fn create_hit(
        &self,
        input: CreateHITRequest,
    ) -> RusotoFuture<CreateHITResponse, CreateHITError>;

    /// <p> The <code>CreateHITType</code> operation creates a new HIT type. This operation allows you to define a standard set of HIT properties to use when creating HITs. If you register a HIT type with values that match an existing HIT type, the HIT type ID of the existing type will be returned. </p>
    fn create_hit_type(
        &self,
        input: CreateHITTypeRequest,
    ) -> RusotoFuture<CreateHITTypeResponse, CreateHITTypeError>;

    /// <p><p> The <code>CreateHITWithHITType</code> operation creates a new Human Intelligence Task (HIT) using an existing HITTypeID generated by the <code>CreateHITType</code> operation. </p> <p> This is an alternative way to create HITs from the <code>CreateHIT</code> operation. This is the recommended best practice for Requesters who are creating large numbers of HITs. </p> <p>CreateHITWithHITType also supports several ways to provide question data: by providing a value for the <code>Question</code> parameter that fully specifies the contents of the HIT, or by providing a <code>HitLayoutId</code> and associated <code>HitLayoutParameters</code>. </p> <note> <p> If a HIT is created with 10 or more maximum assignments, there is an additional fee. For more information, see <a href="https://requester.mturk.com/pricing">Amazon Mechanical Turk Pricing</a>. </p> </note></p>
    fn create_hit_with_hit_type(
        &self,
        input: CreateHITWithHITTypeRequest,
    ) -> RusotoFuture<CreateHITWithHITTypeResponse, CreateHITWithHITTypeError>;

    /// <p> The <code>CreateQualificationType</code> operation creates a new Qualification type, which is represented by a <code>QualificationType</code> data structure. </p>
    fn create_qualification_type(
        &self,
        input: CreateQualificationTypeRequest,
    ) -> RusotoFuture<CreateQualificationTypeResponse, CreateQualificationTypeError>;

    /// <p>The <code>CreateWorkerBlock</code> operation allows you to prevent a Worker from working on your HITs. For example, you can block a Worker who is producing poor quality work. You can block up to 100,000 Workers.</p>
    fn create_worker_block(
        &self,
        input: CreateWorkerBlockRequest,
    ) -> RusotoFuture<CreateWorkerBlockResponse, CreateWorkerBlockError>;

    /// <p><p> The <code>DeleteHIT</code> operation is used to delete HIT that is no longer needed. Only the Requester who created the HIT can delete it. </p> <p> You can only dispose of HITs that are in the <code>Reviewable</code> state, with all of their submitted assignments already either approved or rejected. If you call the DeleteHIT operation on a HIT that is not in the <code>Reviewable</code> state (for example, that has not expired, or still has active assignments), or on a HIT that is Reviewable but without all of its submitted assignments already approved or rejected, the service will return an error. </p> <note> <ul> <li> <p> HITs are automatically disposed of after 120 days. </p> </li> <li> <p> After you dispose of a HIT, you can no longer approve the HIT&#39;s rejected assignments. </p> </li> <li> <p> Disposed HITs are not returned in results for the ListHITs operation. </p> </li> <li> <p> Disposing HITs can improve the performance of operations such as ListReviewableHITs and ListHITs. </p> </li> </ul> </note></p>
    fn delete_hit(
        &self,
        input: DeleteHITRequest,
    ) -> RusotoFuture<DeleteHITResponse, DeleteHITError>;

    /// <p><p> The <code>DeleteQualificationType</code> deletes a Qualification type and deletes any HIT types that are associated with the Qualification type. </p> <p>This operation does not revoke Qualifications already assigned to Workers because the Qualifications might be needed for active HITs. If there are any pending requests for the Qualification type, Amazon Mechanical Turk rejects those requests. After you delete a Qualification type, you can no longer use it to create HITs or HIT types.</p> <note> <p>DeleteQualificationType must wait for all the HITs that use the deleted Qualification type to be deleted before completing. It may take up to 48 hours before DeleteQualificationType completes and the unique name of the Qualification type is available for reuse with CreateQualificationType.</p> </note></p>
    fn delete_qualification_type(
        &self,
        input: DeleteQualificationTypeRequest,
    ) -> RusotoFuture<DeleteQualificationTypeResponse, DeleteQualificationTypeError>;

    /// <p>The <code>DeleteWorkerBlock</code> operation allows you to reinstate a blocked Worker to work on your HITs. This operation reverses the effects of the CreateWorkerBlock operation. You need the Worker ID to use this operation. If the Worker ID is missing or invalid, this operation fails and returns the message “WorkerId is invalid.” If the specified Worker is not blocked, this operation returns successfully.</p>
    fn delete_worker_block(
        &self,
        input: DeleteWorkerBlockRequest,
    ) -> RusotoFuture<DeleteWorkerBlockResponse, DeleteWorkerBlockError>;

    /// <p> The <code>DisassociateQualificationFromWorker</code> revokes a previously granted Qualification from a user. </p> <p> You can provide a text message explaining why the Qualification was revoked. The user who had the Qualification can see this message. </p>
    fn disassociate_qualification_from_worker(
        &self,
        input: DisassociateQualificationFromWorkerRequest,
    ) -> RusotoFuture<
        DisassociateQualificationFromWorkerResponse,
        DisassociateQualificationFromWorkerError,
    >;

    /// <p>The <code>GetAccountBalance</code> operation retrieves the amount of money in your Amazon Mechanical Turk account.</p>
    fn get_account_balance(
        &self,
    ) -> RusotoFuture<GetAccountBalanceResponse, GetAccountBalanceError>;

    /// <p> The <code>GetAssignment</code> operation retrieves the details of the specified Assignment. </p>
    fn get_assignment(
        &self,
        input: GetAssignmentRequest,
    ) -> RusotoFuture<GetAssignmentResponse, GetAssignmentError>;

    /// <p> The <code>GetFileUploadURL</code> operation generates and returns a temporary URL. You use the temporary URL to retrieve a file uploaded by a Worker as an answer to a FileUploadAnswer question for a HIT. The temporary URL is generated the instant the GetFileUploadURL operation is called, and is valid for 60 seconds. You can get a temporary file upload URL any time until the HIT is disposed. After the HIT is disposed, any uploaded files are deleted, and cannot be retrieved. Pending Deprecation on December 12, 2017. The Answer Specification structure will no longer support the <code>FileUploadAnswer</code> element to be used for the QuestionForm data structure. Instead, we recommend that Requesters who want to create HITs asking Workers to upload files to use Amazon S3. </p>
    fn get_file_upload_url(
        &self,
        input: GetFileUploadURLRequest,
    ) -> RusotoFuture<GetFileUploadURLResponse, GetFileUploadURLError>;

    /// <p> The <code>GetHIT</code> operation retrieves the details of the specified HIT. </p>
    fn get_hit(&self, input: GetHITRequest) -> RusotoFuture<GetHITResponse, GetHITError>;

    /// <p> The <code>GetQualificationScore</code> operation returns the value of a Worker's Qualification for a given Qualification type. </p> <p> To get a Worker's Qualification, you must know the Worker's ID. The Worker's ID is included in the assignment data returned by the <code>ListAssignmentsForHIT</code> operation. </p> <p>Only the owner of a Qualification type can query the value of a Worker's Qualification of that type.</p>
    fn get_qualification_score(
        &self,
        input: GetQualificationScoreRequest,
    ) -> RusotoFuture<GetQualificationScoreResponse, GetQualificationScoreError>;

    /// <p> The <code>GetQualificationType</code>operation retrieves information about a Qualification type using its ID. </p>
    fn get_qualification_type(
        &self,
        input: GetQualificationTypeRequest,
    ) -> RusotoFuture<GetQualificationTypeResponse, GetQualificationTypeError>;

    /// <p> The <code>ListAssignmentsForHIT</code> operation retrieves completed assignments for a HIT. You can use this operation to retrieve the results for a HIT. </p> <p> You can get assignments for a HIT at any time, even if the HIT is not yet Reviewable. If a HIT requested multiple assignments, and has received some results but has not yet become Reviewable, you can still retrieve the partial results with this operation. </p> <p> Use the AssignmentStatus parameter to control which set of assignments for a HIT are returned. The ListAssignmentsForHIT operation can return submitted assignments awaiting approval, or it can return assignments that have already been approved or rejected. You can set AssignmentStatus=Approved,Rejected to get assignments that have already been approved and rejected together in one result set. </p> <p> Only the Requester who created the HIT can retrieve the assignments for that HIT. </p> <p> Results are sorted and divided into numbered pages and the operation returns a single page of results. You can use the parameters of the operation to control sorting and pagination. </p>
    fn list_assignments_for_hit(
        &self,
        input: ListAssignmentsForHITRequest,
    ) -> RusotoFuture<ListAssignmentsForHITResponse, ListAssignmentsForHITError>;

    /// <p> The <code>ListBonusPayments</code> operation retrieves the amounts of bonuses you have paid to Workers for a given HIT or assignment. </p>
    fn list_bonus_payments(
        &self,
        input: ListBonusPaymentsRequest,
    ) -> RusotoFuture<ListBonusPaymentsResponse, ListBonusPaymentsError>;

    /// <p> The <code>ListHITs</code> operation returns all of a Requester's HITs. The operation returns HITs of any status, except for HITs that have been deleted of with the DeleteHIT operation or that have been auto-deleted. </p>
    fn list_hi_ts(&self, input: ListHITsRequest) -> RusotoFuture<ListHITsResponse, ListHITsError>;

    /// <p> The <code>ListHITsForQualificationType</code> operation returns the HITs that use the given Qualification type for a Qualification requirement. The operation returns HITs of any status, except for HITs that have been deleted with the <code>DeleteHIT</code> operation or that have been auto-deleted. </p>
    fn list_hi_ts_for_qualification_type(
        &self,
        input: ListHITsForQualificationTypeRequest,
    ) -> RusotoFuture<ListHITsForQualificationTypeResponse, ListHITsForQualificationTypeError>;

    /// <p> The <code>ListQualificationRequests</code> operation retrieves requests for Qualifications of a particular Qualification type. The owner of the Qualification type calls this operation to poll for pending requests, and accepts them using the AcceptQualification operation. </p>
    fn list_qualification_requests(
        &self,
        input: ListQualificationRequestsRequest,
    ) -> RusotoFuture<ListQualificationRequestsResponse, ListQualificationRequestsError>;

    /// <p> The <code>ListQualificationTypes</code> operation returns a list of Qualification types, filtered by an optional search term. </p>
    fn list_qualification_types(
        &self,
        input: ListQualificationTypesRequest,
    ) -> RusotoFuture<ListQualificationTypesResponse, ListQualificationTypesError>;

    /// <p> The <code>ListReviewPolicyResultsForHIT</code> operation retrieves the computed results and the actions taken in the course of executing your Review Policies for a given HIT. For information about how to specify Review Policies when you call CreateHIT, see Review Policies. The ListReviewPolicyResultsForHIT operation can return results for both Assignment-level and HIT-level review results. </p>
    fn list_review_policy_results_for_hit(
        &self,
        input: ListReviewPolicyResultsForHITRequest,
    ) -> RusotoFuture<ListReviewPolicyResultsForHITResponse, ListReviewPolicyResultsForHITError>;

    /// <p> The <code>ListReviewableHITs</code> operation retrieves the HITs with Status equal to Reviewable or Status equal to Reviewing that belong to the Requester calling the operation. </p>
    fn list_reviewable_hi_ts(
        &self,
        input: ListReviewableHITsRequest,
    ) -> RusotoFuture<ListReviewableHITsResponse, ListReviewableHITsError>;

    /// <p>The <code>ListWorkersBlocks</code> operation retrieves a list of Workers who are blocked from working on your HITs.</p>
    fn list_worker_blocks(
        &self,
        input: ListWorkerBlocksRequest,
    ) -> RusotoFuture<ListWorkerBlocksResponse, ListWorkerBlocksError>;

    /// <p> The <code>ListWorkersWithQualificationType</code> operation returns all of the Workers that have been associated with a given Qualification type. </p>
    fn list_workers_with_qualification_type(
        &self,
        input: ListWorkersWithQualificationTypeRequest,
    ) -> RusotoFuture<ListWorkersWithQualificationTypeResponse, ListWorkersWithQualificationTypeError>;

    /// <p> The <code>NotifyWorkers</code> operation sends an email to one or more Workers that you specify with the Worker ID. You can specify up to 100 Worker IDs to send the same message with a single call to the NotifyWorkers operation. The NotifyWorkers operation will send a notification email to a Worker only if you have previously approved or rejected work from the Worker. </p>
    fn notify_workers(
        &self,
        input: NotifyWorkersRequest,
    ) -> RusotoFuture<NotifyWorkersResponse, NotifyWorkersError>;

    /// <p> The <code>RejectAssignment</code> operation rejects the results of a completed assignment. </p> <p> You can include an optional feedback message with the rejection, which the Worker can see in the Status section of the web site. When you include a feedback message with the rejection, it helps the Worker understand why the assignment was rejected, and can improve the quality of the results the Worker submits in the future. </p> <p> Only the Requester who created the HIT can reject an assignment for the HIT. </p>
    fn reject_assignment(
        &self,
        input: RejectAssignmentRequest,
    ) -> RusotoFuture<RejectAssignmentResponse, RejectAssignmentError>;

    /// <p> The <code>RejectQualificationRequest</code> operation rejects a user's request for a Qualification. </p> <p> You can provide a text message explaining why the request was rejected. The Worker who made the request can see this message.</p>
    fn reject_qualification_request(
        &self,
        input: RejectQualificationRequestRequest,
    ) -> RusotoFuture<RejectQualificationRequestResponse, RejectQualificationRequestError>;

    /// <p> The <code>SendBonus</code> operation issues a payment of money from your account to a Worker. This payment happens separately from the reward you pay to the Worker when you approve the Worker's assignment. The SendBonus operation requires the Worker's ID and the assignment ID as parameters to initiate payment of the bonus. You must include a message that explains the reason for the bonus payment, as the Worker may not be expecting the payment. Amazon Mechanical Turk collects a fee for bonus payments, similar to the HIT listing fee. This operation fails if your account does not have enough funds to pay for both the bonus and the fees. </p>
    fn send_bonus(
        &self,
        input: SendBonusRequest,
    ) -> RusotoFuture<SendBonusResponse, SendBonusError>;

    /// <p> The <code>SendTestEventNotification</code> operation causes Amazon Mechanical Turk to send a notification message as if a HIT event occurred, according to the provided notification specification. This allows you to test notifications without setting up notifications for a real HIT type and trying to trigger them using the website. When you call this operation, the service attempts to send the test notification immediately. </p>
    fn send_test_event_notification(
        &self,
        input: SendTestEventNotificationRequest,
    ) -> RusotoFuture<SendTestEventNotificationResponse, SendTestEventNotificationError>;

    /// <p> The <code>UpdateExpirationForHIT</code> operation allows you update the expiration time of a HIT. If you update it to a time in the past, the HIT will be immediately expired. </p>
    fn update_expiration_for_hit(
        &self,
        input: UpdateExpirationForHITRequest,
    ) -> RusotoFuture<UpdateExpirationForHITResponse, UpdateExpirationForHITError>;

    /// <p> The <code>UpdateHITReviewStatus</code> operation updates the status of a HIT. If the status is Reviewable, this operation can update the status to Reviewing, or it can revert a Reviewing HIT back to the Reviewable status. </p>
    fn update_hit_review_status(
        &self,
        input: UpdateHITReviewStatusRequest,
    ) -> RusotoFuture<UpdateHITReviewStatusResponse, UpdateHITReviewStatusError>;

    /// <p> The <code>UpdateHITTypeOfHIT</code> operation allows you to change the HITType properties of a HIT. This operation disassociates the HIT from its old HITType properties and associates it with the new HITType properties. The HIT takes on the properties of the new HITType in place of the old ones. </p>
    fn update_hit_type_of_hit(
        &self,
        input: UpdateHITTypeOfHITRequest,
    ) -> RusotoFuture<UpdateHITTypeOfHITResponse, UpdateHITTypeOfHITError>;

    /// <p> The <code>UpdateNotificationSettings</code> operation creates, updates, disables or re-enables notifications for a HIT type. If you call the UpdateNotificationSettings operation for a HIT type that already has a notification specification, the operation replaces the old specification with a new one. You can call the UpdateNotificationSettings operation to enable or disable notifications for the HIT type, without having to modify the notification specification itself by providing updates to the Active status without specifying a new notification specification. To change the Active status of a HIT type's notifications, the HIT type must already have a notification specification, or one must be provided in the same call to <code>UpdateNotificationSettings</code>. </p>
    fn update_notification_settings(
        &self,
        input: UpdateNotificationSettingsRequest,
    ) -> RusotoFuture<UpdateNotificationSettingsResponse, UpdateNotificationSettingsError>;

    /// <p> The <code>UpdateQualificationType</code> operation modifies the attributes of an existing Qualification type, which is represented by a QualificationType data structure. Only the owner of a Qualification type can modify its attributes. </p> <p> Most attributes of a Qualification type can be changed after the type has been created. However, the Name and Keywords fields cannot be modified. The RetryDelayInSeconds parameter can be modified or added to change the delay or to enable retries, but RetryDelayInSeconds cannot be used to disable retries. </p> <p> You can use this operation to update the test for a Qualification type. The test is updated based on the values specified for the Test, TestDurationInSeconds and AnswerKey parameters. All three parameters specify the updated test. If you are updating the test for a type, you must specify the Test and TestDurationInSeconds parameters. The AnswerKey parameter is optional; omitting it specifies that the updated test does not have an answer key. </p> <p> If you omit the Test parameter, the test for the Qualification type is unchanged. There is no way to remove a test from a Qualification type that has one. If the type already has a test, you cannot update it to be AutoGranted. If the Qualification type does not have a test and one is provided by an update, the type will henceforth have a test. </p> <p> If you want to update the test duration or answer key for an existing test without changing the questions, you must specify a Test parameter with the original questions, along with the updated values. </p> <p> If you provide an updated Test but no AnswerKey, the new test will not have an answer key. Requests for such Qualifications must be granted manually. </p> <p> You can also update the AutoGranted and AutoGrantedValue attributes of the Qualification type.</p>
    fn update_qualification_type(
        &self,
        input: UpdateQualificationTypeRequest,
    ) -> RusotoFuture<UpdateQualificationTypeResponse, UpdateQualificationTypeError>;
}
/// A client for the Amazon MTurk API.
#[derive(Clone)]
pub struct MechanicalTurkClient {
    client: Client,
    region: region::Region,
}

impl MechanicalTurkClient {
    /// Creates a client backed by the default tokio event loop.
    ///
    /// The client will use the default credentials provider and tls client.
    pub fn new(region: region::Region) -> MechanicalTurkClient {
        Self::new_with_client(Client::shared(), region)
    }

    pub fn new_with<P, D>(
        request_dispatcher: D,
        credentials_provider: P,
        region: region::Region,
    ) -> MechanicalTurkClient
    where
        P: ProvideAwsCredentials + Send + Sync + 'static,
        P::Future: Send,
        D: DispatchSignedRequest + Send + Sync + 'static,
        D::Future: Send,
    {
        Self::new_with_client(
            Client::new_with(credentials_provider, request_dispatcher),
            region,
        )
    }

    pub fn new_with_client(client: Client, region: region::Region) -> MechanicalTurkClient {
        MechanicalTurkClient { client, region }
    }
}

impl MechanicalTurk for MechanicalTurkClient {
    /// <p> The <code>AcceptQualificationRequest</code> operation approves a Worker's request for a Qualification. </p> <p> Only the owner of the Qualification type can grant a Qualification request for that type. </p> <p> A successful request for the <code>AcceptQualificationRequest</code> operation returns with no errors and an empty body. </p>
    fn accept_qualification_request(
        &self,
        input: AcceptQualificationRequestRequest,
    ) -> RusotoFuture<AcceptQualificationRequestResponse, AcceptQualificationRequestError> {
        let mut request = SignedRequest::new("POST", "mturk-requester", &self.region, "/");

        request.set_content_type("application/x-amz-json-1.1".to_owned());
        request.add_header(
            "x-amz-target",
            "MTurkRequesterServiceV20170117.AcceptQualificationRequest",
        );
        let encoded = serde_json::to_string(&input).unwrap();
        request.set_payload(Some(encoded));

        self.client.sign_and_dispatch(request, |response| {
            if response.status.is_success() {
                Box::new(response.buffer().from_err().and_then(|response| {
                    proto::json::ResponsePayload::new(&response)
                        .deserialize::<AcceptQualificationRequestResponse, _>()
                }))
            } else {
                Box::new(response.buffer().from_err().and_then(|response| {
                    Err(AcceptQualificationRequestError::from_response(response))
                }))
            }
        })
    }

    /// <p> The <code>ApproveAssignment</code> operation approves the results of a completed assignment. </p> <p> Approving an assignment initiates two payments from the Requester's Amazon.com account </p> <ul> <li> <p> The Worker who submitted the results is paid the reward specified in the HIT. </p> </li> <li> <p> Amazon Mechanical Turk fees are debited. </p> </li> </ul> <p> If the Requester's account does not have adequate funds for these payments, the call to ApproveAssignment returns an exception, and the approval is not processed. You can include an optional feedback message with the approval, which the Worker can see in the Status section of the web site. </p> <p> You can also call this operation for assignments that were previous rejected and approve them by explicitly overriding the previous rejection. This only works on rejected assignments that were submitted within the previous 30 days and only if the assignment's related HIT has not been deleted. </p>
    fn approve_assignment(
        &self,
        input: ApproveAssignmentRequest,
    ) -> RusotoFuture<ApproveAssignmentResponse, ApproveAssignmentError> {
        let mut request = SignedRequest::new("POST", "mturk-requester", &self.region, "/");

        request.set_content_type("application/x-amz-json-1.1".to_owned());
        request.add_header(
            "x-amz-target",
            "MTurkRequesterServiceV20170117.ApproveAssignment",
        );
        let encoded = serde_json::to_string(&input).unwrap();
        request.set_payload(Some(encoded));

        self.client.sign_and_dispatch(request, |response| {
            if response.status.is_success() {
                Box::new(response.buffer().from_err().and_then(|response| {
                    proto::json::ResponsePayload::new(&response)
                        .deserialize::<ApproveAssignmentResponse, _>()
                }))
            } else {
                Box::new(
                    response
                        .buffer()
                        .from_err()
                        .and_then(|response| Err(ApproveAssignmentError::from_response(response))),
                )
            }
        })
    }

    /// <p><p> The <code>AssociateQualificationWithWorker</code> operation gives a Worker a Qualification. <code>AssociateQualificationWithWorker</code> does not require that the Worker submit a Qualification request. It gives the Qualification directly to the Worker. </p> <p> You can only assign a Qualification of a Qualification type that you created (using the <code>CreateQualificationType</code> operation). </p> <note> <p> Note: <code>AssociateQualificationWithWorker</code> does not affect any pending Qualification requests for the Qualification by the Worker. If you assign a Qualification to a Worker, then later grant a Qualification request made by the Worker, the granting of the request may modify the Qualification score. To resolve a pending Qualification request without affecting the Qualification the Worker already has, reject the request with the <code>RejectQualificationRequest</code> operation. </p> </note></p>
    fn associate_qualification_with_worker(
        &self,
        input: AssociateQualificationWithWorkerRequest,
    ) -> RusotoFuture<AssociateQualificationWithWorkerResponse, AssociateQualificationWithWorkerError>
    {
        let mut request = SignedRequest::new("POST", "mturk-requester", &self.region, "/");

        request.set_content_type("application/x-amz-json-1.1".to_owned());
        request.add_header(
            "x-amz-target",
            "MTurkRequesterServiceV20170117.AssociateQualificationWithWorker",
        );
        let encoded = serde_json::to_string(&input).unwrap();
        request.set_payload(Some(encoded));

        self.client.sign_and_dispatch(request, |response| {
            if response.status.is_success() {
                Box::new(response.buffer().from_err().and_then(|response| {
                    proto::json::ResponsePayload::new(&response)
                        .deserialize::<AssociateQualificationWithWorkerResponse, _>()
                }))
            } else {
                Box::new(response.buffer().from_err().and_then(|response| {
                    Err(AssociateQualificationWithWorkerError::from_response(
                        response,
                    ))
                }))
            }
        })
    }

    /// <p><p> The <code>CreateAdditionalAssignmentsForHIT</code> operation increases the maximum number of assignments of an existing HIT. </p> <p> To extend the maximum number of assignments, specify the number of additional assignments.</p> <note> <ul> <li> <p>HITs created with fewer than 10 assignments cannot be extended to have 10 or more assignments. Attempting to add assignments in a way that brings the total number of assignments for a HIT from fewer than 10 assignments to 10 or more assignments will result in an <code>AWS.MechanicalTurk.InvalidMaximumAssignmentsIncrease</code> exception.</p> </li> <li> <p>HITs that were created before July 22, 2015 cannot be extended. Attempting to extend HITs that were created before July 22, 2015 will result in an <code>AWS.MechanicalTurk.HITTooOldForExtension</code> exception. </p> </li> </ul> </note></p>
    fn create_additional_assignments_for_hit(
        &self,
        input: CreateAdditionalAssignmentsForHITRequest,
    ) -> RusotoFuture<
        CreateAdditionalAssignmentsForHITResponse,
        CreateAdditionalAssignmentsForHITError,
    > {
        let mut request = SignedRequest::new("POST", "mturk-requester", &self.region, "/");

        request.set_content_type("application/x-amz-json-1.1".to_owned());
        request.add_header(
            "x-amz-target",
            "MTurkRequesterServiceV20170117.CreateAdditionalAssignmentsForHIT",
        );
        let encoded = serde_json::to_string(&input).unwrap();
        request.set_payload(Some(encoded));

        self.client.sign_and_dispatch(request, |response| {
            if response.status.is_success() {
                Box::new(response.buffer().from_err().and_then(|response| {
                    proto::json::ResponsePayload::new(&response)
                        .deserialize::<CreateAdditionalAssignmentsForHITResponse, _>()
                }))
            } else {
                Box::new(response.buffer().from_err().and_then(|response| {
                    Err(CreateAdditionalAssignmentsForHITError::from_response(
                        response,
                    ))
                }))
            }
        })
    }

    /// <p><p>The <code>CreateHIT</code> operation creates a new Human Intelligence Task (HIT). The new HIT is made available for Workers to find and accept on the Amazon Mechanical Turk website. </p> <p> This operation allows you to specify a new HIT by passing in values for the properties of the HIT, such as its title, reward amount and number of assignments. When you pass these values to <code>CreateHIT</code>, a new HIT is created for you, with a new <code>HITTypeID</code>. The HITTypeID can be used to create additional HITs in the future without needing to specify common parameters such as the title, description and reward amount each time.</p> <p> An alternative way to create HITs is to first generate a HITTypeID using the <code>CreateHITType</code> operation and then call the <code>CreateHITWithHITType</code> operation. This is the recommended best practice for Requesters who are creating large numbers of HITs. </p> <p>CreateHIT also supports several ways to provide question data: by providing a value for the <code>Question</code> parameter that fully specifies the contents of the HIT, or by providing a <code>HitLayoutId</code> and associated <code>HitLayoutParameters</code>. </p> <note> <p> If a HIT is created with 10 or more maximum assignments, there is an additional fee. For more information, see <a href="https://requester.mturk.com/pricing">Amazon Mechanical Turk Pricing</a>.</p> </note></p>
    fn create_hit(
        &self,
        input: CreateHITRequest,
    ) -> RusotoFuture<CreateHITResponse, CreateHITError> {
        let mut request = SignedRequest::new("POST", "mturk-requester", &self.region, "/");

        request.set_content_type("application/x-amz-json-1.1".to_owned());
        request.add_header("x-amz-target", "MTurkRequesterServiceV20170117.CreateHIT");
        let encoded = serde_json::to_string(&input).unwrap();
        request.set_payload(Some(encoded));

        self.client.sign_and_dispatch(request, |response| {
            if response.status.is_success() {
                Box::new(response.buffer().from_err().and_then(|response| {
                    proto::json::ResponsePayload::new(&response)
                        .deserialize::<CreateHITResponse, _>()
                }))
            } else {
                Box::new(
                    response
                        .buffer()
                        .from_err()
                        .and_then(|response| Err(CreateHITError::from_response(response))),
                )
            }
        })
    }

    /// <p> The <code>CreateHITType</code> operation creates a new HIT type. This operation allows you to define a standard set of HIT properties to use when creating HITs. If you register a HIT type with values that match an existing HIT type, the HIT type ID of the existing type will be returned. </p>
    fn create_hit_type(
        &self,
        input: CreateHITTypeRequest,
    ) -> RusotoFuture<CreateHITTypeResponse, CreateHITTypeError> {
        let mut request = SignedRequest::new("POST", "mturk-requester", &self.region, "/");

        request.set_content_type("application/x-amz-json-1.1".to_owned());
        request.add_header(
            "x-amz-target",
            "MTurkRequesterServiceV20170117.CreateHITType",
        );
        let encoded = serde_json::to_string(&input).unwrap();
        request.set_payload(Some(encoded));

        self.client.sign_and_dispatch(request, |response| {
            if response.status.is_success() {
                Box::new(response.buffer().from_err().and_then(|response| {
                    proto::json::ResponsePayload::new(&response)
                        .deserialize::<CreateHITTypeResponse, _>()
                }))
            } else {
                Box::new(
                    response
                        .buffer()
                        .from_err()
                        .and_then(|response| Err(CreateHITTypeError::from_response(response))),
                )
            }
        })
    }

    /// <p><p> The <code>CreateHITWithHITType</code> operation creates a new Human Intelligence Task (HIT) using an existing HITTypeID generated by the <code>CreateHITType</code> operation. </p> <p> This is an alternative way to create HITs from the <code>CreateHIT</code> operation. This is the recommended best practice for Requesters who are creating large numbers of HITs. </p> <p>CreateHITWithHITType also supports several ways to provide question data: by providing a value for the <code>Question</code> parameter that fully specifies the contents of the HIT, or by providing a <code>HitLayoutId</code> and associated <code>HitLayoutParameters</code>. </p> <note> <p> If a HIT is created with 10 or more maximum assignments, there is an additional fee. For more information, see <a href="https://requester.mturk.com/pricing">Amazon Mechanical Turk Pricing</a>. </p> </note></p>
    fn create_hit_with_hit_type(
        &self,
        input: CreateHITWithHITTypeRequest,
    ) -> RusotoFuture<CreateHITWithHITTypeResponse, CreateHITWithHITTypeError> {
        let mut request = SignedRequest::new("POST", "mturk-requester", &self.region, "/");

        request.set_content_type("application/x-amz-json-1.1".to_owned());
        request.add_header(
            "x-amz-target",
            "MTurkRequesterServiceV20170117.CreateHITWithHITType",
        );
        let encoded = serde_json::to_string(&input).unwrap();
        request.set_payload(Some(encoded));

        self.client.sign_and_dispatch(request, |response| {
            if response.status.is_success() {
                Box::new(response.buffer().from_err().and_then(|response| {
                    proto::json::ResponsePayload::new(&response)
                        .deserialize::<CreateHITWithHITTypeResponse, _>()
                }))
            } else {
                Box::new(
                    response.buffer().from_err().and_then(|response| {
                        Err(CreateHITWithHITTypeError::from_response(response))
                    }),
                )
            }
        })
    }

    /// <p> The <code>CreateQualificationType</code> operation creates a new Qualification type, which is represented by a <code>QualificationType</code> data structure. </p>
    fn create_qualification_type(
        &self,
        input: CreateQualificationTypeRequest,
    ) -> RusotoFuture<CreateQualificationTypeResponse, CreateQualificationTypeError> {
        let mut request = SignedRequest::new("POST", "mturk-requester", &self.region, "/");

        request.set_content_type("application/x-amz-json-1.1".to_owned());
        request.add_header(
            "x-amz-target",
            "MTurkRequesterServiceV20170117.CreateQualificationType",
        );
        let encoded = serde_json::to_string(&input).unwrap();
        request.set_payload(Some(encoded));

        self.client.sign_and_dispatch(request, |response| {
            if response.status.is_success() {
                Box::new(response.buffer().from_err().and_then(|response| {
                    proto::json::ResponsePayload::new(&response)
                        .deserialize::<CreateQualificationTypeResponse, _>()
                }))
            } else {
                Box::new(response.buffer().from_err().and_then(|response| {
                    Err(CreateQualificationTypeError::from_response(response))
                }))
            }
        })
    }

    /// <p>The <code>CreateWorkerBlock</code> operation allows you to prevent a Worker from working on your HITs. For example, you can block a Worker who is producing poor quality work. You can block up to 100,000 Workers.</p>
    fn create_worker_block(
        &self,
        input: CreateWorkerBlockRequest,
    ) -> RusotoFuture<CreateWorkerBlockResponse, CreateWorkerBlockError> {
        let mut request = SignedRequest::new("POST", "mturk-requester", &self.region, "/");

        request.set_content_type("application/x-amz-json-1.1".to_owned());
        request.add_header(
            "x-amz-target",
            "MTurkRequesterServiceV20170117.CreateWorkerBlock",
        );
        let encoded = serde_json::to_string(&input).unwrap();
        request.set_payload(Some(encoded));

        self.client.sign_and_dispatch(request, |response| {
            if response.status.is_success() {
                Box::new(response.buffer().from_err().and_then(|response| {
                    proto::json::ResponsePayload::new(&response)
                        .deserialize::<CreateWorkerBlockResponse, _>()
                }))
            } else {
                Box::new(
                    response
                        .buffer()
                        .from_err()
                        .and_then(|response| Err(CreateWorkerBlockError::from_response(response))),
                )
            }
        })
    }

    /// <p><p> The <code>DeleteHIT</code> operation is used to delete HIT that is no longer needed. Only the Requester who created the HIT can delete it. </p> <p> You can only dispose of HITs that are in the <code>Reviewable</code> state, with all of their submitted assignments already either approved or rejected. If you call the DeleteHIT operation on a HIT that is not in the <code>Reviewable</code> state (for example, that has not expired, or still has active assignments), or on a HIT that is Reviewable but without all of its submitted assignments already approved or rejected, the service will return an error. </p> <note> <ul> <li> <p> HITs are automatically disposed of after 120 days. </p> </li> <li> <p> After you dispose of a HIT, you can no longer approve the HIT&#39;s rejected assignments. </p> </li> <li> <p> Disposed HITs are not returned in results for the ListHITs operation. </p> </li> <li> <p> Disposing HITs can improve the performance of operations such as ListReviewableHITs and ListHITs. </p> </li> </ul> </note></p>
    fn delete_hit(
        &self,
        input: DeleteHITRequest,
    ) -> RusotoFuture<DeleteHITResponse, DeleteHITError> {
        let mut request = SignedRequest::new("POST", "mturk-requester", &self.region, "/");

        request.set_content_type("application/x-amz-json-1.1".to_owned());
        request.add_header("x-amz-target", "MTurkRequesterServiceV20170117.DeleteHIT");
        let encoded = serde_json::to_string(&input).unwrap();
        request.set_payload(Some(encoded));

        self.client.sign_and_dispatch(request, |response| {
            if response.status.is_success() {
                Box::new(response.buffer().from_err().and_then(|response| {
                    proto::json::ResponsePayload::new(&response)
                        .deserialize::<DeleteHITResponse, _>()
                }))
            } else {
                Box::new(
                    response
                        .buffer()
                        .from_err()
                        .and_then(|response| Err(DeleteHITError::from_response(response))),
                )
            }
        })
    }

    /// <p><p> The <code>DeleteQualificationType</code> deletes a Qualification type and deletes any HIT types that are associated with the Qualification type. </p> <p>This operation does not revoke Qualifications already assigned to Workers because the Qualifications might be needed for active HITs. If there are any pending requests for the Qualification type, Amazon Mechanical Turk rejects those requests. After you delete a Qualification type, you can no longer use it to create HITs or HIT types.</p> <note> <p>DeleteQualificationType must wait for all the HITs that use the deleted Qualification type to be deleted before completing. It may take up to 48 hours before DeleteQualificationType completes and the unique name of the Qualification type is available for reuse with CreateQualificationType.</p> </note></p>
    fn delete_qualification_type(
        &self,
        input: DeleteQualificationTypeRequest,
    ) -> RusotoFuture<DeleteQualificationTypeResponse, DeleteQualificationTypeError> {
        let mut request = SignedRequest::new("POST", "mturk-requester", &self.region, "/");

        request.set_content_type("application/x-amz-json-1.1".to_owned());
        request.add_header(
            "x-amz-target",
            "MTurkRequesterServiceV20170117.DeleteQualificationType",
        );
        let encoded = serde_json::to_string(&input).unwrap();
        request.set_payload(Some(encoded));

        self.client.sign_and_dispatch(request, |response| {
            if response.status.is_success() {
                Box::new(response.buffer().from_err().and_then(|response| {
                    proto::json::ResponsePayload::new(&response)
                        .deserialize::<DeleteQualificationTypeResponse, _>()
                }))
            } else {
                Box::new(response.buffer().from_err().and_then(|response| {
                    Err(DeleteQualificationTypeError::from_response(response))
                }))
            }
        })
    }

    /// <p>The <code>DeleteWorkerBlock</code> operation allows you to reinstate a blocked Worker to work on your HITs. This operation reverses the effects of the CreateWorkerBlock operation. You need the Worker ID to use this operation. If the Worker ID is missing or invalid, this operation fails and returns the message “WorkerId is invalid.” If the specified Worker is not blocked, this operation returns successfully.</p>
    fn delete_worker_block(
        &self,
        input: DeleteWorkerBlockRequest,
    ) -> RusotoFuture<DeleteWorkerBlockResponse, DeleteWorkerBlockError> {
        let mut request = SignedRequest::new("POST", "mturk-requester", &self.region, "/");

        request.set_content_type("application/x-amz-json-1.1".to_owned());
        request.add_header(
            "x-amz-target",
            "MTurkRequesterServiceV20170117.DeleteWorkerBlock",
        );
        let encoded = serde_json::to_string(&input).unwrap();
        request.set_payload(Some(encoded));

        self.client.sign_and_dispatch(request, |response| {
            if response.status.is_success() {
                Box::new(response.buffer().from_err().and_then(|response| {
                    proto::json::ResponsePayload::new(&response)
                        .deserialize::<DeleteWorkerBlockResponse, _>()
                }))
            } else {
                Box::new(
                    response
                        .buffer()
                        .from_err()
                        .and_then(|response| Err(DeleteWorkerBlockError::from_response(response))),
                )
            }
        })
    }

    /// <p> The <code>DisassociateQualificationFromWorker</code> revokes a previously granted Qualification from a user. </p> <p> You can provide a text message explaining why the Qualification was revoked. The user who had the Qualification can see this message. </p>
    fn disassociate_qualification_from_worker(
        &self,
        input: DisassociateQualificationFromWorkerRequest,
    ) -> RusotoFuture<
        DisassociateQualificationFromWorkerResponse,
        DisassociateQualificationFromWorkerError,
    > {
        let mut request = SignedRequest::new("POST", "mturk-requester", &self.region, "/");

        request.set_content_type("application/x-amz-json-1.1".to_owned());
        request.add_header(
            "x-amz-target",
            "MTurkRequesterServiceV20170117.DisassociateQualificationFromWorker",
        );
        let encoded = serde_json::to_string(&input).unwrap();
        request.set_payload(Some(encoded));

        self.client.sign_and_dispatch(request, |response| {
            if response.status.is_success() {
                Box::new(response.buffer().from_err().and_then(|response| {
                    proto::json::ResponsePayload::new(&response)
                        .deserialize::<DisassociateQualificationFromWorkerResponse, _>()
                }))
            } else {
                Box::new(response.buffer().from_err().and_then(|response| {
                    Err(DisassociateQualificationFromWorkerError::from_response(
                        response,
                    ))
                }))
            }
        })
    }

    /// <p>The <code>GetAccountBalance</code> operation retrieves the amount of money in your Amazon Mechanical Turk account.</p>
    fn get_account_balance(
        &self,
    ) -> RusotoFuture<GetAccountBalanceResponse, GetAccountBalanceError> {
        let mut request = SignedRequest::new("POST", "mturk-requester", &self.region, "/");

        request.set_content_type("application/x-amz-json-1.1".to_owned());
        request.add_header(
            "x-amz-target",
            "MTurkRequesterServiceV20170117.GetAccountBalance",
        );
        request.set_payload(Some(bytes::Bytes::from_static(b"{}")));

        self.client.sign_and_dispatch(request, |response| {
            if response.status.is_success() {
                Box::new(response.buffer().from_err().and_then(|response| {
                    proto::json::ResponsePayload::new(&response)
                        .deserialize::<GetAccountBalanceResponse, _>()
                }))
            } else {
                Box::new(
                    response
                        .buffer()
                        .from_err()
                        .and_then(|response| Err(GetAccountBalanceError::from_response(response))),
                )
            }
        })
    }

    /// <p> The <code>GetAssignment</code> operation retrieves the details of the specified Assignment. </p>
    fn get_assignment(
        &self,
        input: GetAssignmentRequest,
    ) -> RusotoFuture<GetAssignmentResponse, GetAssignmentError> {
        let mut request = SignedRequest::new("POST", "mturk-requester", &self.region, "/");

        request.set_content_type("application/x-amz-json-1.1".to_owned());
        request.add_header(
            "x-amz-target",
            "MTurkRequesterServiceV20170117.GetAssignment",
        );
        let encoded = serde_json::to_string(&input).unwrap();
        request.set_payload(Some(encoded));

        self.client.sign_and_dispatch(request, |response| {
            if response.status.is_success() {
                Box::new(response.buffer().from_err().and_then(|response| {
                    proto::json::ResponsePayload::new(&response)
                        .deserialize::<GetAssignmentResponse, _>()
                }))
            } else {
                Box::new(
                    response
                        .buffer()
                        .from_err()
                        .and_then(|response| Err(GetAssignmentError::from_response(response))),
                )
            }
        })
    }

    /// <p> The <code>GetFileUploadURL</code> operation generates and returns a temporary URL. You use the temporary URL to retrieve a file uploaded by a Worker as an answer to a FileUploadAnswer question for a HIT. The temporary URL is generated the instant the GetFileUploadURL operation is called, and is valid for 60 seconds. You can get a temporary file upload URL any time until the HIT is disposed. After the HIT is disposed, any uploaded files are deleted, and cannot be retrieved. Pending Deprecation on December 12, 2017. The Answer Specification structure will no longer support the <code>FileUploadAnswer</code> element to be used for the QuestionForm data structure. Instead, we recommend that Requesters who want to create HITs asking Workers to upload files to use Amazon S3. </p>
    fn get_file_upload_url(
        &self,
        input: GetFileUploadURLRequest,
    ) -> RusotoFuture<GetFileUploadURLResponse, GetFileUploadURLError> {
        let mut request = SignedRequest::new("POST", "mturk-requester", &self.region, "/");

        request.set_content_type("application/x-amz-json-1.1".to_owned());
        request.add_header(
            "x-amz-target",
            "MTurkRequesterServiceV20170117.GetFileUploadURL",
        );
        let encoded = serde_json::to_string(&input).unwrap();
        request.set_payload(Some(encoded));

        self.client.sign_and_dispatch(request, |response| {
            if response.status.is_success() {
                Box::new(response.buffer().from_err().and_then(|response| {
                    proto::json::ResponsePayload::new(&response)
                        .deserialize::<GetFileUploadURLResponse, _>()
                }))
            } else {
                Box::new(
                    response
                        .buffer()
                        .from_err()
                        .and_then(|response| Err(GetFileUploadURLError::from_response(response))),
                )
            }
        })
    }

    /// <p> The <code>GetHIT</code> operation retrieves the details of the specified HIT. </p>
    fn get_hit(&self, input: GetHITRequest) -> RusotoFuture<GetHITResponse, GetHITError> {
        let mut request = SignedRequest::new("POST", "mturk-requester", &self.region, "/");

        request.set_content_type("application/x-amz-json-1.1".to_owned());
        request.add_header("x-amz-target", "MTurkRequesterServiceV20170117.GetHIT");
        let encoded = serde_json::to_string(&input).unwrap();
        request.set_payload(Some(encoded));

        self.client.sign_and_dispatch(request, |response| {
            if response.status.is_success() {
                Box::new(response.buffer().from_err().and_then(|response| {
                    proto::json::ResponsePayload::new(&response).deserialize::<GetHITResponse, _>()
                }))
            } else {
                Box::new(
                    response
                        .buffer()
                        .from_err()
                        .and_then(|response| Err(GetHITError::from_response(response))),
                )
            }
        })
    }

    /// <p> The <code>GetQualificationScore</code> operation returns the value of a Worker's Qualification for a given Qualification type. </p> <p> To get a Worker's Qualification, you must know the Worker's ID. The Worker's ID is included in the assignment data returned by the <code>ListAssignmentsForHIT</code> operation. </p> <p>Only the owner of a Qualification type can query the value of a Worker's Qualification of that type.</p>
    fn get_qualification_score(
        &self,
        input: GetQualificationScoreRequest,
    ) -> RusotoFuture<GetQualificationScoreResponse, GetQualificationScoreError> {
        let mut request = SignedRequest::new("POST", "mturk-requester", &self.region, "/");

        request.set_content_type("application/x-amz-json-1.1".to_owned());
        request.add_header(
            "x-amz-target",
            "MTurkRequesterServiceV20170117.GetQualificationScore",
        );
        let encoded = serde_json::to_string(&input).unwrap();
        request.set_payload(Some(encoded));

        self.client.sign_and_dispatch(request, |response| {
            if response.status.is_success() {
                Box::new(response.buffer().from_err().and_then(|response| {
                    proto::json::ResponsePayload::new(&response)
                        .deserialize::<GetQualificationScoreResponse, _>()
                }))
            } else {
                Box::new(
                    response.buffer().from_err().and_then(|response| {
                        Err(GetQualificationScoreError::from_response(response))
                    }),
                )
            }
        })
    }

    /// <p> The <code>GetQualificationType</code>operation retrieves information about a Qualification type using its ID. </p>
    fn get_qualification_type(
        &self,
        input: GetQualificationTypeRequest,
    ) -> RusotoFuture<GetQualificationTypeResponse, GetQualificationTypeError> {
        let mut request = SignedRequest::new("POST", "mturk-requester", &self.region, "/");

        request.set_content_type("application/x-amz-json-1.1".to_owned());
        request.add_header(
            "x-amz-target",
            "MTurkRequesterServiceV20170117.GetQualificationType",
        );
        let encoded = serde_json::to_string(&input).unwrap();
        request.set_payload(Some(encoded));

        self.client.sign_and_dispatch(request, |response| {
            if response.status.is_success() {
                Box::new(response.buffer().from_err().and_then(|response| {
                    proto::json::ResponsePayload::new(&response)
                        .deserialize::<GetQualificationTypeResponse, _>()
                }))
            } else {
                Box::new(
                    response.buffer().from_err().and_then(|response| {
                        Err(GetQualificationTypeError::from_response(response))
                    }),
                )
            }
        })
    }

    /// <p> The <code>ListAssignmentsForHIT</code> operation retrieves completed assignments for a HIT. You can use this operation to retrieve the results for a HIT. </p> <p> You can get assignments for a HIT at any time, even if the HIT is not yet Reviewable. If a HIT requested multiple assignments, and has received some results but has not yet become Reviewable, you can still retrieve the partial results with this operation. </p> <p> Use the AssignmentStatus parameter to control which set of assignments for a HIT are returned. The ListAssignmentsForHIT operation can return submitted assignments awaiting approval, or it can return assignments that have already been approved or rejected. You can set AssignmentStatus=Approved,Rejected to get assignments that have already been approved and rejected together in one result set. </p> <p> Only the Requester who created the HIT can retrieve the assignments for that HIT. </p> <p> Results are sorted and divided into numbered pages and the operation returns a single page of results. You can use the parameters of the operation to control sorting and pagination. </p>
    fn list_assignments_for_hit(
        &self,
        input: ListAssignmentsForHITRequest,
    ) -> RusotoFuture<ListAssignmentsForHITResponse, ListAssignmentsForHITError> {
        let mut request = SignedRequest::new("POST", "mturk-requester", &self.region, "/");

        request.set_content_type("application/x-amz-json-1.1".to_owned());
        request.add_header(
            "x-amz-target",
            "MTurkRequesterServiceV20170117.ListAssignmentsForHIT",
        );
        let encoded = serde_json::to_string(&input).unwrap();
        request.set_payload(Some(encoded));

        self.client.sign_and_dispatch(request, |response| {
            if response.status.is_success() {
                Box::new(response.buffer().from_err().and_then(|response| {
                    proto::json::ResponsePayload::new(&response)
                        .deserialize::<ListAssignmentsForHITResponse, _>()
                }))
            } else {
                Box::new(
                    response.buffer().from_err().and_then(|response| {
                        Err(ListAssignmentsForHITError::from_response(response))
                    }),
                )
            }
        })
    }

    /// <p> The <code>ListBonusPayments</code> operation retrieves the amounts of bonuses you have paid to Workers for a given HIT or assignment. </p>
    fn list_bonus_payments(
        &self,
        input: ListBonusPaymentsRequest,
    ) -> RusotoFuture<ListBonusPaymentsResponse, ListBonusPaymentsError> {
        let mut request = SignedRequest::new("POST", "mturk-requester", &self.region, "/");

        request.set_content_type("application/x-amz-json-1.1".to_owned());
        request.add_header(
            "x-amz-target",
            "MTurkRequesterServiceV20170117.ListBonusPayments",
        );
        let encoded = serde_json::to_string(&input).unwrap();
        request.set_payload(Some(encoded));

        self.client.sign_and_dispatch(request, |response| {
            if response.status.is_success() {
                Box::new(response.buffer().from_err().and_then(|response| {
                    proto::json::ResponsePayload::new(&response)
                        .deserialize::<ListBonusPaymentsResponse, _>()
                }))
            } else {
                Box::new(
                    response
                        .buffer()
                        .from_err()
                        .and_then(|response| Err(ListBonusPaymentsError::from_response(response))),
                )
            }
        })
    }

    /// <p> The <code>ListHITs</code> operation returns all of a Requester's HITs. The operation returns HITs of any status, except for HITs that have been deleted of with the DeleteHIT operation or that have been auto-deleted. </p>
    fn list_hi_ts(&self, input: ListHITsRequest) -> RusotoFuture<ListHITsResponse, ListHITsError> {
        let mut request = SignedRequest::new("POST", "mturk-requester", &self.region, "/");

        request.set_content_type("application/x-amz-json-1.1".to_owned());
        request.add_header("x-amz-target", "MTurkRequesterServiceV20170117.ListHITs");
        let encoded = serde_json::to_string(&input).unwrap();
        request.set_payload(Some(encoded));

        self.client.sign_and_dispatch(request, |response| {
            if response.status.is_success() {
                Box::new(response.buffer().from_err().and_then(|response| {
                    proto::json::ResponsePayload::new(&response)
                        .deserialize::<ListHITsResponse, _>()
                }))
            } else {
                Box::new(
                    response
                        .buffer()
                        .from_err()
                        .and_then(|response| Err(ListHITsError::from_response(response))),
                )
            }
        })
    }

    /// <p> The <code>ListHITsForQualificationType</code> operation returns the HITs that use the given Qualification type for a Qualification requirement. The operation returns HITs of any status, except for HITs that have been deleted with the <code>DeleteHIT</code> operation or that have been auto-deleted. </p>
    fn list_hi_ts_for_qualification_type(
        &self,
        input: ListHITsForQualificationTypeRequest,
    ) -> RusotoFuture<ListHITsForQualificationTypeResponse, ListHITsForQualificationTypeError> {
        let mut request = SignedRequest::new("POST", "mturk-requester", &self.region, "/");

        request.set_content_type("application/x-amz-json-1.1".to_owned());
        request.add_header(
            "x-amz-target",
            "MTurkRequesterServiceV20170117.ListHITsForQualificationType",
        );
        let encoded = serde_json::to_string(&input).unwrap();
        request.set_payload(Some(encoded));

        self.client.sign_and_dispatch(request, |response| {
            if response.status.is_success() {
                Box::new(response.buffer().from_err().and_then(|response| {
                    proto::json::ResponsePayload::new(&response)
                        .deserialize::<ListHITsForQualificationTypeResponse, _>()
                }))
            } else {
                Box::new(response.buffer().from_err().and_then(|response| {
                    Err(ListHITsForQualificationTypeError::from_response(response))
                }))
            }
        })
    }

    /// <p> The <code>ListQualificationRequests</code> operation retrieves requests for Qualifications of a particular Qualification type. The owner of the Qualification type calls this operation to poll for pending requests, and accepts them using the AcceptQualification operation. </p>
    fn list_qualification_requests(
        &self,
        input: ListQualificationRequestsRequest,
    ) -> RusotoFuture<ListQualificationRequestsResponse, ListQualificationRequestsError> {
        let mut request = SignedRequest::new("POST", "mturk-requester", &self.region, "/");

        request.set_content_type("application/x-amz-json-1.1".to_owned());
        request.add_header(
            "x-amz-target",
            "MTurkRequesterServiceV20170117.ListQualificationRequests",
        );
        let encoded = serde_json::to_string(&input).unwrap();
        request.set_payload(Some(encoded));

        self.client.sign_and_dispatch(request, |response| {
            if response.status.is_success() {
                Box::new(response.buffer().from_err().and_then(|response| {
                    proto::json::ResponsePayload::new(&response)
                        .deserialize::<ListQualificationRequestsResponse, _>()
                }))
            } else {
                Box::new(response.buffer().from_err().and_then(|response| {
                    Err(ListQualificationRequestsError::from_response(response))
                }))
            }
        })
    }

    /// <p> The <code>ListQualificationTypes</code> operation returns a list of Qualification types, filtered by an optional search term. </p>
    fn list_qualification_types(
        &self,
        input: ListQualificationTypesRequest,
    ) -> RusotoFuture<ListQualificationTypesResponse, ListQualificationTypesError> {
        let mut request = SignedRequest::new("POST", "mturk-requester", &self.region, "/");

        request.set_content_type("application/x-amz-json-1.1".to_owned());
        request.add_header(
            "x-amz-target",
            "MTurkRequesterServiceV20170117.ListQualificationTypes",
        );
        let encoded = serde_json::to_string(&input).unwrap();
        request.set_payload(Some(encoded));

        self.client.sign_and_dispatch(request, |response| {
            if response.status.is_success() {
                Box::new(response.buffer().from_err().and_then(|response| {
                    proto::json::ResponsePayload::new(&response)
                        .deserialize::<ListQualificationTypesResponse, _>()
                }))
            } else {
                Box::new(
                    response.buffer().from_err().and_then(|response| {
                        Err(ListQualificationTypesError::from_response(response))
                    }),
                )
            }
        })
    }

    /// <p> The <code>ListReviewPolicyResultsForHIT</code> operation retrieves the computed results and the actions taken in the course of executing your Review Policies for a given HIT. For information about how to specify Review Policies when you call CreateHIT, see Review Policies. The ListReviewPolicyResultsForHIT operation can return results for both Assignment-level and HIT-level review results. </p>
    fn list_review_policy_results_for_hit(
        &self,
        input: ListReviewPolicyResultsForHITRequest,
    ) -> RusotoFuture<ListReviewPolicyResultsForHITResponse, ListReviewPolicyResultsForHITError>
    {
        let mut request = SignedRequest::new("POST", "mturk-requester", &self.region, "/");

        request.set_content_type("application/x-amz-json-1.1".to_owned());
        request.add_header(
            "x-amz-target",
            "MTurkRequesterServiceV20170117.ListReviewPolicyResultsForHIT",
        );
        let encoded = serde_json::to_string(&input).unwrap();
        request.set_payload(Some(encoded));

        self.client.sign_and_dispatch(request, |response| {
            if response.status.is_success() {
                Box::new(response.buffer().from_err().and_then(|response| {
                    proto::json::ResponsePayload::new(&response)
                        .deserialize::<ListReviewPolicyResultsForHITResponse, _>()
                }))
            } else {
                Box::new(response.buffer().from_err().and_then(|response| {
                    Err(ListReviewPolicyResultsForHITError::from_response(response))
                }))
            }
        })
    }

    /// <p> The <code>ListReviewableHITs</code> operation retrieves the HITs with Status equal to Reviewable or Status equal to Reviewing that belong to the Requester calling the operation. </p>
    fn list_reviewable_hi_ts(
        &self,
        input: ListReviewableHITsRequest,
    ) -> RusotoFuture<ListReviewableHITsResponse, ListReviewableHITsError> {
        let mut request = SignedRequest::new("POST", "mturk-requester", &self.region, "/");

        request.set_content_type("application/x-amz-json-1.1".to_owned());
        request.add_header(
            "x-amz-target",
            "MTurkRequesterServiceV20170117.ListReviewableHITs",
        );
        let encoded = serde_json::to_string(&input).unwrap();
        request.set_payload(Some(encoded));

        self.client.sign_and_dispatch(request, |response| {
            if response.status.is_success() {
                Box::new(response.buffer().from_err().and_then(|response| {
                    proto::json::ResponsePayload::new(&response)
                        .deserialize::<ListReviewableHITsResponse, _>()
                }))
            } else {
                Box::new(
                    response
                        .buffer()
                        .from_err()
                        .and_then(|response| Err(ListReviewableHITsError::from_response(response))),
                )
            }
        })
    }

    /// <p>The <code>ListWorkersBlocks</code> operation retrieves a list of Workers who are blocked from working on your HITs.</p>
    fn list_worker_blocks(
        &self,
        input: ListWorkerBlocksRequest,
    ) -> RusotoFuture<ListWorkerBlocksResponse, ListWorkerBlocksError> {
        let mut request = SignedRequest::new("POST", "mturk-requester", &self.region, "/");

        request.set_content_type("application/x-amz-json-1.1".to_owned());
        request.add_header(
            "x-amz-target",
            "MTurkRequesterServiceV20170117.ListWorkerBlocks",
        );
        let encoded = serde_json::to_string(&input).unwrap();
        request.set_payload(Some(encoded));

        self.client.sign_and_dispatch(request, |response| {
            if response.status.is_success() {
                Box::new(response.buffer().from_err().and_then(|response| {
                    proto::json::ResponsePayload::new(&response)
                        .deserialize::<ListWorkerBlocksResponse, _>()
                }))
            } else {
                Box::new(
                    response
                        .buffer()
                        .from_err()
                        .and_then(|response| Err(ListWorkerBlocksError::from_response(response))),
                )
            }
        })
    }

    /// <p> The <code>ListWorkersWithQualificationType</code> operation returns all of the Workers that have been associated with a given Qualification type. </p>
    fn list_workers_with_qualification_type(
        &self,
        input: ListWorkersWithQualificationTypeRequest,
    ) -> RusotoFuture<ListWorkersWithQualificationTypeResponse, ListWorkersWithQualificationTypeError>
    {
        let mut request = SignedRequest::new("POST", "mturk-requester", &self.region, "/");

        request.set_content_type("application/x-amz-json-1.1".to_owned());
        request.add_header(
            "x-amz-target",
            "MTurkRequesterServiceV20170117.ListWorkersWithQualificationType",
        );
        let encoded = serde_json::to_string(&input).unwrap();
        request.set_payload(Some(encoded));

        self.client.sign_and_dispatch(request, |response| {
            if response.status.is_success() {
                Box::new(response.buffer().from_err().and_then(|response| {
                    proto::json::ResponsePayload::new(&response)
                        .deserialize::<ListWorkersWithQualificationTypeResponse, _>()
                }))
            } else {
                Box::new(response.buffer().from_err().and_then(|response| {
                    Err(ListWorkersWithQualificationTypeError::from_response(
                        response,
                    ))
                }))
            }
        })
    }

    /// <p> The <code>NotifyWorkers</code> operation sends an email to one or more Workers that you specify with the Worker ID. You can specify up to 100 Worker IDs to send the same message with a single call to the NotifyWorkers operation. The NotifyWorkers operation will send a notification email to a Worker only if you have previously approved or rejected work from the Worker. </p>
    fn notify_workers(
        &self,
        input: NotifyWorkersRequest,
    ) -> RusotoFuture<NotifyWorkersResponse, NotifyWorkersError> {
        let mut request = SignedRequest::new("POST", "mturk-requester", &self.region, "/");

        request.set_content_type("application/x-amz-json-1.1".to_owned());
        request.add_header(
            "x-amz-target",
            "MTurkRequesterServiceV20170117.NotifyWorkers",
        );
        let encoded = serde_json::to_string(&input).unwrap();
        request.set_payload(Some(encoded));

        self.client.sign_and_dispatch(request, |response| {
            if response.status.is_success() {
                Box::new(response.buffer().from_err().and_then(|response| {
                    proto::json::ResponsePayload::new(&response)
                        .deserialize::<NotifyWorkersResponse, _>()
                }))
            } else {
                Box::new(
                    response
                        .buffer()
                        .from_err()
                        .and_then(|response| Err(NotifyWorkersError::from_response(response))),
                )
            }
        })
    }

    /// <p> The <code>RejectAssignment</code> operation rejects the results of a completed assignment. </p> <p> You can include an optional feedback message with the rejection, which the Worker can see in the Status section of the web site. When you include a feedback message with the rejection, it helps the Worker understand why the assignment was rejected, and can improve the quality of the results the Worker submits in the future. </p> <p> Only the Requester who created the HIT can reject an assignment for the HIT. </p>
    fn reject_assignment(
        &self,
        input: RejectAssignmentRequest,
    ) -> RusotoFuture<RejectAssignmentResponse, RejectAssignmentError> {
        let mut request = SignedRequest::new("POST", "mturk-requester", &self.region, "/");

        request.set_content_type("application/x-amz-json-1.1".to_owned());
        request.add_header(
            "x-amz-target",
            "MTurkRequesterServiceV20170117.RejectAssignment",
        );
        let encoded = serde_json::to_string(&input).unwrap();
        request.set_payload(Some(encoded));

        self.client.sign_and_dispatch(request, |response| {
            if response.status.is_success() {
                Box::new(response.buffer().from_err().and_then(|response| {
                    proto::json::ResponsePayload::new(&response)
                        .deserialize::<RejectAssignmentResponse, _>()
                }))
            } else {
                Box::new(
                    response
                        .buffer()
                        .from_err()
                        .and_then(|response| Err(RejectAssignmentError::from_response(response))),
                )
            }
        })
    }

    /// <p> The <code>RejectQualificationRequest</code> operation rejects a user's request for a Qualification. </p> <p> You can provide a text message explaining why the request was rejected. The Worker who made the request can see this message.</p>
    fn reject_qualification_request(
        &self,
        input: RejectQualificationRequestRequest,
    ) -> RusotoFuture<RejectQualificationRequestResponse, RejectQualificationRequestError> {
        let mut request = SignedRequest::new("POST", "mturk-requester", &self.region, "/");

        request.set_content_type("application/x-amz-json-1.1".to_owned());
        request.add_header(
            "x-amz-target",
            "MTurkRequesterServiceV20170117.RejectQualificationRequest",
        );
        let encoded = serde_json::to_string(&input).unwrap();
        request.set_payload(Some(encoded));

        self.client.sign_and_dispatch(request, |response| {
            if response.status.is_success() {
                Box::new(response.buffer().from_err().and_then(|response| {
                    proto::json::ResponsePayload::new(&response)
                        .deserialize::<RejectQualificationRequestResponse, _>()
                }))
            } else {
                Box::new(response.buffer().from_err().and_then(|response| {
                    Err(RejectQualificationRequestError::from_response(response))
                }))
            }
        })
    }

    /// <p> The <code>SendBonus</code> operation issues a payment of money from your account to a Worker. This payment happens separately from the reward you pay to the Worker when you approve the Worker's assignment. The SendBonus operation requires the Worker's ID and the assignment ID as parameters to initiate payment of the bonus. You must include a message that explains the reason for the bonus payment, as the Worker may not be expecting the payment. Amazon Mechanical Turk collects a fee for bonus payments, similar to the HIT listing fee. This operation fails if your account does not have enough funds to pay for both the bonus and the fees. </p>
    fn send_bonus(
        &self,
        input: SendBonusRequest,
    ) -> RusotoFuture<SendBonusResponse, SendBonusError> {
        let mut request = SignedRequest::new("POST", "mturk-requester", &self.region, "/");

        request.set_content_type("application/x-amz-json-1.1".to_owned());
        request.add_header("x-amz-target", "MTurkRequesterServiceV20170117.SendBonus");
        let encoded = serde_json::to_string(&input).unwrap();
        request.set_payload(Some(encoded));

        self.client.sign_and_dispatch(request, |response| {
            if response.status.is_success() {
                Box::new(response.buffer().from_err().and_then(|response| {
                    proto::json::ResponsePayload::new(&response)
                        .deserialize::<SendBonusResponse, _>()
                }))
            } else {
                Box::new(
                    response
                        .buffer()
                        .from_err()
                        .and_then(|response| Err(SendBonusError::from_response(response))),
                )
            }
        })
    }

    /// <p> The <code>SendTestEventNotification</code> operation causes Amazon Mechanical Turk to send a notification message as if a HIT event occurred, according to the provided notification specification. This allows you to test notifications without setting up notifications for a real HIT type and trying to trigger them using the website. When you call this operation, the service attempts to send the test notification immediately. </p>
    fn send_test_event_notification(
        &self,
        input: SendTestEventNotificationRequest,
    ) -> RusotoFuture<SendTestEventNotificationResponse, SendTestEventNotificationError> {
        let mut request = SignedRequest::new("POST", "mturk-requester", &self.region, "/");

        request.set_content_type("application/x-amz-json-1.1".to_owned());
        request.add_header(
            "x-amz-target",
            "MTurkRequesterServiceV20170117.SendTestEventNotification",
        );
        let encoded = serde_json::to_string(&input).unwrap();
        request.set_payload(Some(encoded));

        self.client.sign_and_dispatch(request, |response| {
            if response.status.is_success() {
                Box::new(response.buffer().from_err().and_then(|response| {
                    proto::json::ResponsePayload::new(&response)
                        .deserialize::<SendTestEventNotificationResponse, _>()
                }))
            } else {
                Box::new(response.buffer().from_err().and_then(|response| {
                    Err(SendTestEventNotificationError::from_response(response))
                }))
            }
        })
    }

    /// <p> The <code>UpdateExpirationForHIT</code> operation allows you update the expiration time of a HIT. If you update it to a time in the past, the HIT will be immediately expired. </p>
    fn update_expiration_for_hit(
        &self,
        input: UpdateExpirationForHITRequest,
    ) -> RusotoFuture<UpdateExpirationForHITResponse, UpdateExpirationForHITError> {
        let mut request = SignedRequest::new("POST", "mturk-requester", &self.region, "/");

        request.set_content_type("application/x-amz-json-1.1".to_owned());
        request.add_header(
            "x-amz-target",
            "MTurkRequesterServiceV20170117.UpdateExpirationForHIT",
        );
        let encoded = serde_json::to_string(&input).unwrap();
        request.set_payload(Some(encoded));

        self.client.sign_and_dispatch(request, |response| {
            if response.status.is_success() {
                Box::new(response.buffer().from_err().and_then(|response| {
                    proto::json::ResponsePayload::new(&response)
                        .deserialize::<UpdateExpirationForHITResponse, _>()
                }))
            } else {
                Box::new(
                    response.buffer().from_err().and_then(|response| {
                        Err(UpdateExpirationForHITError::from_response(response))
                    }),
                )
            }
        })
    }

    /// <p> The <code>UpdateHITReviewStatus</code> operation updates the status of a HIT. If the status is Reviewable, this operation can update the status to Reviewing, or it can revert a Reviewing HIT back to the Reviewable status. </p>
    fn update_hit_review_status(
        &self,
        input: UpdateHITReviewStatusRequest,
    ) -> RusotoFuture<UpdateHITReviewStatusResponse, UpdateHITReviewStatusError> {
        let mut request = SignedRequest::new("POST", "mturk-requester", &self.region, "/");

        request.set_content_type("application/x-amz-json-1.1".to_owned());
        request.add_header(
            "x-amz-target",
            "MTurkRequesterServiceV20170117.UpdateHITReviewStatus",
        );
        let encoded = serde_json::to_string(&input).unwrap();
        request.set_payload(Some(encoded));

        self.client.sign_and_dispatch(request, |response| {
            if response.status.is_success() {
                Box::new(response.buffer().from_err().and_then(|response| {
                    proto::json::ResponsePayload::new(&response)
                        .deserialize::<UpdateHITReviewStatusResponse, _>()
                }))
            } else {
                Box::new(
                    response.buffer().from_err().and_then(|response| {
                        Err(UpdateHITReviewStatusError::from_response(response))
                    }),
                )
            }
        })
    }

    /// <p> The <code>UpdateHITTypeOfHIT</code> operation allows you to change the HITType properties of a HIT. This operation disassociates the HIT from its old HITType properties and associates it with the new HITType properties. The HIT takes on the properties of the new HITType in place of the old ones. </p>
    fn update_hit_type_of_hit(
        &self,
        input: UpdateHITTypeOfHITRequest,
    ) -> RusotoFuture<UpdateHITTypeOfHITResponse, UpdateHITTypeOfHITError> {
        let mut request = SignedRequest::new("POST", "mturk-requester", &self.region, "/");

        request.set_content_type("application/x-amz-json-1.1".to_owned());
        request.add_header(
            "x-amz-target",
            "MTurkRequesterServiceV20170117.UpdateHITTypeOfHIT",
        );
        let encoded = serde_json::to_string(&input).unwrap();
        request.set_payload(Some(encoded));

        self.client.sign_and_dispatch(request, |response| {
            if response.status.is_success() {
                Box::new(response.buffer().from_err().and_then(|response| {
                    proto::json::ResponsePayload::new(&response)
                        .deserialize::<UpdateHITTypeOfHITResponse, _>()
                }))
            } else {
                Box::new(
                    response
                        .buffer()
                        .from_err()
                        .and_then(|response| Err(UpdateHITTypeOfHITError::from_response(response))),
                )
            }
        })
    }

    /// <p> The <code>UpdateNotificationSettings</code> operation creates, updates, disables or re-enables notifications for a HIT type. If you call the UpdateNotificationSettings operation for a HIT type that already has a notification specification, the operation replaces the old specification with a new one. You can call the UpdateNotificationSettings operation to enable or disable notifications for the HIT type, without having to modify the notification specification itself by providing updates to the Active status without specifying a new notification specification. To change the Active status of a HIT type's notifications, the HIT type must already have a notification specification, or one must be provided in the same call to <code>UpdateNotificationSettings</code>. </p>
    fn update_notification_settings(
        &self,
        input: UpdateNotificationSettingsRequest,
    ) -> RusotoFuture<UpdateNotificationSettingsResponse, UpdateNotificationSettingsError> {
        let mut request = SignedRequest::new("POST", "mturk-requester", &self.region, "/");

        request.set_content_type("application/x-amz-json-1.1".to_owned());
        request.add_header(
            "x-amz-target",
            "MTurkRequesterServiceV20170117.UpdateNotificationSettings",
        );
        let encoded = serde_json::to_string(&input).unwrap();
        request.set_payload(Some(encoded));

        self.client.sign_and_dispatch(request, |response| {
            if response.status.is_success() {
                Box::new(response.buffer().from_err().and_then(|response| {
                    proto::json::ResponsePayload::new(&response)
                        .deserialize::<UpdateNotificationSettingsResponse, _>()
                }))
            } else {
                Box::new(response.buffer().from_err().and_then(|response| {
                    Err(UpdateNotificationSettingsError::from_response(response))
                }))
            }
        })
    }

    /// <p> The <code>UpdateQualificationType</code> operation modifies the attributes of an existing Qualification type, which is represented by a QualificationType data structure. Only the owner of a Qualification type can modify its attributes. </p> <p> Most attributes of a Qualification type can be changed after the type has been created. However, the Name and Keywords fields cannot be modified. The RetryDelayInSeconds parameter can be modified or added to change the delay or to enable retries, but RetryDelayInSeconds cannot be used to disable retries. </p> <p> You can use this operation to update the test for a Qualification type. The test is updated based on the values specified for the Test, TestDurationInSeconds and AnswerKey parameters. All three parameters specify the updated test. If you are updating the test for a type, you must specify the Test and TestDurationInSeconds parameters. The AnswerKey parameter is optional; omitting it specifies that the updated test does not have an answer key. </p> <p> If you omit the Test parameter, the test for the Qualification type is unchanged. There is no way to remove a test from a Qualification type that has one. If the type already has a test, you cannot update it to be AutoGranted. If the Qualification type does not have a test and one is provided by an update, the type will henceforth have a test. </p> <p> If you want to update the test duration or answer key for an existing test without changing the questions, you must specify a Test parameter with the original questions, along with the updated values. </p> <p> If you provide an updated Test but no AnswerKey, the new test will not have an answer key. Requests for such Qualifications must be granted manually. </p> <p> You can also update the AutoGranted and AutoGrantedValue attributes of the Qualification type.</p>
    fn update_qualification_type(
        &self,
        input: UpdateQualificationTypeRequest,
    ) -> RusotoFuture<UpdateQualificationTypeResponse, UpdateQualificationTypeError> {
        let mut request = SignedRequest::new("POST", "mturk-requester", &self.region, "/");

        request.set_content_type("application/x-amz-json-1.1".to_owned());
        request.add_header(
            "x-amz-target",
            "MTurkRequesterServiceV20170117.UpdateQualificationType",
        );
        let encoded = serde_json::to_string(&input).unwrap();
        request.set_payload(Some(encoded));

        self.client.sign_and_dispatch(request, |response| {
            if response.status.is_success() {
                Box::new(response.buffer().from_err().and_then(|response| {
                    proto::json::ResponsePayload::new(&response)
                        .deserialize::<UpdateQualificationTypeResponse, _>()
                }))
            } else {
                Box::new(response.buffer().from_err().and_then(|response| {
                    Err(UpdateQualificationTypeError::from_response(response))
                }))
            }
        })
    }
}