goa-sys 0.0.3

The FFI bindings for the GNOME Online Accounts library.
Documentation
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
// This file was generated by gir (https://github.com/gtk-rs/gir @ 0ab7700)
// from gir-files (https://github.com/gtk-rs/gir-files @ ???)
// DO NOT EDIT

#![allow(non_camel_case_types, non_upper_case_globals, non_snake_case)]
#![allow(clippy::approx_constant, clippy::type_complexity, clippy::unreadable_literal)]

extern crate libc;
extern crate gio_sys as gio;
extern crate glib_sys as glib;
extern crate gobject_sys as gobject;

#[allow(unused_imports)]
use libc::{c_int, c_char, c_uchar, c_float, c_uint, c_double,
    c_short, c_ushort, c_long, c_ulong,
    c_void, size_t, ssize_t, intptr_t, uintptr_t, time_t, FILE};

#[allow(unused_imports)]
use glib::{gboolean, gconstpointer, gpointer, GType};

// Enums
pub type GoaError = c_int;
pub const GOA_ERROR_FAILED: GoaError = 0;
pub const GOA_ERROR_NOT_SUPPORTED: GoaError = 1;
pub const GOA_ERROR_DIALOG_DISMISSED: GoaError = 2;
pub const GOA_ERROR_ACCOUNT_EXISTS: GoaError = 3;
pub const GOA_ERROR_NOT_AUTHORIZED: GoaError = 4;
pub const GOA_ERROR_SSL: GoaError = 5;

// Constants
pub const GOA_ERROR_NUM_ENTRIES: c_int = 6;

// Records
#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaAccountIface {
    pub parent_iface: gobject::GTypeInterface,
    pub handle_ensure_credentials: Option<unsafe extern "C" fn(*mut GoaAccount, *mut gio::GDBusMethodInvocation) -> gboolean>,
    pub handle_remove: Option<unsafe extern "C" fn(*mut GoaAccount, *mut gio::GDBusMethodInvocation) -> gboolean>,
    pub get_attention_needed: Option<unsafe extern "C" fn(*mut GoaAccount) -> gboolean>,
    pub get_calendar_disabled: Option<unsafe extern "C" fn(*mut GoaAccount) -> gboolean>,
    pub get_chat_disabled: Option<unsafe extern "C" fn(*mut GoaAccount) -> gboolean>,
    pub get_contacts_disabled: Option<unsafe extern "C" fn(*mut GoaAccount) -> gboolean>,
    pub get_documents_disabled: Option<unsafe extern "C" fn(*mut GoaAccount) -> gboolean>,
    pub get_id: Option<unsafe extern "C" fn(*mut GoaAccount) -> *const c_char>,
    pub get_identity: Option<unsafe extern "C" fn(*mut GoaAccount) -> *const c_char>,
    pub get_is_temporary: Option<unsafe extern "C" fn(*mut GoaAccount) -> gboolean>,
    pub get_mail_disabled: Option<unsafe extern "C" fn(*mut GoaAccount) -> gboolean>,
    pub get_presentation_identity: Option<unsafe extern "C" fn(*mut GoaAccount) -> *const c_char>,
    pub get_provider_icon: Option<unsafe extern "C" fn(*mut GoaAccount) -> *const c_char>,
    pub get_provider_name: Option<unsafe extern "C" fn(*mut GoaAccount) -> *const c_char>,
    pub get_provider_type: Option<unsafe extern "C" fn(*mut GoaAccount) -> *const c_char>,
    pub get_ticketing_disabled: Option<unsafe extern "C" fn(*mut GoaAccount) -> gboolean>,
    pub get_files_disabled: Option<unsafe extern "C" fn(*mut GoaAccount) -> gboolean>,
    pub get_photos_disabled: Option<unsafe extern "C" fn(*mut GoaAccount) -> gboolean>,
    pub get_printers_disabled: Option<unsafe extern "C" fn(*mut GoaAccount) -> gboolean>,
    pub get_read_later_disabled: Option<unsafe extern "C" fn(*mut GoaAccount) -> gboolean>,
    pub get_maps_disabled: Option<unsafe extern "C" fn(*mut GoaAccount) -> gboolean>,
    pub get_is_locked: Option<unsafe extern "C" fn(*mut GoaAccount) -> gboolean>,
    pub get_music_disabled: Option<unsafe extern "C" fn(*mut GoaAccount) -> gboolean>,
    pub get_todo_disabled: Option<unsafe extern "C" fn(*mut GoaAccount) -> gboolean>,
}

impl ::std::fmt::Debug for GoaAccountIface {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaAccountIface @ {:?}", self as *const _))
         .field("parent_iface", &self.parent_iface)
         .field("handle_ensure_credentials", &self.handle_ensure_credentials)
         .field("handle_remove", &self.handle_remove)
         .field("get_attention_needed", &self.get_attention_needed)
         .field("get_calendar_disabled", &self.get_calendar_disabled)
         .field("get_chat_disabled", &self.get_chat_disabled)
         .field("get_contacts_disabled", &self.get_contacts_disabled)
         .field("get_documents_disabled", &self.get_documents_disabled)
         .field("get_id", &self.get_id)
         .field("get_identity", &self.get_identity)
         .field("get_is_temporary", &self.get_is_temporary)
         .field("get_mail_disabled", &self.get_mail_disabled)
         .field("get_presentation_identity", &self.get_presentation_identity)
         .field("get_provider_icon", &self.get_provider_icon)
         .field("get_provider_name", &self.get_provider_name)
         .field("get_provider_type", &self.get_provider_type)
         .field("get_ticketing_disabled", &self.get_ticketing_disabled)
         .field("get_files_disabled", &self.get_files_disabled)
         .field("get_photos_disabled", &self.get_photos_disabled)
         .field("get_printers_disabled", &self.get_printers_disabled)
         .field("get_read_later_disabled", &self.get_read_later_disabled)
         .field("get_maps_disabled", &self.get_maps_disabled)
         .field("get_is_locked", &self.get_is_locked)
         .field("get_music_disabled", &self.get_music_disabled)
         .field("get_todo_disabled", &self.get_todo_disabled)
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaAccountProxyClass {
    pub parent_class: gio::GDBusProxyClass,
}

impl ::std::fmt::Debug for GoaAccountProxyClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaAccountProxyClass @ {:?}", self as *const _))
         .field("parent_class", &self.parent_class)
         .finish()
    }
}

#[repr(C)]
pub struct _GoaAccountProxyPrivate(c_void);

pub type GoaAccountProxyPrivate = *mut _GoaAccountProxyPrivate;

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaAccountSkeletonClass {
    pub parent_class: gio::GDBusInterfaceSkeletonClass,
}

impl ::std::fmt::Debug for GoaAccountSkeletonClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaAccountSkeletonClass @ {:?}", self as *const _))
         .field("parent_class", &self.parent_class)
         .finish()
    }
}

#[repr(C)]
pub struct _GoaAccountSkeletonPrivate(c_void);

pub type GoaAccountSkeletonPrivate = *mut _GoaAccountSkeletonPrivate;

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaCalendarIface {
    pub parent_iface: gobject::GTypeInterface,
    pub get_accept_ssl_errors: Option<unsafe extern "C" fn(*mut GoaCalendar) -> gboolean>,
    pub get_uri: Option<unsafe extern "C" fn(*mut GoaCalendar) -> *const c_char>,
}

impl ::std::fmt::Debug for GoaCalendarIface {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaCalendarIface @ {:?}", self as *const _))
         .field("parent_iface", &self.parent_iface)
         .field("get_accept_ssl_errors", &self.get_accept_ssl_errors)
         .field("get_uri", &self.get_uri)
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaCalendarProxyClass {
    pub parent_class: gio::GDBusProxyClass,
}

impl ::std::fmt::Debug for GoaCalendarProxyClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaCalendarProxyClass @ {:?}", self as *const _))
         .field("parent_class", &self.parent_class)
         .finish()
    }
}

#[repr(C)]
pub struct _GoaCalendarProxyPrivate(c_void);

pub type GoaCalendarProxyPrivate = *mut _GoaCalendarProxyPrivate;

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaCalendarSkeletonClass {
    pub parent_class: gio::GDBusInterfaceSkeletonClass,
}

impl ::std::fmt::Debug for GoaCalendarSkeletonClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaCalendarSkeletonClass @ {:?}", self as *const _))
         .field("parent_class", &self.parent_class)
         .finish()
    }
}

#[repr(C)]
pub struct _GoaCalendarSkeletonPrivate(c_void);

pub type GoaCalendarSkeletonPrivate = *mut _GoaCalendarSkeletonPrivate;

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaChatIface {
    pub parent_iface: gobject::GTypeInterface,
}

impl ::std::fmt::Debug for GoaChatIface {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaChatIface @ {:?}", self as *const _))
         .field("parent_iface", &self.parent_iface)
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaChatProxyClass {
    pub parent_class: gio::GDBusProxyClass,
}

impl ::std::fmt::Debug for GoaChatProxyClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaChatProxyClass @ {:?}", self as *const _))
         .field("parent_class", &self.parent_class)
         .finish()
    }
}

#[repr(C)]
pub struct _GoaChatProxyPrivate(c_void);

pub type GoaChatProxyPrivate = *mut _GoaChatProxyPrivate;

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaChatSkeletonClass {
    pub parent_class: gio::GDBusInterfaceSkeletonClass,
}

impl ::std::fmt::Debug for GoaChatSkeletonClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaChatSkeletonClass @ {:?}", self as *const _))
         .field("parent_class", &self.parent_class)
         .finish()
    }
}

#[repr(C)]
pub struct _GoaChatSkeletonPrivate(c_void);

pub type GoaChatSkeletonPrivate = *mut _GoaChatSkeletonPrivate;

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaClientClass {
    pub parent_class: gobject::GObjectClass,
}

impl ::std::fmt::Debug for GoaClientClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaClientClass @ {:?}", self as *const _))
         .field("parent_class", &self.parent_class)
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaContactsIface {
    pub parent_iface: gobject::GTypeInterface,
    pub get_accept_ssl_errors: Option<unsafe extern "C" fn(*mut GoaContacts) -> gboolean>,
    pub get_uri: Option<unsafe extern "C" fn(*mut GoaContacts) -> *const c_char>,
}

impl ::std::fmt::Debug for GoaContactsIface {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaContactsIface @ {:?}", self as *const _))
         .field("parent_iface", &self.parent_iface)
         .field("get_accept_ssl_errors", &self.get_accept_ssl_errors)
         .field("get_uri", &self.get_uri)
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaContactsProxyClass {
    pub parent_class: gio::GDBusProxyClass,
}

impl ::std::fmt::Debug for GoaContactsProxyClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaContactsProxyClass @ {:?}", self as *const _))
         .field("parent_class", &self.parent_class)
         .finish()
    }
}

#[repr(C)]
pub struct _GoaContactsProxyPrivate(c_void);

pub type GoaContactsProxyPrivate = *mut _GoaContactsProxyPrivate;

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaContactsSkeletonClass {
    pub parent_class: gio::GDBusInterfaceSkeletonClass,
}

impl ::std::fmt::Debug for GoaContactsSkeletonClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaContactsSkeletonClass @ {:?}", self as *const _))
         .field("parent_class", &self.parent_class)
         .finish()
    }
}

#[repr(C)]
pub struct _GoaContactsSkeletonPrivate(c_void);

pub type GoaContactsSkeletonPrivate = *mut _GoaContactsSkeletonPrivate;

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaDocumentsIface {
    pub parent_iface: gobject::GTypeInterface,
}

impl ::std::fmt::Debug for GoaDocumentsIface {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaDocumentsIface @ {:?}", self as *const _))
         .field("parent_iface", &self.parent_iface)
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaDocumentsProxyClass {
    pub parent_class: gio::GDBusProxyClass,
}

impl ::std::fmt::Debug for GoaDocumentsProxyClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaDocumentsProxyClass @ {:?}", self as *const _))
         .field("parent_class", &self.parent_class)
         .finish()
    }
}

#[repr(C)]
pub struct _GoaDocumentsProxyPrivate(c_void);

pub type GoaDocumentsProxyPrivate = *mut _GoaDocumentsProxyPrivate;

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaDocumentsSkeletonClass {
    pub parent_class: gio::GDBusInterfaceSkeletonClass,
}

impl ::std::fmt::Debug for GoaDocumentsSkeletonClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaDocumentsSkeletonClass @ {:?}", self as *const _))
         .field("parent_class", &self.parent_class)
         .finish()
    }
}

#[repr(C)]
pub struct _GoaDocumentsSkeletonPrivate(c_void);

pub type GoaDocumentsSkeletonPrivate = *mut _GoaDocumentsSkeletonPrivate;

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaExchangeIface {
    pub parent_iface: gobject::GTypeInterface,
    pub get_host: Option<unsafe extern "C" fn(*mut GoaExchange) -> *const c_char>,
    pub get_accept_ssl_errors: Option<unsafe extern "C" fn(*mut GoaExchange) -> gboolean>,
}

impl ::std::fmt::Debug for GoaExchangeIface {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaExchangeIface @ {:?}", self as *const _))
         .field("parent_iface", &self.parent_iface)
         .field("get_host", &self.get_host)
         .field("get_accept_ssl_errors", &self.get_accept_ssl_errors)
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaExchangeProxyClass {
    pub parent_class: gio::GDBusProxyClass,
}

impl ::std::fmt::Debug for GoaExchangeProxyClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaExchangeProxyClass @ {:?}", self as *const _))
         .field("parent_class", &self.parent_class)
         .finish()
    }
}

#[repr(C)]
pub struct _GoaExchangeProxyPrivate(c_void);

pub type GoaExchangeProxyPrivate = *mut _GoaExchangeProxyPrivate;

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaExchangeSkeletonClass {
    pub parent_class: gio::GDBusInterfaceSkeletonClass,
}

impl ::std::fmt::Debug for GoaExchangeSkeletonClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaExchangeSkeletonClass @ {:?}", self as *const _))
         .field("parent_class", &self.parent_class)
         .finish()
    }
}

#[repr(C)]
pub struct _GoaExchangeSkeletonPrivate(c_void);

pub type GoaExchangeSkeletonPrivate = *mut _GoaExchangeSkeletonPrivate;

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaFilesIface {
    pub parent_iface: gobject::GTypeInterface,
    pub get_accept_ssl_errors: Option<unsafe extern "C" fn(*mut GoaFiles) -> gboolean>,
    pub get_uri: Option<unsafe extern "C" fn(*mut GoaFiles) -> *const c_char>,
}

impl ::std::fmt::Debug for GoaFilesIface {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaFilesIface @ {:?}", self as *const _))
         .field("parent_iface", &self.parent_iface)
         .field("get_accept_ssl_errors", &self.get_accept_ssl_errors)
         .field("get_uri", &self.get_uri)
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaFilesProxyClass {
    pub parent_class: gio::GDBusProxyClass,
}

impl ::std::fmt::Debug for GoaFilesProxyClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaFilesProxyClass @ {:?}", self as *const _))
         .field("parent_class", &self.parent_class)
         .finish()
    }
}

#[repr(C)]
pub struct _GoaFilesProxyPrivate(c_void);

pub type GoaFilesProxyPrivate = *mut _GoaFilesProxyPrivate;

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaFilesSkeletonClass {
    pub parent_class: gio::GDBusInterfaceSkeletonClass,
}

impl ::std::fmt::Debug for GoaFilesSkeletonClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaFilesSkeletonClass @ {:?}", self as *const _))
         .field("parent_class", &self.parent_class)
         .finish()
    }
}

#[repr(C)]
pub struct _GoaFilesSkeletonPrivate(c_void);

pub type GoaFilesSkeletonPrivate = *mut _GoaFilesSkeletonPrivate;

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaMailIface {
    pub parent_iface: gobject::GTypeInterface,
    pub get_email_address: Option<unsafe extern "C" fn(*mut GoaMail) -> *const c_char>,
    pub get_imap_host: Option<unsafe extern "C" fn(*mut GoaMail) -> *const c_char>,
    pub get_imap_supported: Option<unsafe extern "C" fn(*mut GoaMail) -> gboolean>,
    pub get_imap_use_tls: Option<unsafe extern "C" fn(*mut GoaMail) -> gboolean>,
    pub get_imap_user_name: Option<unsafe extern "C" fn(*mut GoaMail) -> *const c_char>,
    pub get_smtp_host: Option<unsafe extern "C" fn(*mut GoaMail) -> *const c_char>,
    pub get_smtp_supported: Option<unsafe extern "C" fn(*mut GoaMail) -> gboolean>,
    pub get_smtp_use_tls: Option<unsafe extern "C" fn(*mut GoaMail) -> gboolean>,
    pub get_smtp_user_name: Option<unsafe extern "C" fn(*mut GoaMail) -> *const c_char>,
    pub get_imap_accept_ssl_errors: Option<unsafe extern "C" fn(*mut GoaMail) -> gboolean>,
    pub get_imap_use_ssl: Option<unsafe extern "C" fn(*mut GoaMail) -> gboolean>,
    pub get_name: Option<unsafe extern "C" fn(*mut GoaMail) -> *const c_char>,
    pub get_smtp_accept_ssl_errors: Option<unsafe extern "C" fn(*mut GoaMail) -> gboolean>,
    pub get_smtp_use_auth: Option<unsafe extern "C" fn(*mut GoaMail) -> gboolean>,
    pub get_smtp_use_ssl: Option<unsafe extern "C" fn(*mut GoaMail) -> gboolean>,
    pub get_smtp_auth_login: Option<unsafe extern "C" fn(*mut GoaMail) -> gboolean>,
    pub get_smtp_auth_plain: Option<unsafe extern "C" fn(*mut GoaMail) -> gboolean>,
    pub get_smtp_auth_xoauth2: Option<unsafe extern "C" fn(*mut GoaMail) -> gboolean>,
}

impl ::std::fmt::Debug for GoaMailIface {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaMailIface @ {:?}", self as *const _))
         .field("parent_iface", &self.parent_iface)
         .field("get_email_address", &self.get_email_address)
         .field("get_imap_host", &self.get_imap_host)
         .field("get_imap_supported", &self.get_imap_supported)
         .field("get_imap_use_tls", &self.get_imap_use_tls)
         .field("get_imap_user_name", &self.get_imap_user_name)
         .field("get_smtp_host", &self.get_smtp_host)
         .field("get_smtp_supported", &self.get_smtp_supported)
         .field("get_smtp_use_tls", &self.get_smtp_use_tls)
         .field("get_smtp_user_name", &self.get_smtp_user_name)
         .field("get_imap_accept_ssl_errors", &self.get_imap_accept_ssl_errors)
         .field("get_imap_use_ssl", &self.get_imap_use_ssl)
         .field("get_name", &self.get_name)
         .field("get_smtp_accept_ssl_errors", &self.get_smtp_accept_ssl_errors)
         .field("get_smtp_use_auth", &self.get_smtp_use_auth)
         .field("get_smtp_use_ssl", &self.get_smtp_use_ssl)
         .field("get_smtp_auth_login", &self.get_smtp_auth_login)
         .field("get_smtp_auth_plain", &self.get_smtp_auth_plain)
         .field("get_smtp_auth_xoauth2", &self.get_smtp_auth_xoauth2)
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaMailProxyClass {
    pub parent_class: gio::GDBusProxyClass,
}

impl ::std::fmt::Debug for GoaMailProxyClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaMailProxyClass @ {:?}", self as *const _))
         .field("parent_class", &self.parent_class)
         .finish()
    }
}

#[repr(C)]
pub struct _GoaMailProxyPrivate(c_void);

pub type GoaMailProxyPrivate = *mut _GoaMailProxyPrivate;

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaMailSkeletonClass {
    pub parent_class: gio::GDBusInterfaceSkeletonClass,
}

impl ::std::fmt::Debug for GoaMailSkeletonClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaMailSkeletonClass @ {:?}", self as *const _))
         .field("parent_class", &self.parent_class)
         .finish()
    }
}

#[repr(C)]
pub struct _GoaMailSkeletonPrivate(c_void);

pub type GoaMailSkeletonPrivate = *mut _GoaMailSkeletonPrivate;

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaManagerIface {
    pub parent_iface: gobject::GTypeInterface,
    pub handle_add_account: Option<unsafe extern "C" fn(*mut GoaManager, *mut gio::GDBusMethodInvocation, *const c_char, *const c_char, *const c_char, *mut glib::GVariant, *mut glib::GVariant) -> gboolean>,
}

impl ::std::fmt::Debug for GoaManagerIface {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaManagerIface @ {:?}", self as *const _))
         .field("parent_iface", &self.parent_iface)
         .field("handle_add_account", &self.handle_add_account)
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaManagerProxyClass {
    pub parent_class: gio::GDBusProxyClass,
}

impl ::std::fmt::Debug for GoaManagerProxyClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaManagerProxyClass @ {:?}", self as *const _))
         .field("parent_class", &self.parent_class)
         .finish()
    }
}

#[repr(C)]
pub struct _GoaManagerProxyPrivate(c_void);

pub type GoaManagerProxyPrivate = *mut _GoaManagerProxyPrivate;

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaManagerSkeletonClass {
    pub parent_class: gio::GDBusInterfaceSkeletonClass,
}

impl ::std::fmt::Debug for GoaManagerSkeletonClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaManagerSkeletonClass @ {:?}", self as *const _))
         .field("parent_class", &self.parent_class)
         .finish()
    }
}

#[repr(C)]
pub struct _GoaManagerSkeletonPrivate(c_void);

pub type GoaManagerSkeletonPrivate = *mut _GoaManagerSkeletonPrivate;

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaMapsIface {
    pub parent_iface: gobject::GTypeInterface,
}

impl ::std::fmt::Debug for GoaMapsIface {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaMapsIface @ {:?}", self as *const _))
         .field("parent_iface", &self.parent_iface)
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaMapsProxyClass {
    pub parent_class: gio::GDBusProxyClass,
}

impl ::std::fmt::Debug for GoaMapsProxyClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaMapsProxyClass @ {:?}", self as *const _))
         .field("parent_class", &self.parent_class)
         .finish()
    }
}

#[repr(C)]
pub struct _GoaMapsProxyPrivate(c_void);

pub type GoaMapsProxyPrivate = *mut _GoaMapsProxyPrivate;

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaMapsSkeletonClass {
    pub parent_class: gio::GDBusInterfaceSkeletonClass,
}

impl ::std::fmt::Debug for GoaMapsSkeletonClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaMapsSkeletonClass @ {:?}", self as *const _))
         .field("parent_class", &self.parent_class)
         .finish()
    }
}

#[repr(C)]
pub struct _GoaMapsSkeletonPrivate(c_void);

pub type GoaMapsSkeletonPrivate = *mut _GoaMapsSkeletonPrivate;

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaMediaServerIface {
    pub parent_iface: gobject::GTypeInterface,
    pub get_dlna_supported: Option<unsafe extern "C" fn(*mut GoaMediaServer) -> gboolean>,
    pub get_udn: Option<unsafe extern "C" fn(*mut GoaMediaServer) -> *const c_char>,
}

impl ::std::fmt::Debug for GoaMediaServerIface {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaMediaServerIface @ {:?}", self as *const _))
         .field("parent_iface", &self.parent_iface)
         .field("get_dlna_supported", &self.get_dlna_supported)
         .field("get_udn", &self.get_udn)
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaMediaServerProxyClass {
    pub parent_class: gio::GDBusProxyClass,
}

impl ::std::fmt::Debug for GoaMediaServerProxyClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaMediaServerProxyClass @ {:?}", self as *const _))
         .field("parent_class", &self.parent_class)
         .finish()
    }
}

#[repr(C)]
pub struct _GoaMediaServerProxyPrivate(c_void);

pub type GoaMediaServerProxyPrivate = *mut _GoaMediaServerProxyPrivate;

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaMediaServerSkeletonClass {
    pub parent_class: gio::GDBusInterfaceSkeletonClass,
}

impl ::std::fmt::Debug for GoaMediaServerSkeletonClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaMediaServerSkeletonClass @ {:?}", self as *const _))
         .field("parent_class", &self.parent_class)
         .finish()
    }
}

#[repr(C)]
pub struct _GoaMediaServerSkeletonPrivate(c_void);

pub type GoaMediaServerSkeletonPrivate = *mut _GoaMediaServerSkeletonPrivate;

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaMusicIface {
    pub parent_iface: gobject::GTypeInterface,
}

impl ::std::fmt::Debug for GoaMusicIface {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaMusicIface @ {:?}", self as *const _))
         .field("parent_iface", &self.parent_iface)
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaMusicProxyClass {
    pub parent_class: gio::GDBusProxyClass,
}

impl ::std::fmt::Debug for GoaMusicProxyClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaMusicProxyClass @ {:?}", self as *const _))
         .field("parent_class", &self.parent_class)
         .finish()
    }
}

#[repr(C)]
pub struct _GoaMusicProxyPrivate(c_void);

pub type GoaMusicProxyPrivate = *mut _GoaMusicProxyPrivate;

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaMusicSkeletonClass {
    pub parent_class: gio::GDBusInterfaceSkeletonClass,
}

impl ::std::fmt::Debug for GoaMusicSkeletonClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaMusicSkeletonClass @ {:?}", self as *const _))
         .field("parent_class", &self.parent_class)
         .finish()
    }
}

#[repr(C)]
pub struct _GoaMusicSkeletonPrivate(c_void);

pub type GoaMusicSkeletonPrivate = *mut _GoaMusicSkeletonPrivate;

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaOAuth2BasedIface {
    pub parent_iface: gobject::GTypeInterface,
    pub handle_get_access_token: Option<unsafe extern "C" fn(*mut GoaOAuth2Based, *mut gio::GDBusMethodInvocation) -> gboolean>,
    pub get_client_id: Option<unsafe extern "C" fn(*mut GoaOAuth2Based) -> *const c_char>,
    pub get_client_secret: Option<unsafe extern "C" fn(*mut GoaOAuth2Based) -> *const c_char>,
}

impl ::std::fmt::Debug for GoaOAuth2BasedIface {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaOAuth2BasedIface @ {:?}", self as *const _))
         .field("parent_iface", &self.parent_iface)
         .field("handle_get_access_token", &self.handle_get_access_token)
         .field("get_client_id", &self.get_client_id)
         .field("get_client_secret", &self.get_client_secret)
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaOAuth2BasedProxyClass {
    pub parent_class: gio::GDBusProxyClass,
}

impl ::std::fmt::Debug for GoaOAuth2BasedProxyClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaOAuth2BasedProxyClass @ {:?}", self as *const _))
         .field("parent_class", &self.parent_class)
         .finish()
    }
}

#[repr(C)]
pub struct _GoaOAuth2BasedProxyPrivate(c_void);

pub type GoaOAuth2BasedProxyPrivate = *mut _GoaOAuth2BasedProxyPrivate;

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaOAuth2BasedSkeletonClass {
    pub parent_class: gio::GDBusInterfaceSkeletonClass,
}

impl ::std::fmt::Debug for GoaOAuth2BasedSkeletonClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaOAuth2BasedSkeletonClass @ {:?}", self as *const _))
         .field("parent_class", &self.parent_class)
         .finish()
    }
}

#[repr(C)]
pub struct _GoaOAuth2BasedSkeletonPrivate(c_void);

pub type GoaOAuth2BasedSkeletonPrivate = *mut _GoaOAuth2BasedSkeletonPrivate;

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaOAuthBasedIface {
    pub parent_iface: gobject::GTypeInterface,
    pub handle_get_access_token: Option<unsafe extern "C" fn(*mut GoaOAuthBased, *mut gio::GDBusMethodInvocation) -> gboolean>,
    pub get_consumer_key: Option<unsafe extern "C" fn(*mut GoaOAuthBased) -> *const c_char>,
    pub get_consumer_secret: Option<unsafe extern "C" fn(*mut GoaOAuthBased) -> *const c_char>,
}

impl ::std::fmt::Debug for GoaOAuthBasedIface {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaOAuthBasedIface @ {:?}", self as *const _))
         .field("parent_iface", &self.parent_iface)
         .field("handle_get_access_token", &self.handle_get_access_token)
         .field("get_consumer_key", &self.get_consumer_key)
         .field("get_consumer_secret", &self.get_consumer_secret)
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaOAuthBasedProxyClass {
    pub parent_class: gio::GDBusProxyClass,
}

impl ::std::fmt::Debug for GoaOAuthBasedProxyClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaOAuthBasedProxyClass @ {:?}", self as *const _))
         .field("parent_class", &self.parent_class)
         .finish()
    }
}

#[repr(C)]
pub struct _GoaOAuthBasedProxyPrivate(c_void);

pub type GoaOAuthBasedProxyPrivate = *mut _GoaOAuthBasedProxyPrivate;

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaOAuthBasedSkeletonClass {
    pub parent_class: gio::GDBusInterfaceSkeletonClass,
}

impl ::std::fmt::Debug for GoaOAuthBasedSkeletonClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaOAuthBasedSkeletonClass @ {:?}", self as *const _))
         .field("parent_class", &self.parent_class)
         .finish()
    }
}

#[repr(C)]
pub struct _GoaOAuthBasedSkeletonPrivate(c_void);

pub type GoaOAuthBasedSkeletonPrivate = *mut _GoaOAuthBasedSkeletonPrivate;

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaObjectIface {
    pub parent_iface: gobject::GTypeInterface,
}

impl ::std::fmt::Debug for GoaObjectIface {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaObjectIface @ {:?}", self as *const _))
         .field("parent_iface", &self.parent_iface)
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaObjectManagerClientClass {
    pub parent_class: gio::GDBusObjectManagerClientClass,
}

impl ::std::fmt::Debug for GoaObjectManagerClientClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaObjectManagerClientClass @ {:?}", self as *const _))
         .field("parent_class", &self.parent_class)
         .finish()
    }
}

#[repr(C)]
pub struct _GoaObjectManagerClientPrivate(c_void);

pub type GoaObjectManagerClientPrivate = *mut _GoaObjectManagerClientPrivate;

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaObjectProxyClass {
    pub parent_class: gio::GDBusObjectProxyClass,
}

impl ::std::fmt::Debug for GoaObjectProxyClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaObjectProxyClass @ {:?}", self as *const _))
         .field("parent_class", &self.parent_class)
         .finish()
    }
}

#[repr(C)]
pub struct _GoaObjectProxyPrivate(c_void);

pub type GoaObjectProxyPrivate = *mut _GoaObjectProxyPrivate;

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaObjectSkeletonClass {
    pub parent_class: gio::GDBusObjectSkeletonClass,
}

impl ::std::fmt::Debug for GoaObjectSkeletonClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaObjectSkeletonClass @ {:?}", self as *const _))
         .field("parent_class", &self.parent_class)
         .finish()
    }
}

#[repr(C)]
pub struct _GoaObjectSkeletonPrivate(c_void);

pub type GoaObjectSkeletonPrivate = *mut _GoaObjectSkeletonPrivate;

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaPasswordBasedIface {
    pub parent_iface: gobject::GTypeInterface,
    pub handle_get_password: Option<unsafe extern "C" fn(*mut GoaPasswordBased, *mut gio::GDBusMethodInvocation, *const c_char) -> gboolean>,
}

impl ::std::fmt::Debug for GoaPasswordBasedIface {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaPasswordBasedIface @ {:?}", self as *const _))
         .field("parent_iface", &self.parent_iface)
         .field("handle_get_password", &self.handle_get_password)
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaPasswordBasedProxyClass {
    pub parent_class: gio::GDBusProxyClass,
}

impl ::std::fmt::Debug for GoaPasswordBasedProxyClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaPasswordBasedProxyClass @ {:?}", self as *const _))
         .field("parent_class", &self.parent_class)
         .finish()
    }
}

#[repr(C)]
pub struct _GoaPasswordBasedProxyPrivate(c_void);

pub type GoaPasswordBasedProxyPrivate = *mut _GoaPasswordBasedProxyPrivate;

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaPasswordBasedSkeletonClass {
    pub parent_class: gio::GDBusInterfaceSkeletonClass,
}

impl ::std::fmt::Debug for GoaPasswordBasedSkeletonClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaPasswordBasedSkeletonClass @ {:?}", self as *const _))
         .field("parent_class", &self.parent_class)
         .finish()
    }
}

#[repr(C)]
pub struct _GoaPasswordBasedSkeletonPrivate(c_void);

pub type GoaPasswordBasedSkeletonPrivate = *mut _GoaPasswordBasedSkeletonPrivate;

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaPhotosIface {
    pub parent_iface: gobject::GTypeInterface,
}

impl ::std::fmt::Debug for GoaPhotosIface {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaPhotosIface @ {:?}", self as *const _))
         .field("parent_iface", &self.parent_iface)
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaPhotosProxyClass {
    pub parent_class: gio::GDBusProxyClass,
}

impl ::std::fmt::Debug for GoaPhotosProxyClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaPhotosProxyClass @ {:?}", self as *const _))
         .field("parent_class", &self.parent_class)
         .finish()
    }
}

#[repr(C)]
pub struct _GoaPhotosProxyPrivate(c_void);

pub type GoaPhotosProxyPrivate = *mut _GoaPhotosProxyPrivate;

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaPhotosSkeletonClass {
    pub parent_class: gio::GDBusInterfaceSkeletonClass,
}

impl ::std::fmt::Debug for GoaPhotosSkeletonClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaPhotosSkeletonClass @ {:?}", self as *const _))
         .field("parent_class", &self.parent_class)
         .finish()
    }
}

#[repr(C)]
pub struct _GoaPhotosSkeletonPrivate(c_void);

pub type GoaPhotosSkeletonPrivate = *mut _GoaPhotosSkeletonPrivate;

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaPrintersIface {
    pub parent_iface: gobject::GTypeInterface,
}

impl ::std::fmt::Debug for GoaPrintersIface {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaPrintersIface @ {:?}", self as *const _))
         .field("parent_iface", &self.parent_iface)
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaPrintersProxyClass {
    pub parent_class: gio::GDBusProxyClass,
}

impl ::std::fmt::Debug for GoaPrintersProxyClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaPrintersProxyClass @ {:?}", self as *const _))
         .field("parent_class", &self.parent_class)
         .finish()
    }
}

#[repr(C)]
pub struct _GoaPrintersProxyPrivate(c_void);

pub type GoaPrintersProxyPrivate = *mut _GoaPrintersProxyPrivate;

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaPrintersSkeletonClass {
    pub parent_class: gio::GDBusInterfaceSkeletonClass,
}

impl ::std::fmt::Debug for GoaPrintersSkeletonClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaPrintersSkeletonClass @ {:?}", self as *const _))
         .field("parent_class", &self.parent_class)
         .finish()
    }
}

#[repr(C)]
pub struct _GoaPrintersSkeletonPrivate(c_void);

pub type GoaPrintersSkeletonPrivate = *mut _GoaPrintersSkeletonPrivate;

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaReadLaterIface {
    pub parent_iface: gobject::GTypeInterface,
}

impl ::std::fmt::Debug for GoaReadLaterIface {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaReadLaterIface @ {:?}", self as *const _))
         .field("parent_iface", &self.parent_iface)
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaReadLaterProxyClass {
    pub parent_class: gio::GDBusProxyClass,
}

impl ::std::fmt::Debug for GoaReadLaterProxyClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaReadLaterProxyClass @ {:?}", self as *const _))
         .field("parent_class", &self.parent_class)
         .finish()
    }
}

#[repr(C)]
pub struct _GoaReadLaterProxyPrivate(c_void);

pub type GoaReadLaterProxyPrivate = *mut _GoaReadLaterProxyPrivate;

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaReadLaterSkeletonClass {
    pub parent_class: gio::GDBusInterfaceSkeletonClass,
}

impl ::std::fmt::Debug for GoaReadLaterSkeletonClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaReadLaterSkeletonClass @ {:?}", self as *const _))
         .field("parent_class", &self.parent_class)
         .finish()
    }
}

#[repr(C)]
pub struct _GoaReadLaterSkeletonPrivate(c_void);

pub type GoaReadLaterSkeletonPrivate = *mut _GoaReadLaterSkeletonPrivate;

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaTicketingIface {
    pub parent_iface: gobject::GTypeInterface,
    pub handle_get_ticket: Option<unsafe extern "C" fn(*mut GoaTicketing, *mut gio::GDBusMethodInvocation) -> gboolean>,
    pub get_details: Option<unsafe extern "C" fn(*mut GoaTicketing) -> *mut glib::GVariant>,
}

impl ::std::fmt::Debug for GoaTicketingIface {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaTicketingIface @ {:?}", self as *const _))
         .field("parent_iface", &self.parent_iface)
         .field("handle_get_ticket", &self.handle_get_ticket)
         .field("get_details", &self.get_details)
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaTicketingProxyClass {
    pub parent_class: gio::GDBusProxyClass,
}

impl ::std::fmt::Debug for GoaTicketingProxyClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaTicketingProxyClass @ {:?}", self as *const _))
         .field("parent_class", &self.parent_class)
         .finish()
    }
}

#[repr(C)]
pub struct _GoaTicketingProxyPrivate(c_void);

pub type GoaTicketingProxyPrivate = *mut _GoaTicketingProxyPrivate;

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaTicketingSkeletonClass {
    pub parent_class: gio::GDBusInterfaceSkeletonClass,
}

impl ::std::fmt::Debug for GoaTicketingSkeletonClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaTicketingSkeletonClass @ {:?}", self as *const _))
         .field("parent_class", &self.parent_class)
         .finish()
    }
}

#[repr(C)]
pub struct _GoaTicketingSkeletonPrivate(c_void);

pub type GoaTicketingSkeletonPrivate = *mut _GoaTicketingSkeletonPrivate;

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaTodoIface {
    pub parent_iface: gobject::GTypeInterface,
}

impl ::std::fmt::Debug for GoaTodoIface {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaTodoIface @ {:?}", self as *const _))
         .field("parent_iface", &self.parent_iface)
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaTodoProxyClass {
    pub parent_class: gio::GDBusProxyClass,
}

impl ::std::fmt::Debug for GoaTodoProxyClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaTodoProxyClass @ {:?}", self as *const _))
         .field("parent_class", &self.parent_class)
         .finish()
    }
}

#[repr(C)]
pub struct _GoaTodoProxyPrivate(c_void);

pub type GoaTodoProxyPrivate = *mut _GoaTodoProxyPrivate;

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaTodoSkeletonClass {
    pub parent_class: gio::GDBusInterfaceSkeletonClass,
}

impl ::std::fmt::Debug for GoaTodoSkeletonClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaTodoSkeletonClass @ {:?}", self as *const _))
         .field("parent_class", &self.parent_class)
         .finish()
    }
}

#[repr(C)]
pub struct _GoaTodoSkeletonPrivate(c_void);

pub type GoaTodoSkeletonPrivate = *mut _GoaTodoSkeletonPrivate;

// Classes
#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaAccountProxy {
    pub parent_instance: gio::GDBusProxy,
    pub priv_: *mut GoaAccountProxyPrivate,
}

impl ::std::fmt::Debug for GoaAccountProxy {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaAccountProxy @ {:?}", self as *const _))
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaAccountSkeleton {
    pub parent_instance: gio::GDBusInterfaceSkeleton,
    pub priv_: *mut GoaAccountSkeletonPrivate,
}

impl ::std::fmt::Debug for GoaAccountSkeleton {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaAccountSkeleton @ {:?}", self as *const _))
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaCalendarProxy {
    pub parent_instance: gio::GDBusProxy,
    pub priv_: *mut GoaCalendarProxyPrivate,
}

impl ::std::fmt::Debug for GoaCalendarProxy {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaCalendarProxy @ {:?}", self as *const _))
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaCalendarSkeleton {
    pub parent_instance: gio::GDBusInterfaceSkeleton,
    pub priv_: *mut GoaCalendarSkeletonPrivate,
}

impl ::std::fmt::Debug for GoaCalendarSkeleton {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaCalendarSkeleton @ {:?}", self as *const _))
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaChatProxy {
    pub parent_instance: gio::GDBusProxy,
    pub priv_: *mut GoaChatProxyPrivate,
}

impl ::std::fmt::Debug for GoaChatProxy {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaChatProxy @ {:?}", self as *const _))
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaChatSkeleton {
    pub parent_instance: gio::GDBusInterfaceSkeleton,
    pub priv_: *mut GoaChatSkeletonPrivate,
}

impl ::std::fmt::Debug for GoaChatSkeleton {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaChatSkeleton @ {:?}", self as *const _))
         .finish()
    }
}

#[repr(C)]
pub struct GoaClient(c_void);

impl ::std::fmt::Debug for GoaClient {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaClient @ {:?}", self as *const _))
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaContactsProxy {
    pub parent_instance: gio::GDBusProxy,
    pub priv_: *mut GoaContactsProxyPrivate,
}

impl ::std::fmt::Debug for GoaContactsProxy {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaContactsProxy @ {:?}", self as *const _))
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaContactsSkeleton {
    pub parent_instance: gio::GDBusInterfaceSkeleton,
    pub priv_: *mut GoaContactsSkeletonPrivate,
}

impl ::std::fmt::Debug for GoaContactsSkeleton {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaContactsSkeleton @ {:?}", self as *const _))
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaDocumentsProxy {
    pub parent_instance: gio::GDBusProxy,
    pub priv_: *mut GoaDocumentsProxyPrivate,
}

impl ::std::fmt::Debug for GoaDocumentsProxy {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaDocumentsProxy @ {:?}", self as *const _))
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaDocumentsSkeleton {
    pub parent_instance: gio::GDBusInterfaceSkeleton,
    pub priv_: *mut GoaDocumentsSkeletonPrivate,
}

impl ::std::fmt::Debug for GoaDocumentsSkeleton {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaDocumentsSkeleton @ {:?}", self as *const _))
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaExchangeProxy {
    pub parent_instance: gio::GDBusProxy,
    pub priv_: *mut GoaExchangeProxyPrivate,
}

impl ::std::fmt::Debug for GoaExchangeProxy {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaExchangeProxy @ {:?}", self as *const _))
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaExchangeSkeleton {
    pub parent_instance: gio::GDBusInterfaceSkeleton,
    pub priv_: *mut GoaExchangeSkeletonPrivate,
}

impl ::std::fmt::Debug for GoaExchangeSkeleton {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaExchangeSkeleton @ {:?}", self as *const _))
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaFilesProxy {
    pub parent_instance: gio::GDBusProxy,
    pub priv_: *mut GoaFilesProxyPrivate,
}

impl ::std::fmt::Debug for GoaFilesProxy {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaFilesProxy @ {:?}", self as *const _))
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaFilesSkeleton {
    pub parent_instance: gio::GDBusInterfaceSkeleton,
    pub priv_: *mut GoaFilesSkeletonPrivate,
}

impl ::std::fmt::Debug for GoaFilesSkeleton {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaFilesSkeleton @ {:?}", self as *const _))
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaMailProxy {
    pub parent_instance: gio::GDBusProxy,
    pub priv_: *mut GoaMailProxyPrivate,
}

impl ::std::fmt::Debug for GoaMailProxy {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaMailProxy @ {:?}", self as *const _))
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaMailSkeleton {
    pub parent_instance: gio::GDBusInterfaceSkeleton,
    pub priv_: *mut GoaMailSkeletonPrivate,
}

impl ::std::fmt::Debug for GoaMailSkeleton {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaMailSkeleton @ {:?}", self as *const _))
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaManagerProxy {
    pub parent_instance: gio::GDBusProxy,
    pub priv_: *mut GoaManagerProxyPrivate,
}

impl ::std::fmt::Debug for GoaManagerProxy {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaManagerProxy @ {:?}", self as *const _))
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaManagerSkeleton {
    pub parent_instance: gio::GDBusInterfaceSkeleton,
    pub priv_: *mut GoaManagerSkeletonPrivate,
}

impl ::std::fmt::Debug for GoaManagerSkeleton {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaManagerSkeleton @ {:?}", self as *const _))
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaMapsProxy {
    pub parent_instance: gio::GDBusProxy,
    pub priv_: *mut GoaMapsProxyPrivate,
}

impl ::std::fmt::Debug for GoaMapsProxy {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaMapsProxy @ {:?}", self as *const _))
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaMapsSkeleton {
    pub parent_instance: gio::GDBusInterfaceSkeleton,
    pub priv_: *mut GoaMapsSkeletonPrivate,
}

impl ::std::fmt::Debug for GoaMapsSkeleton {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaMapsSkeleton @ {:?}", self as *const _))
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaMediaServerProxy {
    pub parent_instance: gio::GDBusProxy,
    pub priv_: *mut GoaMediaServerProxyPrivate,
}

impl ::std::fmt::Debug for GoaMediaServerProxy {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaMediaServerProxy @ {:?}", self as *const _))
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaMediaServerSkeleton {
    pub parent_instance: gio::GDBusInterfaceSkeleton,
    pub priv_: *mut GoaMediaServerSkeletonPrivate,
}

impl ::std::fmt::Debug for GoaMediaServerSkeleton {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaMediaServerSkeleton @ {:?}", self as *const _))
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaMusicProxy {
    pub parent_instance: gio::GDBusProxy,
    pub priv_: *mut GoaMusicProxyPrivate,
}

impl ::std::fmt::Debug for GoaMusicProxy {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaMusicProxy @ {:?}", self as *const _))
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaMusicSkeleton {
    pub parent_instance: gio::GDBusInterfaceSkeleton,
    pub priv_: *mut GoaMusicSkeletonPrivate,
}

impl ::std::fmt::Debug for GoaMusicSkeleton {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaMusicSkeleton @ {:?}", self as *const _))
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaOAuth2BasedProxy {
    pub parent_instance: gio::GDBusProxy,
    pub priv_: *mut GoaOAuth2BasedProxyPrivate,
}

impl ::std::fmt::Debug for GoaOAuth2BasedProxy {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaOAuth2BasedProxy @ {:?}", self as *const _))
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaOAuth2BasedSkeleton {
    pub parent_instance: gio::GDBusInterfaceSkeleton,
    pub priv_: *mut GoaOAuth2BasedSkeletonPrivate,
}

impl ::std::fmt::Debug for GoaOAuth2BasedSkeleton {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaOAuth2BasedSkeleton @ {:?}", self as *const _))
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaOAuthBasedProxy {
    pub parent_instance: gio::GDBusProxy,
    pub priv_: *mut GoaOAuthBasedProxyPrivate,
}

impl ::std::fmt::Debug for GoaOAuthBasedProxy {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaOAuthBasedProxy @ {:?}", self as *const _))
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaOAuthBasedSkeleton {
    pub parent_instance: gio::GDBusInterfaceSkeleton,
    pub priv_: *mut GoaOAuthBasedSkeletonPrivate,
}

impl ::std::fmt::Debug for GoaOAuthBasedSkeleton {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaOAuthBasedSkeleton @ {:?}", self as *const _))
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaObjectManagerClient {
    pub parent_instance: gio::GDBusObjectManagerClient,
    pub priv_: *mut GoaObjectManagerClientPrivate,
}

impl ::std::fmt::Debug for GoaObjectManagerClient {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaObjectManagerClient @ {:?}", self as *const _))
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaObjectProxy {
    pub parent_instance: gio::GDBusObjectProxy,
    pub priv_: *mut GoaObjectProxyPrivate,
}

impl ::std::fmt::Debug for GoaObjectProxy {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaObjectProxy @ {:?}", self as *const _))
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaObjectSkeleton {
    pub parent_instance: gio::GDBusObjectSkeleton,
    pub priv_: *mut GoaObjectSkeletonPrivate,
}

impl ::std::fmt::Debug for GoaObjectSkeleton {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaObjectSkeleton @ {:?}", self as *const _))
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaPasswordBasedProxy {
    pub parent_instance: gio::GDBusProxy,
    pub priv_: *mut GoaPasswordBasedProxyPrivate,
}

impl ::std::fmt::Debug for GoaPasswordBasedProxy {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaPasswordBasedProxy @ {:?}", self as *const _))
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaPasswordBasedSkeleton {
    pub parent_instance: gio::GDBusInterfaceSkeleton,
    pub priv_: *mut GoaPasswordBasedSkeletonPrivate,
}

impl ::std::fmt::Debug for GoaPasswordBasedSkeleton {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaPasswordBasedSkeleton @ {:?}", self as *const _))
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaPhotosProxy {
    pub parent_instance: gio::GDBusProxy,
    pub priv_: *mut GoaPhotosProxyPrivate,
}

impl ::std::fmt::Debug for GoaPhotosProxy {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaPhotosProxy @ {:?}", self as *const _))
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaPhotosSkeleton {
    pub parent_instance: gio::GDBusInterfaceSkeleton,
    pub priv_: *mut GoaPhotosSkeletonPrivate,
}

impl ::std::fmt::Debug for GoaPhotosSkeleton {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaPhotosSkeleton @ {:?}", self as *const _))
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaPrintersProxy {
    pub parent_instance: gio::GDBusProxy,
    pub priv_: *mut GoaPrintersProxyPrivate,
}

impl ::std::fmt::Debug for GoaPrintersProxy {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaPrintersProxy @ {:?}", self as *const _))
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaPrintersSkeleton {
    pub parent_instance: gio::GDBusInterfaceSkeleton,
    pub priv_: *mut GoaPrintersSkeletonPrivate,
}

impl ::std::fmt::Debug for GoaPrintersSkeleton {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaPrintersSkeleton @ {:?}", self as *const _))
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaReadLaterProxy {
    pub parent_instance: gio::GDBusProxy,
    pub priv_: *mut GoaReadLaterProxyPrivate,
}

impl ::std::fmt::Debug for GoaReadLaterProxy {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaReadLaterProxy @ {:?}", self as *const _))
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaReadLaterSkeleton {
    pub parent_instance: gio::GDBusInterfaceSkeleton,
    pub priv_: *mut GoaReadLaterSkeletonPrivate,
}

impl ::std::fmt::Debug for GoaReadLaterSkeleton {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaReadLaterSkeleton @ {:?}", self as *const _))
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaTicketingProxy {
    pub parent_instance: gio::GDBusProxy,
    pub priv_: *mut GoaTicketingProxyPrivate,
}

impl ::std::fmt::Debug for GoaTicketingProxy {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaTicketingProxy @ {:?}", self as *const _))
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaTicketingSkeleton {
    pub parent_instance: gio::GDBusInterfaceSkeleton,
    pub priv_: *mut GoaTicketingSkeletonPrivate,
}

impl ::std::fmt::Debug for GoaTicketingSkeleton {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaTicketingSkeleton @ {:?}", self as *const _))
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaTodoProxy {
    pub parent_instance: gio::GDBusProxy,
    pub priv_: *mut GoaTodoProxyPrivate,
}

impl ::std::fmt::Debug for GoaTodoProxy {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaTodoProxy @ {:?}", self as *const _))
         .finish()
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct GoaTodoSkeleton {
    pub parent_instance: gio::GDBusInterfaceSkeleton,
    pub priv_: *mut GoaTodoSkeletonPrivate,
}

impl ::std::fmt::Debug for GoaTodoSkeleton {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("GoaTodoSkeleton @ {:?}", self as *const _))
         .finish()
    }
}

// Interfaces
#[repr(C)]
pub struct GoaAccount(c_void);

impl ::std::fmt::Debug for GoaAccount {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        write!(f, "GoaAccount @ {:?}", self as *const _)
    }
}

#[repr(C)]
pub struct GoaCalendar(c_void);

impl ::std::fmt::Debug for GoaCalendar {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        write!(f, "GoaCalendar @ {:?}", self as *const _)
    }
}

#[repr(C)]
pub struct GoaChat(c_void);

impl ::std::fmt::Debug for GoaChat {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        write!(f, "GoaChat @ {:?}", self as *const _)
    }
}

#[repr(C)]
pub struct GoaContacts(c_void);

impl ::std::fmt::Debug for GoaContacts {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        write!(f, "GoaContacts @ {:?}", self as *const _)
    }
}

#[repr(C)]
pub struct GoaDocuments(c_void);

impl ::std::fmt::Debug for GoaDocuments {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        write!(f, "GoaDocuments @ {:?}", self as *const _)
    }
}

#[repr(C)]
pub struct GoaExchange(c_void);

impl ::std::fmt::Debug for GoaExchange {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        write!(f, "GoaExchange @ {:?}", self as *const _)
    }
}

#[repr(C)]
pub struct GoaFiles(c_void);

impl ::std::fmt::Debug for GoaFiles {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        write!(f, "GoaFiles @ {:?}", self as *const _)
    }
}

#[repr(C)]
pub struct GoaMail(c_void);

impl ::std::fmt::Debug for GoaMail {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        write!(f, "GoaMail @ {:?}", self as *const _)
    }
}

#[repr(C)]
pub struct GoaManager(c_void);

impl ::std::fmt::Debug for GoaManager {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        write!(f, "GoaManager @ {:?}", self as *const _)
    }
}

#[repr(C)]
pub struct GoaMaps(c_void);

impl ::std::fmt::Debug for GoaMaps {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        write!(f, "GoaMaps @ {:?}", self as *const _)
    }
}

#[repr(C)]
pub struct GoaMediaServer(c_void);

impl ::std::fmt::Debug for GoaMediaServer {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        write!(f, "GoaMediaServer @ {:?}", self as *const _)
    }
}

#[repr(C)]
pub struct GoaMusic(c_void);

impl ::std::fmt::Debug for GoaMusic {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        write!(f, "GoaMusic @ {:?}", self as *const _)
    }
}

#[repr(C)]
pub struct GoaOAuth2Based(c_void);

impl ::std::fmt::Debug for GoaOAuth2Based {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        write!(f, "GoaOAuth2Based @ {:?}", self as *const _)
    }
}

#[repr(C)]
pub struct GoaOAuthBased(c_void);

impl ::std::fmt::Debug for GoaOAuthBased {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        write!(f, "GoaOAuthBased @ {:?}", self as *const _)
    }
}

#[repr(C)]
pub struct GoaObject(c_void);

impl ::std::fmt::Debug for GoaObject {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        write!(f, "GoaObject @ {:?}", self as *const _)
    }
}

#[repr(C)]
pub struct GoaPasswordBased(c_void);

impl ::std::fmt::Debug for GoaPasswordBased {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        write!(f, "GoaPasswordBased @ {:?}", self as *const _)
    }
}

#[repr(C)]
pub struct GoaPhotos(c_void);

impl ::std::fmt::Debug for GoaPhotos {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        write!(f, "GoaPhotos @ {:?}", self as *const _)
    }
}

#[repr(C)]
pub struct GoaPrinters(c_void);

impl ::std::fmt::Debug for GoaPrinters {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        write!(f, "GoaPrinters @ {:?}", self as *const _)
    }
}

#[repr(C)]
pub struct GoaReadLater(c_void);

impl ::std::fmt::Debug for GoaReadLater {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        write!(f, "GoaReadLater @ {:?}", self as *const _)
    }
}

#[repr(C)]
pub struct GoaTicketing(c_void);

impl ::std::fmt::Debug for GoaTicketing {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        write!(f, "GoaTicketing @ {:?}", self as *const _)
    }
}

#[repr(C)]
pub struct GoaTodo(c_void);

impl ::std::fmt::Debug for GoaTodo {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        write!(f, "GoaTodo @ {:?}", self as *const _)
    }
}


extern "C" {

    //=========================================================================
    // GoaError
    //=========================================================================
    pub fn goa_error_get_type() -> GType;
    pub fn goa_error_quark() -> glib::GQuark;

    //=========================================================================
    // GoaAccountProxy
    //=========================================================================
    pub fn goa_account_proxy_get_type() -> GType;
    pub fn goa_account_proxy_new_finish(res: *mut gio::GAsyncResult, error: *mut *mut glib::GError) -> *mut GoaAccountProxy;
    pub fn goa_account_proxy_new_for_bus_finish(res: *mut gio::GAsyncResult, error: *mut *mut glib::GError) -> *mut GoaAccountProxy;
    pub fn goa_account_proxy_new_for_bus_sync(bus_type: gio::GBusType, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, error: *mut *mut glib::GError) -> *mut GoaAccountProxy;
    pub fn goa_account_proxy_new_sync(connection: *mut gio::GDBusConnection, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, error: *mut *mut glib::GError) -> *mut GoaAccountProxy;
    pub fn goa_account_proxy_new(connection: *mut gio::GDBusConnection, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, callback: gio::GAsyncReadyCallback, user_data: gpointer);
    pub fn goa_account_proxy_new_for_bus(bus_type: gio::GBusType, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, callback: gio::GAsyncReadyCallback, user_data: gpointer);

    //=========================================================================
    // GoaAccountSkeleton
    //=========================================================================
    pub fn goa_account_skeleton_get_type() -> GType;
    pub fn goa_account_skeleton_new() -> *mut GoaAccountSkeleton;

    //=========================================================================
    // GoaCalendarProxy
    //=========================================================================
    pub fn goa_calendar_proxy_get_type() -> GType;
    pub fn goa_calendar_proxy_new_finish(res: *mut gio::GAsyncResult, error: *mut *mut glib::GError) -> *mut GoaCalendarProxy;
    pub fn goa_calendar_proxy_new_for_bus_finish(res: *mut gio::GAsyncResult, error: *mut *mut glib::GError) -> *mut GoaCalendarProxy;
    pub fn goa_calendar_proxy_new_for_bus_sync(bus_type: gio::GBusType, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, error: *mut *mut glib::GError) -> *mut GoaCalendarProxy;
    pub fn goa_calendar_proxy_new_sync(connection: *mut gio::GDBusConnection, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, error: *mut *mut glib::GError) -> *mut GoaCalendarProxy;
    pub fn goa_calendar_proxy_new(connection: *mut gio::GDBusConnection, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, callback: gio::GAsyncReadyCallback, user_data: gpointer);
    pub fn goa_calendar_proxy_new_for_bus(bus_type: gio::GBusType, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, callback: gio::GAsyncReadyCallback, user_data: gpointer);

    //=========================================================================
    // GoaCalendarSkeleton
    //=========================================================================
    pub fn goa_calendar_skeleton_get_type() -> GType;
    pub fn goa_calendar_skeleton_new() -> *mut GoaCalendarSkeleton;

    //=========================================================================
    // GoaChatProxy
    //=========================================================================
    pub fn goa_chat_proxy_get_type() -> GType;
    pub fn goa_chat_proxy_new_finish(res: *mut gio::GAsyncResult, error: *mut *mut glib::GError) -> *mut GoaChatProxy;
    pub fn goa_chat_proxy_new_for_bus_finish(res: *mut gio::GAsyncResult, error: *mut *mut glib::GError) -> *mut GoaChatProxy;
    pub fn goa_chat_proxy_new_for_bus_sync(bus_type: gio::GBusType, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, error: *mut *mut glib::GError) -> *mut GoaChatProxy;
    pub fn goa_chat_proxy_new_sync(connection: *mut gio::GDBusConnection, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, error: *mut *mut glib::GError) -> *mut GoaChatProxy;
    pub fn goa_chat_proxy_new(connection: *mut gio::GDBusConnection, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, callback: gio::GAsyncReadyCallback, user_data: gpointer);
    pub fn goa_chat_proxy_new_for_bus(bus_type: gio::GBusType, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, callback: gio::GAsyncReadyCallback, user_data: gpointer);

    //=========================================================================
    // GoaChatSkeleton
    //=========================================================================
    pub fn goa_chat_skeleton_get_type() -> GType;
    pub fn goa_chat_skeleton_new() -> *mut GoaChatSkeleton;

    //=========================================================================
    // GoaClient
    //=========================================================================
    pub fn goa_client_get_type() -> GType;
    pub fn goa_client_new_finish(res: *mut gio::GAsyncResult, error: *mut *mut glib::GError) -> *mut GoaClient;
    pub fn goa_client_new_sync(cancellable: *mut gio::GCancellable, error: *mut *mut glib::GError) -> *mut GoaClient;
    pub fn goa_client_new(cancellable: *mut gio::GCancellable, callback: gio::GAsyncReadyCallback, user_data: gpointer);
    pub fn goa_client_get_accounts(self_: *mut GoaClient) -> *mut glib::GList;
    pub fn goa_client_get_manager(self_: *mut GoaClient) -> *mut GoaManager;
    pub fn goa_client_get_object_manager(self_: *mut GoaClient) -> *mut gio::GDBusObjectManager;
    #[cfg(any(feature = "v3_6", feature = "dox"))]
    pub fn goa_client_lookup_by_id(self_: *mut GoaClient, id: *const c_char) -> *mut GoaObject;

    //=========================================================================
    // GoaContactsProxy
    //=========================================================================
    pub fn goa_contacts_proxy_get_type() -> GType;
    pub fn goa_contacts_proxy_new_finish(res: *mut gio::GAsyncResult, error: *mut *mut glib::GError) -> *mut GoaContactsProxy;
    pub fn goa_contacts_proxy_new_for_bus_finish(res: *mut gio::GAsyncResult, error: *mut *mut glib::GError) -> *mut GoaContactsProxy;
    pub fn goa_contacts_proxy_new_for_bus_sync(bus_type: gio::GBusType, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, error: *mut *mut glib::GError) -> *mut GoaContactsProxy;
    pub fn goa_contacts_proxy_new_sync(connection: *mut gio::GDBusConnection, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, error: *mut *mut glib::GError) -> *mut GoaContactsProxy;
    pub fn goa_contacts_proxy_new(connection: *mut gio::GDBusConnection, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, callback: gio::GAsyncReadyCallback, user_data: gpointer);
    pub fn goa_contacts_proxy_new_for_bus(bus_type: gio::GBusType, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, callback: gio::GAsyncReadyCallback, user_data: gpointer);

    //=========================================================================
    // GoaContactsSkeleton
    //=========================================================================
    pub fn goa_contacts_skeleton_get_type() -> GType;
    pub fn goa_contacts_skeleton_new() -> *mut GoaContactsSkeleton;

    //=========================================================================
    // GoaDocumentsProxy
    //=========================================================================
    pub fn goa_documents_proxy_get_type() -> GType;
    pub fn goa_documents_proxy_new_finish(res: *mut gio::GAsyncResult, error: *mut *mut glib::GError) -> *mut GoaDocumentsProxy;
    pub fn goa_documents_proxy_new_for_bus_finish(res: *mut gio::GAsyncResult, error: *mut *mut glib::GError) -> *mut GoaDocumentsProxy;
    pub fn goa_documents_proxy_new_for_bus_sync(bus_type: gio::GBusType, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, error: *mut *mut glib::GError) -> *mut GoaDocumentsProxy;
    pub fn goa_documents_proxy_new_sync(connection: *mut gio::GDBusConnection, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, error: *mut *mut glib::GError) -> *mut GoaDocumentsProxy;
    pub fn goa_documents_proxy_new(connection: *mut gio::GDBusConnection, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, callback: gio::GAsyncReadyCallback, user_data: gpointer);
    pub fn goa_documents_proxy_new_for_bus(bus_type: gio::GBusType, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, callback: gio::GAsyncReadyCallback, user_data: gpointer);

    //=========================================================================
    // GoaDocumentsSkeleton
    //=========================================================================
    pub fn goa_documents_skeleton_get_type() -> GType;
    pub fn goa_documents_skeleton_new() -> *mut GoaDocumentsSkeleton;

    //=========================================================================
    // GoaExchangeProxy
    //=========================================================================
    pub fn goa_exchange_proxy_get_type() -> GType;
    #[cfg(any(feature = "v3_6", feature = "dox"))]
    pub fn goa_exchange_proxy_new_finish(res: *mut gio::GAsyncResult, error: *mut *mut glib::GError) -> *mut GoaExchangeProxy;
    #[cfg(any(feature = "v3_6", feature = "dox"))]
    pub fn goa_exchange_proxy_new_for_bus_finish(res: *mut gio::GAsyncResult, error: *mut *mut glib::GError) -> *mut GoaExchangeProxy;
    #[cfg(any(feature = "v3_6", feature = "dox"))]
    pub fn goa_exchange_proxy_new_for_bus_sync(bus_type: gio::GBusType, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, error: *mut *mut glib::GError) -> *mut GoaExchangeProxy;
    #[cfg(any(feature = "v3_6", feature = "dox"))]
    pub fn goa_exchange_proxy_new_sync(connection: *mut gio::GDBusConnection, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, error: *mut *mut glib::GError) -> *mut GoaExchangeProxy;
    #[cfg(any(feature = "v3_6", feature = "dox"))]
    pub fn goa_exchange_proxy_new(connection: *mut gio::GDBusConnection, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, callback: gio::GAsyncReadyCallback, user_data: gpointer);
    #[cfg(any(feature = "v3_6", feature = "dox"))]
    pub fn goa_exchange_proxy_new_for_bus(bus_type: gio::GBusType, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, callback: gio::GAsyncReadyCallback, user_data: gpointer);

    //=========================================================================
    // GoaExchangeSkeleton
    //=========================================================================
    pub fn goa_exchange_skeleton_get_type() -> GType;
    #[cfg(any(feature = "v3_6", feature = "dox"))]
    pub fn goa_exchange_skeleton_new() -> *mut GoaExchangeSkeleton;

    //=========================================================================
    // GoaFilesProxy
    //=========================================================================
    pub fn goa_files_proxy_get_type() -> GType;
    #[cfg(any(feature = "v3_8", feature = "dox"))]
    pub fn goa_files_proxy_new_finish(res: *mut gio::GAsyncResult, error: *mut *mut glib::GError) -> *mut GoaFilesProxy;
    #[cfg(any(feature = "v3_8", feature = "dox"))]
    pub fn goa_files_proxy_new_for_bus_finish(res: *mut gio::GAsyncResult, error: *mut *mut glib::GError) -> *mut GoaFilesProxy;
    #[cfg(any(feature = "v3_8", feature = "dox"))]
    pub fn goa_files_proxy_new_for_bus_sync(bus_type: gio::GBusType, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, error: *mut *mut glib::GError) -> *mut GoaFilesProxy;
    #[cfg(any(feature = "v3_8", feature = "dox"))]
    pub fn goa_files_proxy_new_sync(connection: *mut gio::GDBusConnection, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, error: *mut *mut glib::GError) -> *mut GoaFilesProxy;
    #[cfg(any(feature = "v3_8", feature = "dox"))]
    pub fn goa_files_proxy_new(connection: *mut gio::GDBusConnection, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, callback: gio::GAsyncReadyCallback, user_data: gpointer);
    #[cfg(any(feature = "v3_8", feature = "dox"))]
    pub fn goa_files_proxy_new_for_bus(bus_type: gio::GBusType, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, callback: gio::GAsyncReadyCallback, user_data: gpointer);

    //=========================================================================
    // GoaFilesSkeleton
    //=========================================================================
    pub fn goa_files_skeleton_get_type() -> GType;
    #[cfg(any(feature = "v3_8", feature = "dox"))]
    pub fn goa_files_skeleton_new() -> *mut GoaFilesSkeleton;

    //=========================================================================
    // GoaMailProxy
    //=========================================================================
    pub fn goa_mail_proxy_get_type() -> GType;
    pub fn goa_mail_proxy_new_finish(res: *mut gio::GAsyncResult, error: *mut *mut glib::GError) -> *mut GoaMailProxy;
    pub fn goa_mail_proxy_new_for_bus_finish(res: *mut gio::GAsyncResult, error: *mut *mut glib::GError) -> *mut GoaMailProxy;
    pub fn goa_mail_proxy_new_for_bus_sync(bus_type: gio::GBusType, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, error: *mut *mut glib::GError) -> *mut GoaMailProxy;
    pub fn goa_mail_proxy_new_sync(connection: *mut gio::GDBusConnection, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, error: *mut *mut glib::GError) -> *mut GoaMailProxy;
    pub fn goa_mail_proxy_new(connection: *mut gio::GDBusConnection, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, callback: gio::GAsyncReadyCallback, user_data: gpointer);
    pub fn goa_mail_proxy_new_for_bus(bus_type: gio::GBusType, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, callback: gio::GAsyncReadyCallback, user_data: gpointer);

    //=========================================================================
    // GoaMailSkeleton
    //=========================================================================
    pub fn goa_mail_skeleton_get_type() -> GType;
    pub fn goa_mail_skeleton_new() -> *mut GoaMailSkeleton;

    //=========================================================================
    // GoaManagerProxy
    //=========================================================================
    pub fn goa_manager_proxy_get_type() -> GType;
    pub fn goa_manager_proxy_new_finish(res: *mut gio::GAsyncResult, error: *mut *mut glib::GError) -> *mut GoaManagerProxy;
    pub fn goa_manager_proxy_new_for_bus_finish(res: *mut gio::GAsyncResult, error: *mut *mut glib::GError) -> *mut GoaManagerProxy;
    pub fn goa_manager_proxy_new_for_bus_sync(bus_type: gio::GBusType, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, error: *mut *mut glib::GError) -> *mut GoaManagerProxy;
    pub fn goa_manager_proxy_new_sync(connection: *mut gio::GDBusConnection, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, error: *mut *mut glib::GError) -> *mut GoaManagerProxy;
    pub fn goa_manager_proxy_new(connection: *mut gio::GDBusConnection, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, callback: gio::GAsyncReadyCallback, user_data: gpointer);
    pub fn goa_manager_proxy_new_for_bus(bus_type: gio::GBusType, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, callback: gio::GAsyncReadyCallback, user_data: gpointer);

    //=========================================================================
    // GoaManagerSkeleton
    //=========================================================================
    pub fn goa_manager_skeleton_get_type() -> GType;
    pub fn goa_manager_skeleton_new() -> *mut GoaManagerSkeleton;

    //=========================================================================
    // GoaMapsProxy
    //=========================================================================
    pub fn goa_maps_proxy_get_type() -> GType;
    #[cfg(any(feature = "v3_14", feature = "dox"))]
    pub fn goa_maps_proxy_new_finish(res: *mut gio::GAsyncResult, error: *mut *mut glib::GError) -> *mut GoaMapsProxy;
    #[cfg(any(feature = "v3_14", feature = "dox"))]
    pub fn goa_maps_proxy_new_for_bus_finish(res: *mut gio::GAsyncResult, error: *mut *mut glib::GError) -> *mut GoaMapsProxy;
    #[cfg(any(feature = "v3_14", feature = "dox"))]
    pub fn goa_maps_proxy_new_for_bus_sync(bus_type: gio::GBusType, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, error: *mut *mut glib::GError) -> *mut GoaMapsProxy;
    #[cfg(any(feature = "v3_14", feature = "dox"))]
    pub fn goa_maps_proxy_new_sync(connection: *mut gio::GDBusConnection, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, error: *mut *mut glib::GError) -> *mut GoaMapsProxy;
    #[cfg(any(feature = "v3_14", feature = "dox"))]
    pub fn goa_maps_proxy_new(connection: *mut gio::GDBusConnection, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, callback: gio::GAsyncReadyCallback, user_data: gpointer);
    #[cfg(any(feature = "v3_14", feature = "dox"))]
    pub fn goa_maps_proxy_new_for_bus(bus_type: gio::GBusType, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, callback: gio::GAsyncReadyCallback, user_data: gpointer);

    //=========================================================================
    // GoaMapsSkeleton
    //=========================================================================
    pub fn goa_maps_skeleton_get_type() -> GType;
    #[cfg(any(feature = "v3_14", feature = "dox"))]
    pub fn goa_maps_skeleton_new() -> *mut GoaMapsSkeleton;

    //=========================================================================
    // GoaMediaServerProxy
    //=========================================================================
    pub fn goa_media_server_proxy_get_type() -> GType;
    #[cfg(any(feature = "v3_14", feature = "dox"))]
    pub fn goa_media_server_proxy_new_finish(res: *mut gio::GAsyncResult, error: *mut *mut glib::GError) -> *mut GoaMediaServerProxy;
    #[cfg(any(feature = "v3_14", feature = "dox"))]
    pub fn goa_media_server_proxy_new_for_bus_finish(res: *mut gio::GAsyncResult, error: *mut *mut glib::GError) -> *mut GoaMediaServerProxy;
    #[cfg(any(feature = "v3_14", feature = "dox"))]
    pub fn goa_media_server_proxy_new_for_bus_sync(bus_type: gio::GBusType, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, error: *mut *mut glib::GError) -> *mut GoaMediaServerProxy;
    #[cfg(any(feature = "v3_14", feature = "dox"))]
    pub fn goa_media_server_proxy_new_sync(connection: *mut gio::GDBusConnection, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, error: *mut *mut glib::GError) -> *mut GoaMediaServerProxy;
    #[cfg(any(feature = "v3_14", feature = "dox"))]
    pub fn goa_media_server_proxy_new(connection: *mut gio::GDBusConnection, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, callback: gio::GAsyncReadyCallback, user_data: gpointer);
    #[cfg(any(feature = "v3_14", feature = "dox"))]
    pub fn goa_media_server_proxy_new_for_bus(bus_type: gio::GBusType, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, callback: gio::GAsyncReadyCallback, user_data: gpointer);

    //=========================================================================
    // GoaMediaServerSkeleton
    //=========================================================================
    pub fn goa_media_server_skeleton_get_type() -> GType;
    #[cfg(any(feature = "v3_14", feature = "dox"))]
    pub fn goa_media_server_skeleton_new() -> *mut GoaMediaServerSkeleton;

    //=========================================================================
    // GoaMusicProxy
    //=========================================================================
    pub fn goa_music_proxy_get_type() -> GType;
    #[cfg(any(feature = "v3_18", feature = "dox"))]
    pub fn goa_music_proxy_new_finish(res: *mut gio::GAsyncResult, error: *mut *mut glib::GError) -> *mut GoaMusicProxy;
    #[cfg(any(feature = "v3_18", feature = "dox"))]
    pub fn goa_music_proxy_new_for_bus_finish(res: *mut gio::GAsyncResult, error: *mut *mut glib::GError) -> *mut GoaMusicProxy;
    #[cfg(any(feature = "v3_18", feature = "dox"))]
    pub fn goa_music_proxy_new_for_bus_sync(bus_type: gio::GBusType, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, error: *mut *mut glib::GError) -> *mut GoaMusicProxy;
    #[cfg(any(feature = "v3_18", feature = "dox"))]
    pub fn goa_music_proxy_new_sync(connection: *mut gio::GDBusConnection, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, error: *mut *mut glib::GError) -> *mut GoaMusicProxy;
    #[cfg(any(feature = "v3_18", feature = "dox"))]
    pub fn goa_music_proxy_new(connection: *mut gio::GDBusConnection, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, callback: gio::GAsyncReadyCallback, user_data: gpointer);
    #[cfg(any(feature = "v3_18", feature = "dox"))]
    pub fn goa_music_proxy_new_for_bus(bus_type: gio::GBusType, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, callback: gio::GAsyncReadyCallback, user_data: gpointer);

    //=========================================================================
    // GoaMusicSkeleton
    //=========================================================================
    pub fn goa_music_skeleton_get_type() -> GType;
    #[cfg(any(feature = "v3_18", feature = "dox"))]
    pub fn goa_music_skeleton_new() -> *mut GoaMusicSkeleton;

    //=========================================================================
    // GoaOAuth2BasedProxy
    //=========================================================================
    pub fn goa_oauth2_based_proxy_get_type() -> GType;
    pub fn goa_oauth2_based_proxy_new_finish(res: *mut gio::GAsyncResult, error: *mut *mut glib::GError) -> *mut GoaOAuth2BasedProxy;
    pub fn goa_oauth2_based_proxy_new_for_bus_finish(res: *mut gio::GAsyncResult, error: *mut *mut glib::GError) -> *mut GoaOAuth2BasedProxy;
    pub fn goa_oauth2_based_proxy_new_for_bus_sync(bus_type: gio::GBusType, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, error: *mut *mut glib::GError) -> *mut GoaOAuth2BasedProxy;
    pub fn goa_oauth2_based_proxy_new_sync(connection: *mut gio::GDBusConnection, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, error: *mut *mut glib::GError) -> *mut GoaOAuth2BasedProxy;
    pub fn goa_oauth2_based_proxy_new(connection: *mut gio::GDBusConnection, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, callback: gio::GAsyncReadyCallback, user_data: gpointer);
    pub fn goa_oauth2_based_proxy_new_for_bus(bus_type: gio::GBusType, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, callback: gio::GAsyncReadyCallback, user_data: gpointer);

    //=========================================================================
    // GoaOAuth2BasedSkeleton
    //=========================================================================
    pub fn goa_oauth2_based_skeleton_get_type() -> GType;
    pub fn goa_oauth2_based_skeleton_new() -> *mut GoaOAuth2BasedSkeleton;

    //=========================================================================
    // GoaOAuthBasedProxy
    //=========================================================================
    pub fn goa_oauth_based_proxy_get_type() -> GType;
    pub fn goa_oauth_based_proxy_new_finish(res: *mut gio::GAsyncResult, error: *mut *mut glib::GError) -> *mut GoaOAuthBasedProxy;
    pub fn goa_oauth_based_proxy_new_for_bus_finish(res: *mut gio::GAsyncResult, error: *mut *mut glib::GError) -> *mut GoaOAuthBasedProxy;
    pub fn goa_oauth_based_proxy_new_for_bus_sync(bus_type: gio::GBusType, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, error: *mut *mut glib::GError) -> *mut GoaOAuthBasedProxy;
    pub fn goa_oauth_based_proxy_new_sync(connection: *mut gio::GDBusConnection, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, error: *mut *mut glib::GError) -> *mut GoaOAuthBasedProxy;
    pub fn goa_oauth_based_proxy_new(connection: *mut gio::GDBusConnection, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, callback: gio::GAsyncReadyCallback, user_data: gpointer);
    pub fn goa_oauth_based_proxy_new_for_bus(bus_type: gio::GBusType, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, callback: gio::GAsyncReadyCallback, user_data: gpointer);

    //=========================================================================
    // GoaOAuthBasedSkeleton
    //=========================================================================
    pub fn goa_oauth_based_skeleton_get_type() -> GType;
    pub fn goa_oauth_based_skeleton_new() -> *mut GoaOAuthBasedSkeleton;

    //=========================================================================
    // GoaObjectManagerClient
    //=========================================================================
    pub fn goa_object_manager_client_get_type() -> GType;
    pub fn goa_object_manager_client_new_finish(res: *mut gio::GAsyncResult, error: *mut *mut glib::GError) -> *mut GoaObjectManagerClient;
    pub fn goa_object_manager_client_new_for_bus_finish(res: *mut gio::GAsyncResult, error: *mut *mut glib::GError) -> *mut GoaObjectManagerClient;
    pub fn goa_object_manager_client_new_for_bus_sync(bus_type: gio::GBusType, flags: gio::GDBusObjectManagerClientFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, error: *mut *mut glib::GError) -> *mut GoaObjectManagerClient;
    pub fn goa_object_manager_client_new_sync(connection: *mut gio::GDBusConnection, flags: gio::GDBusObjectManagerClientFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, error: *mut *mut glib::GError) -> *mut GoaObjectManagerClient;
    pub fn goa_object_manager_client_get_proxy_type(manager: *mut gio::GDBusObjectManagerClient, object_path: *const c_char, interface_name: *const c_char, user_data: gpointer) -> GType;
    pub fn goa_object_manager_client_new(connection: *mut gio::GDBusConnection, flags: gio::GDBusObjectManagerClientFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, callback: gio::GAsyncReadyCallback, user_data: gpointer);
    pub fn goa_object_manager_client_new_for_bus(bus_type: gio::GBusType, flags: gio::GDBusObjectManagerClientFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, callback: gio::GAsyncReadyCallback, user_data: gpointer);

    //=========================================================================
    // GoaObjectProxy
    //=========================================================================
    pub fn goa_object_proxy_get_type() -> GType;
    pub fn goa_object_proxy_new(connection: *mut gio::GDBusConnection, object_path: *const c_char) -> *mut GoaObjectProxy;

    //=========================================================================
    // GoaObjectSkeleton
    //=========================================================================
    pub fn goa_object_skeleton_get_type() -> GType;
    pub fn goa_object_skeleton_new(object_path: *const c_char) -> *mut GoaObjectSkeleton;
    pub fn goa_object_skeleton_set_account(object: *mut GoaObjectSkeleton, interface_: *mut GoaAccount);
    pub fn goa_object_skeleton_set_calendar(object: *mut GoaObjectSkeleton, interface_: *mut GoaCalendar);
    pub fn goa_object_skeleton_set_chat(object: *mut GoaObjectSkeleton, interface_: *mut GoaChat);
    pub fn goa_object_skeleton_set_contacts(object: *mut GoaObjectSkeleton, interface_: *mut GoaContacts);
    pub fn goa_object_skeleton_set_documents(object: *mut GoaObjectSkeleton, interface_: *mut GoaDocuments);
    #[cfg(any(feature = "v3_6", feature = "dox"))]
    pub fn goa_object_skeleton_set_exchange(object: *mut GoaObjectSkeleton, interface_: *mut GoaExchange);
    #[cfg(any(feature = "v3_8", feature = "dox"))]
    pub fn goa_object_skeleton_set_files(object: *mut GoaObjectSkeleton, interface_: *mut GoaFiles);
    pub fn goa_object_skeleton_set_mail(object: *mut GoaObjectSkeleton, interface_: *mut GoaMail);
    pub fn goa_object_skeleton_set_manager(object: *mut GoaObjectSkeleton, interface_: *mut GoaManager);
    #[cfg(any(feature = "v3_14", feature = "dox"))]
    pub fn goa_object_skeleton_set_maps(object: *mut GoaObjectSkeleton, interface_: *mut GoaMaps);
    #[cfg(any(feature = "v3_14", feature = "dox"))]
    pub fn goa_object_skeleton_set_media_server(object: *mut GoaObjectSkeleton, interface_: *mut GoaMediaServer);
    #[cfg(any(feature = "v3_18", feature = "dox"))]
    pub fn goa_object_skeleton_set_music(object: *mut GoaObjectSkeleton, interface_: *mut GoaMusic);
    pub fn goa_object_skeleton_set_oauth2_based(object: *mut GoaObjectSkeleton, interface_: *mut GoaOAuth2Based);
    pub fn goa_object_skeleton_set_oauth_based(object: *mut GoaObjectSkeleton, interface_: *mut GoaOAuthBased);
    #[cfg(any(feature = "v3_6", feature = "dox"))]
    pub fn goa_object_skeleton_set_password_based(object: *mut GoaObjectSkeleton, interface_: *mut GoaPasswordBased);
    #[cfg(any(feature = "v3_8", feature = "dox"))]
    pub fn goa_object_skeleton_set_photos(object: *mut GoaObjectSkeleton, interface_: *mut GoaPhotos);
    #[cfg(any(feature = "v3_12", feature = "dox"))]
    pub fn goa_object_skeleton_set_printers(object: *mut GoaObjectSkeleton, interface_: *mut GoaPrinters);
    #[cfg(any(feature = "v3_12", feature = "dox"))]
    pub fn goa_object_skeleton_set_read_later(object: *mut GoaObjectSkeleton, interface_: *mut GoaReadLater);
    #[cfg(any(feature = "v3_6", feature = "dox"))]
    pub fn goa_object_skeleton_set_ticketing(object: *mut GoaObjectSkeleton, interface_: *mut GoaTicketing);
    #[cfg(any(feature = "v3_26", feature = "dox"))]
    pub fn goa_object_skeleton_set_todo(object: *mut GoaObjectSkeleton, interface_: *mut GoaTodo);

    //=========================================================================
    // GoaPasswordBasedProxy
    //=========================================================================
    pub fn goa_password_based_proxy_get_type() -> GType;
    #[cfg(any(feature = "v3_6", feature = "dox"))]
    pub fn goa_password_based_proxy_new_finish(res: *mut gio::GAsyncResult, error: *mut *mut glib::GError) -> *mut GoaPasswordBasedProxy;
    #[cfg(any(feature = "v3_6", feature = "dox"))]
    pub fn goa_password_based_proxy_new_for_bus_finish(res: *mut gio::GAsyncResult, error: *mut *mut glib::GError) -> *mut GoaPasswordBasedProxy;
    #[cfg(any(feature = "v3_6", feature = "dox"))]
    pub fn goa_password_based_proxy_new_for_bus_sync(bus_type: gio::GBusType, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, error: *mut *mut glib::GError) -> *mut GoaPasswordBasedProxy;
    #[cfg(any(feature = "v3_6", feature = "dox"))]
    pub fn goa_password_based_proxy_new_sync(connection: *mut gio::GDBusConnection, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, error: *mut *mut glib::GError) -> *mut GoaPasswordBasedProxy;
    #[cfg(any(feature = "v3_6", feature = "dox"))]
    pub fn goa_password_based_proxy_new(connection: *mut gio::GDBusConnection, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, callback: gio::GAsyncReadyCallback, user_data: gpointer);
    #[cfg(any(feature = "v3_6", feature = "dox"))]
    pub fn goa_password_based_proxy_new_for_bus(bus_type: gio::GBusType, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, callback: gio::GAsyncReadyCallback, user_data: gpointer);

    //=========================================================================
    // GoaPasswordBasedSkeleton
    //=========================================================================
    pub fn goa_password_based_skeleton_get_type() -> GType;
    #[cfg(any(feature = "v3_6", feature = "dox"))]
    pub fn goa_password_based_skeleton_new() -> *mut GoaPasswordBasedSkeleton;

    //=========================================================================
    // GoaPhotosProxy
    //=========================================================================
    pub fn goa_photos_proxy_get_type() -> GType;
    #[cfg(any(feature = "v3_8", feature = "dox"))]
    pub fn goa_photos_proxy_new_finish(res: *mut gio::GAsyncResult, error: *mut *mut glib::GError) -> *mut GoaPhotosProxy;
    #[cfg(any(feature = "v3_8", feature = "dox"))]
    pub fn goa_photos_proxy_new_for_bus_finish(res: *mut gio::GAsyncResult, error: *mut *mut glib::GError) -> *mut GoaPhotosProxy;
    #[cfg(any(feature = "v3_8", feature = "dox"))]
    pub fn goa_photos_proxy_new_for_bus_sync(bus_type: gio::GBusType, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, error: *mut *mut glib::GError) -> *mut GoaPhotosProxy;
    #[cfg(any(feature = "v3_8", feature = "dox"))]
    pub fn goa_photos_proxy_new_sync(connection: *mut gio::GDBusConnection, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, error: *mut *mut glib::GError) -> *mut GoaPhotosProxy;
    #[cfg(any(feature = "v3_8", feature = "dox"))]
    pub fn goa_photos_proxy_new(connection: *mut gio::GDBusConnection, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, callback: gio::GAsyncReadyCallback, user_data: gpointer);
    #[cfg(any(feature = "v3_8", feature = "dox"))]
    pub fn goa_photos_proxy_new_for_bus(bus_type: gio::GBusType, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, callback: gio::GAsyncReadyCallback, user_data: gpointer);

    //=========================================================================
    // GoaPhotosSkeleton
    //=========================================================================
    pub fn goa_photos_skeleton_get_type() -> GType;
    #[cfg(any(feature = "v3_8", feature = "dox"))]
    pub fn goa_photos_skeleton_new() -> *mut GoaPhotosSkeleton;

    //=========================================================================
    // GoaPrintersProxy
    //=========================================================================
    pub fn goa_printers_proxy_get_type() -> GType;
    #[cfg(any(feature = "v3_12", feature = "dox"))]
    pub fn goa_printers_proxy_new_finish(res: *mut gio::GAsyncResult, error: *mut *mut glib::GError) -> *mut GoaPrintersProxy;
    #[cfg(any(feature = "v3_12", feature = "dox"))]
    pub fn goa_printers_proxy_new_for_bus_finish(res: *mut gio::GAsyncResult, error: *mut *mut glib::GError) -> *mut GoaPrintersProxy;
    #[cfg(any(feature = "v3_12", feature = "dox"))]
    pub fn goa_printers_proxy_new_for_bus_sync(bus_type: gio::GBusType, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, error: *mut *mut glib::GError) -> *mut GoaPrintersProxy;
    #[cfg(any(feature = "v3_12", feature = "dox"))]
    pub fn goa_printers_proxy_new_sync(connection: *mut gio::GDBusConnection, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, error: *mut *mut glib::GError) -> *mut GoaPrintersProxy;
    #[cfg(any(feature = "v3_12", feature = "dox"))]
    pub fn goa_printers_proxy_new(connection: *mut gio::GDBusConnection, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, callback: gio::GAsyncReadyCallback, user_data: gpointer);
    #[cfg(any(feature = "v3_12", feature = "dox"))]
    pub fn goa_printers_proxy_new_for_bus(bus_type: gio::GBusType, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, callback: gio::GAsyncReadyCallback, user_data: gpointer);

    //=========================================================================
    // GoaPrintersSkeleton
    //=========================================================================
    pub fn goa_printers_skeleton_get_type() -> GType;
    #[cfg(any(feature = "v3_12", feature = "dox"))]
    pub fn goa_printers_skeleton_new() -> *mut GoaPrintersSkeleton;

    //=========================================================================
    // GoaReadLaterProxy
    //=========================================================================
    pub fn goa_read_later_proxy_get_type() -> GType;
    #[cfg(any(feature = "v3_12", feature = "dox"))]
    pub fn goa_read_later_proxy_new_finish(res: *mut gio::GAsyncResult, error: *mut *mut glib::GError) -> *mut GoaReadLaterProxy;
    #[cfg(any(feature = "v3_12", feature = "dox"))]
    pub fn goa_read_later_proxy_new_for_bus_finish(res: *mut gio::GAsyncResult, error: *mut *mut glib::GError) -> *mut GoaReadLaterProxy;
    #[cfg(any(feature = "v3_12", feature = "dox"))]
    pub fn goa_read_later_proxy_new_for_bus_sync(bus_type: gio::GBusType, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, error: *mut *mut glib::GError) -> *mut GoaReadLaterProxy;
    #[cfg(any(feature = "v3_12", feature = "dox"))]
    pub fn goa_read_later_proxy_new_sync(connection: *mut gio::GDBusConnection, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, error: *mut *mut glib::GError) -> *mut GoaReadLaterProxy;
    #[cfg(any(feature = "v3_12", feature = "dox"))]
    pub fn goa_read_later_proxy_new(connection: *mut gio::GDBusConnection, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, callback: gio::GAsyncReadyCallback, user_data: gpointer);
    #[cfg(any(feature = "v3_12", feature = "dox"))]
    pub fn goa_read_later_proxy_new_for_bus(bus_type: gio::GBusType, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, callback: gio::GAsyncReadyCallback, user_data: gpointer);

    //=========================================================================
    // GoaReadLaterSkeleton
    //=========================================================================
    pub fn goa_read_later_skeleton_get_type() -> GType;
    #[cfg(any(feature = "v3_12", feature = "dox"))]
    pub fn goa_read_later_skeleton_new() -> *mut GoaReadLaterSkeleton;

    //=========================================================================
    // GoaTicketingProxy
    //=========================================================================
    pub fn goa_ticketing_proxy_get_type() -> GType;
    #[cfg(any(feature = "v3_6", feature = "dox"))]
    pub fn goa_ticketing_proxy_new_finish(res: *mut gio::GAsyncResult, error: *mut *mut glib::GError) -> *mut GoaTicketingProxy;
    #[cfg(any(feature = "v3_6", feature = "dox"))]
    pub fn goa_ticketing_proxy_new_for_bus_finish(res: *mut gio::GAsyncResult, error: *mut *mut glib::GError) -> *mut GoaTicketingProxy;
    #[cfg(any(feature = "v3_6", feature = "dox"))]
    pub fn goa_ticketing_proxy_new_for_bus_sync(bus_type: gio::GBusType, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, error: *mut *mut glib::GError) -> *mut GoaTicketingProxy;
    #[cfg(any(feature = "v3_6", feature = "dox"))]
    pub fn goa_ticketing_proxy_new_sync(connection: *mut gio::GDBusConnection, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, error: *mut *mut glib::GError) -> *mut GoaTicketingProxy;
    #[cfg(any(feature = "v3_6", feature = "dox"))]
    pub fn goa_ticketing_proxy_new(connection: *mut gio::GDBusConnection, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, callback: gio::GAsyncReadyCallback, user_data: gpointer);
    #[cfg(any(feature = "v3_6", feature = "dox"))]
    pub fn goa_ticketing_proxy_new_for_bus(bus_type: gio::GBusType, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, callback: gio::GAsyncReadyCallback, user_data: gpointer);

    //=========================================================================
    // GoaTicketingSkeleton
    //=========================================================================
    pub fn goa_ticketing_skeleton_get_type() -> GType;
    #[cfg(any(feature = "v3_6", feature = "dox"))]
    pub fn goa_ticketing_skeleton_new() -> *mut GoaTicketingSkeleton;

    //=========================================================================
    // GoaTodoProxy
    //=========================================================================
    pub fn goa_todo_proxy_get_type() -> GType;
    #[cfg(any(feature = "v3_26", feature = "dox"))]
    pub fn goa_todo_proxy_new_finish(res: *mut gio::GAsyncResult, error: *mut *mut glib::GError) -> *mut GoaTodoProxy;
    #[cfg(any(feature = "v3_26", feature = "dox"))]
    pub fn goa_todo_proxy_new_for_bus_finish(res: *mut gio::GAsyncResult, error: *mut *mut glib::GError) -> *mut GoaTodoProxy;
    #[cfg(any(feature = "v3_26", feature = "dox"))]
    pub fn goa_todo_proxy_new_for_bus_sync(bus_type: gio::GBusType, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, error: *mut *mut glib::GError) -> *mut GoaTodoProxy;
    #[cfg(any(feature = "v3_26", feature = "dox"))]
    pub fn goa_todo_proxy_new_sync(connection: *mut gio::GDBusConnection, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, error: *mut *mut glib::GError) -> *mut GoaTodoProxy;
    #[cfg(any(feature = "v3_26", feature = "dox"))]
    pub fn goa_todo_proxy_new(connection: *mut gio::GDBusConnection, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, callback: gio::GAsyncReadyCallback, user_data: gpointer);
    #[cfg(any(feature = "v3_26", feature = "dox"))]
    pub fn goa_todo_proxy_new_for_bus(bus_type: gio::GBusType, flags: gio::GDBusProxyFlags, name: *const c_char, object_path: *const c_char, cancellable: *mut gio::GCancellable, callback: gio::GAsyncReadyCallback, user_data: gpointer);

    //=========================================================================
    // GoaTodoSkeleton
    //=========================================================================
    pub fn goa_todo_skeleton_get_type() -> GType;
    #[cfg(any(feature = "v3_26", feature = "dox"))]
    pub fn goa_todo_skeleton_new() -> *mut GoaTodoSkeleton;

    //=========================================================================
    // GoaAccount
    //=========================================================================
    pub fn goa_account_get_type() -> GType;
    pub fn goa_account_interface_info() -> *mut gio::GDBusInterfaceInfo;
    pub fn goa_account_override_properties(klass: *mut gobject::GObjectClass, property_id_begin: c_uint) -> c_uint;
    pub fn goa_account_call_ensure_credentials(proxy: *mut GoaAccount, cancellable: *mut gio::GCancellable, callback: gio::GAsyncReadyCallback, user_data: gpointer);
    pub fn goa_account_call_ensure_credentials_finish(proxy: *mut GoaAccount, out_expires_in: *mut c_int, res: *mut gio::GAsyncResult, error: *mut *mut glib::GError) -> gboolean;
    pub fn goa_account_call_ensure_credentials_sync(proxy: *mut GoaAccount, out_expires_in: *mut c_int, cancellable: *mut gio::GCancellable, error: *mut *mut glib::GError) -> gboolean;
    pub fn goa_account_call_remove(proxy: *mut GoaAccount, cancellable: *mut gio::GCancellable, callback: gio::GAsyncReadyCallback, user_data: gpointer);
    pub fn goa_account_call_remove_finish(proxy: *mut GoaAccount, res: *mut gio::GAsyncResult, error: *mut *mut glib::GError) -> gboolean;
    pub fn goa_account_call_remove_sync(proxy: *mut GoaAccount, cancellable: *mut gio::GCancellable, error: *mut *mut glib::GError) -> gboolean;
    pub fn goa_account_complete_ensure_credentials(object: *mut GoaAccount, invocation: *mut gio::GDBusMethodInvocation, expires_in: c_int);
    pub fn goa_account_complete_remove(object: *mut GoaAccount, invocation: *mut gio::GDBusMethodInvocation);
    pub fn goa_account_dup_id(object: *mut GoaAccount) -> *mut c_char;
    pub fn goa_account_dup_identity(object: *mut GoaAccount) -> *mut c_char;
    pub fn goa_account_dup_presentation_identity(object: *mut GoaAccount) -> *mut c_char;
    pub fn goa_account_dup_provider_icon(object: *mut GoaAccount) -> *mut c_char;
    pub fn goa_account_dup_provider_name(object: *mut GoaAccount) -> *mut c_char;
    pub fn goa_account_dup_provider_type(object: *mut GoaAccount) -> *mut c_char;
    pub fn goa_account_get_attention_needed(object: *mut GoaAccount) -> gboolean;
    pub fn goa_account_get_calendar_disabled(object: *mut GoaAccount) -> gboolean;
    pub fn goa_account_get_chat_disabled(object: *mut GoaAccount) -> gboolean;
    pub fn goa_account_get_contacts_disabled(object: *mut GoaAccount) -> gboolean;
    pub fn goa_account_get_documents_disabled(object: *mut GoaAccount) -> gboolean;
    #[cfg(any(feature = "v3_8", feature = "dox"))]
    pub fn goa_account_get_files_disabled(object: *mut GoaAccount) -> gboolean;
    pub fn goa_account_get_id(object: *mut GoaAccount) -> *const c_char;
    pub fn goa_account_get_identity(object: *mut GoaAccount) -> *const c_char;
    #[cfg(any(feature = "v3_16", feature = "dox"))]
    pub fn goa_account_get_is_locked(object: *mut GoaAccount) -> gboolean;
    pub fn goa_account_get_is_temporary(object: *mut GoaAccount) -> gboolean;
    pub fn goa_account_get_mail_disabled(object: *mut GoaAccount) -> gboolean;
    #[cfg(any(feature = "v3_14", feature = "dox"))]
    pub fn goa_account_get_maps_disabled(object: *mut GoaAccount) -> gboolean;
    #[cfg(any(feature = "v3_18", feature = "dox"))]
    pub fn goa_account_get_music_disabled(object: *mut GoaAccount) -> gboolean;
    #[cfg(any(feature = "v3_8", feature = "dox"))]
    pub fn goa_account_get_photos_disabled(object: *mut GoaAccount) -> gboolean;
    pub fn goa_account_get_presentation_identity(object: *mut GoaAccount) -> *const c_char;
    #[cfg(any(feature = "v3_12", feature = "dox"))]
    pub fn goa_account_get_printers_disabled(object: *mut GoaAccount) -> gboolean;
    pub fn goa_account_get_provider_icon(object: *mut GoaAccount) -> *const c_char;
    pub fn goa_account_get_provider_name(object: *mut GoaAccount) -> *const c_char;
    pub fn goa_account_get_provider_type(object: *mut GoaAccount) -> *const c_char;
    #[cfg(any(feature = "v3_12", feature = "dox"))]
    pub fn goa_account_get_read_later_disabled(object: *mut GoaAccount) -> gboolean;
    #[cfg(any(feature = "v3_6", feature = "dox"))]
    pub fn goa_account_get_ticketing_disabled(object: *mut GoaAccount) -> gboolean;
    #[cfg(any(feature = "v3_26", feature = "dox"))]
    pub fn goa_account_get_todo_disabled(object: *mut GoaAccount) -> gboolean;
    pub fn goa_account_set_attention_needed(object: *mut GoaAccount, value: gboolean);
    pub fn goa_account_set_calendar_disabled(object: *mut GoaAccount, value: gboolean);
    pub fn goa_account_set_chat_disabled(object: *mut GoaAccount, value: gboolean);
    pub fn goa_account_set_contacts_disabled(object: *mut GoaAccount, value: gboolean);
    pub fn goa_account_set_documents_disabled(object: *mut GoaAccount, value: gboolean);
    #[cfg(any(feature = "v3_8", feature = "dox"))]
    pub fn goa_account_set_files_disabled(object: *mut GoaAccount, value: gboolean);
    pub fn goa_account_set_id(object: *mut GoaAccount, value: *const c_char);
    pub fn goa_account_set_identity(object: *mut GoaAccount, value: *const c_char);
    #[cfg(any(feature = "v3_16", feature = "dox"))]
    pub fn goa_account_set_is_locked(object: *mut GoaAccount, value: gboolean);
    pub fn goa_account_set_is_temporary(object: *mut GoaAccount, value: gboolean);
    pub fn goa_account_set_mail_disabled(object: *mut GoaAccount, value: gboolean);
    #[cfg(any(feature = "v3_14", feature = "dox"))]
    pub fn goa_account_set_maps_disabled(object: *mut GoaAccount, value: gboolean);
    #[cfg(any(feature = "v3_18", feature = "dox"))]
    pub fn goa_account_set_music_disabled(object: *mut GoaAccount, value: gboolean);
    #[cfg(any(feature = "v3_8", feature = "dox"))]
    pub fn goa_account_set_photos_disabled(object: *mut GoaAccount, value: gboolean);
    pub fn goa_account_set_presentation_identity(object: *mut GoaAccount, value: *const c_char);
    #[cfg(any(feature = "v3_12", feature = "dox"))]
    pub fn goa_account_set_printers_disabled(object: *mut GoaAccount, value: gboolean);
    pub fn goa_account_set_provider_icon(object: *mut GoaAccount, value: *const c_char);
    pub fn goa_account_set_provider_name(object: *mut GoaAccount, value: *const c_char);
    pub fn goa_account_set_provider_type(object: *mut GoaAccount, value: *const c_char);
    #[cfg(any(feature = "v3_12", feature = "dox"))]
    pub fn goa_account_set_read_later_disabled(object: *mut GoaAccount, value: gboolean);
    #[cfg(any(feature = "v3_6", feature = "dox"))]
    pub fn goa_account_set_ticketing_disabled(object: *mut GoaAccount, value: gboolean);
    #[cfg(any(feature = "v3_26", feature = "dox"))]
    pub fn goa_account_set_todo_disabled(object: *mut GoaAccount, value: gboolean);

    //=========================================================================
    // GoaCalendar
    //=========================================================================
    pub fn goa_calendar_get_type() -> GType;
    pub fn goa_calendar_interface_info() -> *mut gio::GDBusInterfaceInfo;
    pub fn goa_calendar_override_properties(klass: *mut gobject::GObjectClass, property_id_begin: c_uint) -> c_uint;
    #[cfg(any(feature = "v3_8", feature = "dox"))]
    pub fn goa_calendar_dup_uri(object: *mut GoaCalendar) -> *mut c_char;
    #[cfg(any(feature = "v3_8", feature = "dox"))]
    pub fn goa_calendar_get_accept_ssl_errors(object: *mut GoaCalendar) -> gboolean;
    #[cfg(any(feature = "v3_8", feature = "dox"))]
    pub fn goa_calendar_get_uri(object: *mut GoaCalendar) -> *const c_char;
    #[cfg(any(feature = "v3_8", feature = "dox"))]
    pub fn goa_calendar_set_accept_ssl_errors(object: *mut GoaCalendar, value: gboolean);
    #[cfg(any(feature = "v3_8", feature = "dox"))]
    pub fn goa_calendar_set_uri(object: *mut GoaCalendar, value: *const c_char);

    //=========================================================================
    // GoaChat
    //=========================================================================
    pub fn goa_chat_get_type() -> GType;
    pub fn goa_chat_interface_info() -> *mut gio::GDBusInterfaceInfo;
    pub fn goa_chat_override_properties(klass: *mut gobject::GObjectClass, property_id_begin: c_uint) -> c_uint;

    //=========================================================================
    // GoaContacts
    //=========================================================================
    pub fn goa_contacts_get_type() -> GType;
    pub fn goa_contacts_interface_info() -> *mut gio::GDBusInterfaceInfo;
    pub fn goa_contacts_override_properties(klass: *mut gobject::GObjectClass, property_id_begin: c_uint) -> c_uint;
    #[cfg(any(feature = "v3_8", feature = "dox"))]
    pub fn goa_contacts_dup_uri(object: *mut GoaContacts) -> *mut c_char;
    #[cfg(any(feature = "v3_8", feature = "dox"))]
    pub fn goa_contacts_get_accept_ssl_errors(object: *mut GoaContacts) -> gboolean;
    #[cfg(any(feature = "v3_8", feature = "dox"))]
    pub fn goa_contacts_get_uri(object: *mut GoaContacts) -> *const c_char;
    #[cfg(any(feature = "v3_8", feature = "dox"))]
    pub fn goa_contacts_set_accept_ssl_errors(object: *mut GoaContacts, value: gboolean);
    #[cfg(any(feature = "v3_8", feature = "dox"))]
    pub fn goa_contacts_set_uri(object: *mut GoaContacts, value: *const c_char);

    //=========================================================================
    // GoaDocuments
    //=========================================================================
    pub fn goa_documents_get_type() -> GType;
    pub fn goa_documents_interface_info() -> *mut gio::GDBusInterfaceInfo;
    pub fn goa_documents_override_properties(klass: *mut gobject::GObjectClass, property_id_begin: c_uint) -> c_uint;

    //=========================================================================
    // GoaExchange
    //=========================================================================
    pub fn goa_exchange_get_type() -> GType;
    #[cfg(any(feature = "v3_6", feature = "dox"))]
    pub fn goa_exchange_interface_info() -> *mut gio::GDBusInterfaceInfo;
    #[cfg(any(feature = "v3_6", feature = "dox"))]
    pub fn goa_exchange_override_properties(klass: *mut gobject::GObjectClass, property_id_begin: c_uint) -> c_uint;
    #[cfg(any(feature = "v3_6", feature = "dox"))]
    pub fn goa_exchange_dup_host(object: *mut GoaExchange) -> *mut c_char;
    #[cfg(any(feature = "v3_8", feature = "dox"))]
    pub fn goa_exchange_get_accept_ssl_errors(object: *mut GoaExchange) -> gboolean;
    #[cfg(any(feature = "v3_6", feature = "dox"))]
    pub fn goa_exchange_get_host(object: *mut GoaExchange) -> *const c_char;
    #[cfg(any(feature = "v3_8", feature = "dox"))]
    pub fn goa_exchange_set_accept_ssl_errors(object: *mut GoaExchange, value: gboolean);
    #[cfg(any(feature = "v3_6", feature = "dox"))]
    pub fn goa_exchange_set_host(object: *mut GoaExchange, value: *const c_char);

    //=========================================================================
    // GoaFiles
    //=========================================================================
    pub fn goa_files_get_type() -> GType;
    #[cfg(any(feature = "v3_8", feature = "dox"))]
    pub fn goa_files_interface_info() -> *mut gio::GDBusInterfaceInfo;
    #[cfg(any(feature = "v3_8", feature = "dox"))]
    pub fn goa_files_override_properties(klass: *mut gobject::GObjectClass, property_id_begin: c_uint) -> c_uint;
    #[cfg(any(feature = "v3_8", feature = "dox"))]
    pub fn goa_files_dup_uri(object: *mut GoaFiles) -> *mut c_char;
    #[cfg(any(feature = "v3_8", feature = "dox"))]
    pub fn goa_files_get_accept_ssl_errors(object: *mut GoaFiles) -> gboolean;
    #[cfg(any(feature = "v3_8", feature = "dox"))]
    pub fn goa_files_get_uri(object: *mut GoaFiles) -> *const c_char;
    #[cfg(any(feature = "v3_8", feature = "dox"))]
    pub fn goa_files_set_accept_ssl_errors(object: *mut GoaFiles, value: gboolean);
    #[cfg(any(feature = "v3_8", feature = "dox"))]
    pub fn goa_files_set_uri(object: *mut GoaFiles, value: *const c_char);

    //=========================================================================
    // GoaMail
    //=========================================================================
    pub fn goa_mail_get_type() -> GType;
    pub fn goa_mail_interface_info() -> *mut gio::GDBusInterfaceInfo;
    pub fn goa_mail_override_properties(klass: *mut gobject::GObjectClass, property_id_begin: c_uint) -> c_uint;
    pub fn goa_mail_dup_email_address(object: *mut GoaMail) -> *mut c_char;
    pub fn goa_mail_dup_imap_host(object: *mut GoaMail) -> *mut c_char;
    pub fn goa_mail_dup_imap_user_name(object: *mut GoaMail) -> *mut c_char;
    #[cfg(any(feature = "v3_8", feature = "dox"))]
    pub fn goa_mail_dup_name(object: *mut GoaMail) -> *mut c_char;
    pub fn goa_mail_dup_smtp_host(object: *mut GoaMail) -> *mut c_char;
    pub fn goa_mail_dup_smtp_user_name(object: *mut GoaMail) -> *mut c_char;
    pub fn goa_mail_get_email_address(object: *mut GoaMail) -> *const c_char;
    #[cfg(any(feature = "v3_8", feature = "dox"))]
    pub fn goa_mail_get_imap_accept_ssl_errors(object: *mut GoaMail) -> gboolean;
    pub fn goa_mail_get_imap_host(object: *mut GoaMail) -> *const c_char;
    pub fn goa_mail_get_imap_supported(object: *mut GoaMail) -> gboolean;
    #[cfg(any(feature = "v3_8", feature = "dox"))]
    pub fn goa_mail_get_imap_use_ssl(object: *mut GoaMail) -> gboolean;
    pub fn goa_mail_get_imap_use_tls(object: *mut GoaMail) -> gboolean;
    pub fn goa_mail_get_imap_user_name(object: *mut GoaMail) -> *const c_char;
    #[cfg(any(feature = "v3_8", feature = "dox"))]
    pub fn goa_mail_get_name(object: *mut GoaMail) -> *const c_char;
    #[cfg(any(feature = "v3_8", feature = "dox"))]
    pub fn goa_mail_get_smtp_accept_ssl_errors(object: *mut GoaMail) -> gboolean;
    #[cfg(any(feature = "v3_12", feature = "dox"))]
    pub fn goa_mail_get_smtp_auth_login(object: *mut GoaMail) -> gboolean;
    #[cfg(any(feature = "v3_12", feature = "dox"))]
    pub fn goa_mail_get_smtp_auth_plain(object: *mut GoaMail) -> gboolean;
    #[cfg(any(feature = "v3_12", feature = "dox"))]
    pub fn goa_mail_get_smtp_auth_xoauth2(object: *mut GoaMail) -> gboolean;
    pub fn goa_mail_get_smtp_host(object: *mut GoaMail) -> *const c_char;
    pub fn goa_mail_get_smtp_supported(object: *mut GoaMail) -> gboolean;
    #[cfg(any(feature = "v3_8", feature = "dox"))]
    pub fn goa_mail_get_smtp_use_auth(object: *mut GoaMail) -> gboolean;
    #[cfg(any(feature = "v3_8", feature = "dox"))]
    pub fn goa_mail_get_smtp_use_ssl(object: *mut GoaMail) -> gboolean;
    pub fn goa_mail_get_smtp_use_tls(object: *mut GoaMail) -> gboolean;
    pub fn goa_mail_get_smtp_user_name(object: *mut GoaMail) -> *const c_char;
    pub fn goa_mail_set_email_address(object: *mut GoaMail, value: *const c_char);
    #[cfg(any(feature = "v3_8", feature = "dox"))]
    pub fn goa_mail_set_imap_accept_ssl_errors(object: *mut GoaMail, value: gboolean);
    pub fn goa_mail_set_imap_host(object: *mut GoaMail, value: *const c_char);
    pub fn goa_mail_set_imap_supported(object: *mut GoaMail, value: gboolean);
    #[cfg(any(feature = "v3_8", feature = "dox"))]
    pub fn goa_mail_set_imap_use_ssl(object: *mut GoaMail, value: gboolean);
    pub fn goa_mail_set_imap_use_tls(object: *mut GoaMail, value: gboolean);
    pub fn goa_mail_set_imap_user_name(object: *mut GoaMail, value: *const c_char);
    #[cfg(any(feature = "v3_8", feature = "dox"))]
    pub fn goa_mail_set_name(object: *mut GoaMail, value: *const c_char);
    #[cfg(any(feature = "v3_8", feature = "dox"))]
    pub fn goa_mail_set_smtp_accept_ssl_errors(object: *mut GoaMail, value: gboolean);
    #[cfg(any(feature = "v3_12", feature = "dox"))]
    pub fn goa_mail_set_smtp_auth_login(object: *mut GoaMail, value: gboolean);
    #[cfg(any(feature = "v3_12", feature = "dox"))]
    pub fn goa_mail_set_smtp_auth_plain(object: *mut GoaMail, value: gboolean);
    #[cfg(any(feature = "v3_12", feature = "dox"))]
    pub fn goa_mail_set_smtp_auth_xoauth2(object: *mut GoaMail, value: gboolean);
    pub fn goa_mail_set_smtp_host(object: *mut GoaMail, value: *const c_char);
    pub fn goa_mail_set_smtp_supported(object: *mut GoaMail, value: gboolean);
    #[cfg(any(feature = "v3_8", feature = "dox"))]
    pub fn goa_mail_set_smtp_use_auth(object: *mut GoaMail, value: gboolean);
    #[cfg(any(feature = "v3_8", feature = "dox"))]
    pub fn goa_mail_set_smtp_use_ssl(object: *mut GoaMail, value: gboolean);
    pub fn goa_mail_set_smtp_use_tls(object: *mut GoaMail, value: gboolean);
    pub fn goa_mail_set_smtp_user_name(object: *mut GoaMail, value: *const c_char);

    //=========================================================================
    // GoaManager
    //=========================================================================
    pub fn goa_manager_get_type() -> GType;
    pub fn goa_manager_interface_info() -> *mut gio::GDBusInterfaceInfo;
    pub fn goa_manager_override_properties(klass: *mut gobject::GObjectClass, property_id_begin: c_uint) -> c_uint;
    pub fn goa_manager_call_add_account(proxy: *mut GoaManager, arg_provider: *const c_char, arg_identity: *const c_char, arg_presentation_identity: *const c_char, arg_credentials: *mut glib::GVariant, arg_details: *mut glib::GVariant, cancellable: *mut gio::GCancellable, callback: gio::GAsyncReadyCallback, user_data: gpointer);
    pub fn goa_manager_call_add_account_finish(proxy: *mut GoaManager, out_account_object_path: *mut *mut c_char, res: *mut gio::GAsyncResult, error: *mut *mut glib::GError) -> gboolean;
    pub fn goa_manager_call_add_account_sync(proxy: *mut GoaManager, arg_provider: *const c_char, arg_identity: *const c_char, arg_presentation_identity: *const c_char, arg_credentials: *mut glib::GVariant, arg_details: *mut glib::GVariant, out_account_object_path: *mut *mut c_char, cancellable: *mut gio::GCancellable, error: *mut *mut glib::GError) -> gboolean;
    pub fn goa_manager_complete_add_account(object: *mut GoaManager, invocation: *mut gio::GDBusMethodInvocation, account_object_path: *const c_char);

    //=========================================================================
    // GoaMaps
    //=========================================================================
    pub fn goa_maps_get_type() -> GType;
    #[cfg(any(feature = "v3_14", feature = "dox"))]
    pub fn goa_maps_interface_info() -> *mut gio::GDBusInterfaceInfo;
    #[cfg(any(feature = "v3_14", feature = "dox"))]
    pub fn goa_maps_override_properties(klass: *mut gobject::GObjectClass, property_id_begin: c_uint) -> c_uint;

    //=========================================================================
    // GoaMediaServer
    //=========================================================================
    pub fn goa_media_server_get_type() -> GType;
    #[cfg(any(feature = "v3_14", feature = "dox"))]
    pub fn goa_media_server_interface_info() -> *mut gio::GDBusInterfaceInfo;
    #[cfg(any(feature = "v3_14", feature = "dox"))]
    pub fn goa_media_server_override_properties(klass: *mut gobject::GObjectClass, property_id_begin: c_uint) -> c_uint;
    #[cfg(any(feature = "v3_14", feature = "dox"))]
    pub fn goa_media_server_dup_udn(object: *mut GoaMediaServer) -> *mut c_char;
    #[cfg(any(feature = "v3_14", feature = "dox"))]
    pub fn goa_media_server_get_dlna_supported(object: *mut GoaMediaServer) -> gboolean;
    #[cfg(any(feature = "v3_14", feature = "dox"))]
    pub fn goa_media_server_get_udn(object: *mut GoaMediaServer) -> *const c_char;
    #[cfg(any(feature = "v3_14", feature = "dox"))]
    pub fn goa_media_server_set_dlna_supported(object: *mut GoaMediaServer, value: gboolean);
    #[cfg(any(feature = "v3_14", feature = "dox"))]
    pub fn goa_media_server_set_udn(object: *mut GoaMediaServer, value: *const c_char);

    //=========================================================================
    // GoaMusic
    //=========================================================================
    pub fn goa_music_get_type() -> GType;
    #[cfg(any(feature = "v3_18", feature = "dox"))]
    pub fn goa_music_interface_info() -> *mut gio::GDBusInterfaceInfo;
    #[cfg(any(feature = "v3_18", feature = "dox"))]
    pub fn goa_music_override_properties(klass: *mut gobject::GObjectClass, property_id_begin: c_uint) -> c_uint;

    //=========================================================================
    // GoaOAuth2Based
    //=========================================================================
    pub fn goa_oauth2_based_get_type() -> GType;
    pub fn goa_oauth2_based_interface_info() -> *mut gio::GDBusInterfaceInfo;
    pub fn goa_oauth2_based_override_properties(klass: *mut gobject::GObjectClass, property_id_begin: c_uint) -> c_uint;
    pub fn goa_oauth2_based_call_get_access_token(proxy: *mut GoaOAuth2Based, cancellable: *mut gio::GCancellable, callback: gio::GAsyncReadyCallback, user_data: gpointer);
    pub fn goa_oauth2_based_call_get_access_token_finish(proxy: *mut GoaOAuth2Based, out_access_token: *mut *mut c_char, out_expires_in: *mut c_int, res: *mut gio::GAsyncResult, error: *mut *mut glib::GError) -> gboolean;
    pub fn goa_oauth2_based_call_get_access_token_sync(proxy: *mut GoaOAuth2Based, out_access_token: *mut *mut c_char, out_expires_in: *mut c_int, cancellable: *mut gio::GCancellable, error: *mut *mut glib::GError) -> gboolean;
    pub fn goa_oauth2_based_complete_get_access_token(object: *mut GoaOAuth2Based, invocation: *mut gio::GDBusMethodInvocation, access_token: *const c_char, expires_in: c_int);
    pub fn goa_oauth2_based_dup_client_id(object: *mut GoaOAuth2Based) -> *mut c_char;
    pub fn goa_oauth2_based_dup_client_secret(object: *mut GoaOAuth2Based) -> *mut c_char;
    pub fn goa_oauth2_based_get_client_id(object: *mut GoaOAuth2Based) -> *const c_char;
    pub fn goa_oauth2_based_get_client_secret(object: *mut GoaOAuth2Based) -> *const c_char;
    pub fn goa_oauth2_based_set_client_id(object: *mut GoaOAuth2Based, value: *const c_char);
    pub fn goa_oauth2_based_set_client_secret(object: *mut GoaOAuth2Based, value: *const c_char);

    //=========================================================================
    // GoaOAuthBased
    //=========================================================================
    pub fn goa_oauth_based_get_type() -> GType;
    pub fn goa_oauth_based_interface_info() -> *mut gio::GDBusInterfaceInfo;
    pub fn goa_oauth_based_override_properties(klass: *mut gobject::GObjectClass, property_id_begin: c_uint) -> c_uint;
    pub fn goa_oauth_based_call_get_access_token(proxy: *mut GoaOAuthBased, cancellable: *mut gio::GCancellable, callback: gio::GAsyncReadyCallback, user_data: gpointer);
    pub fn goa_oauth_based_call_get_access_token_finish(proxy: *mut GoaOAuthBased, out_access_token: *mut *mut c_char, out_access_token_secret: *mut *mut c_char, out_expires_in: *mut c_int, res: *mut gio::GAsyncResult, error: *mut *mut glib::GError) -> gboolean;
    pub fn goa_oauth_based_call_get_access_token_sync(proxy: *mut GoaOAuthBased, out_access_token: *mut *mut c_char, out_access_token_secret: *mut *mut c_char, out_expires_in: *mut c_int, cancellable: *mut gio::GCancellable, error: *mut *mut glib::GError) -> gboolean;
    pub fn goa_oauth_based_complete_get_access_token(object: *mut GoaOAuthBased, invocation: *mut gio::GDBusMethodInvocation, access_token: *const c_char, access_token_secret: *const c_char, expires_in: c_int);
    pub fn goa_oauth_based_dup_consumer_key(object: *mut GoaOAuthBased) -> *mut c_char;
    pub fn goa_oauth_based_dup_consumer_secret(object: *mut GoaOAuthBased) -> *mut c_char;
    pub fn goa_oauth_based_get_consumer_key(object: *mut GoaOAuthBased) -> *const c_char;
    pub fn goa_oauth_based_get_consumer_secret(object: *mut GoaOAuthBased) -> *const c_char;
    pub fn goa_oauth_based_set_consumer_key(object: *mut GoaOAuthBased, value: *const c_char);
    pub fn goa_oauth_based_set_consumer_secret(object: *mut GoaOAuthBased, value: *const c_char);

    //=========================================================================
    // GoaObject
    //=========================================================================
    pub fn goa_object_get_type() -> GType;
    pub fn goa_object_get_account(object: *mut GoaObject) -> *mut GoaAccount;
    pub fn goa_object_get_calendar(object: *mut GoaObject) -> *mut GoaCalendar;
    pub fn goa_object_get_chat(object: *mut GoaObject) -> *mut GoaChat;
    pub fn goa_object_get_contacts(object: *mut GoaObject) -> *mut GoaContacts;
    pub fn goa_object_get_documents(object: *mut GoaObject) -> *mut GoaDocuments;
    #[cfg(any(feature = "v3_6", feature = "dox"))]
    pub fn goa_object_get_exchange(object: *mut GoaObject) -> *mut GoaExchange;
    #[cfg(any(feature = "v3_8", feature = "dox"))]
    pub fn goa_object_get_files(object: *mut GoaObject) -> *mut GoaFiles;
    pub fn goa_object_get_mail(object: *mut GoaObject) -> *mut GoaMail;
    pub fn goa_object_get_manager(object: *mut GoaObject) -> *mut GoaManager;
    #[cfg(any(feature = "v3_14", feature = "dox"))]
    pub fn goa_object_get_maps(object: *mut GoaObject) -> *mut GoaMaps;
    #[cfg(any(feature = "v3_14", feature = "dox"))]
    pub fn goa_object_get_media_server(object: *mut GoaObject) -> *mut GoaMediaServer;
    #[cfg(any(feature = "v3_18", feature = "dox"))]
    pub fn goa_object_get_music(object: *mut GoaObject) -> *mut GoaMusic;
    pub fn goa_object_get_oauth2_based(object: *mut GoaObject) -> *mut GoaOAuth2Based;
    pub fn goa_object_get_oauth_based(object: *mut GoaObject) -> *mut GoaOAuthBased;
    #[cfg(any(feature = "v3_6", feature = "dox"))]
    pub fn goa_object_get_password_based(object: *mut GoaObject) -> *mut GoaPasswordBased;
    #[cfg(any(feature = "v3_8", feature = "dox"))]
    pub fn goa_object_get_photos(object: *mut GoaObject) -> *mut GoaPhotos;
    #[cfg(any(feature = "v3_12", feature = "dox"))]
    pub fn goa_object_get_printers(object: *mut GoaObject) -> *mut GoaPrinters;
    #[cfg(any(feature = "v3_12", feature = "dox"))]
    pub fn goa_object_get_read_later(object: *mut GoaObject) -> *mut GoaReadLater;
    #[cfg(any(feature = "v3_6", feature = "dox"))]
    pub fn goa_object_get_ticketing(object: *mut GoaObject) -> *mut GoaTicketing;
    #[cfg(any(feature = "v3_26", feature = "dox"))]
    pub fn goa_object_get_todo(object: *mut GoaObject) -> *mut GoaTodo;
    pub fn goa_object_peek_account(object: *mut GoaObject) -> *mut GoaAccount;
    pub fn goa_object_peek_calendar(object: *mut GoaObject) -> *mut GoaCalendar;
    pub fn goa_object_peek_chat(object: *mut GoaObject) -> *mut GoaChat;
    pub fn goa_object_peek_contacts(object: *mut GoaObject) -> *mut GoaContacts;
    pub fn goa_object_peek_documents(object: *mut GoaObject) -> *mut GoaDocuments;
    #[cfg(any(feature = "v3_6", feature = "dox"))]
    pub fn goa_object_peek_exchange(object: *mut GoaObject) -> *mut GoaExchange;
    #[cfg(any(feature = "v3_8", feature = "dox"))]
    pub fn goa_object_peek_files(object: *mut GoaObject) -> *mut GoaFiles;
    pub fn goa_object_peek_mail(object: *mut GoaObject) -> *mut GoaMail;
    pub fn goa_object_peek_manager(object: *mut GoaObject) -> *mut GoaManager;
    #[cfg(any(feature = "v3_14", feature = "dox"))]
    pub fn goa_object_peek_maps(object: *mut GoaObject) -> *mut GoaMaps;
    #[cfg(any(feature = "v3_14", feature = "dox"))]
    pub fn goa_object_peek_media_server(object: *mut GoaObject) -> *mut GoaMediaServer;
    #[cfg(any(feature = "v3_18", feature = "dox"))]
    pub fn goa_object_peek_music(object: *mut GoaObject) -> *mut GoaMusic;
    pub fn goa_object_peek_oauth2_based(object: *mut GoaObject) -> *mut GoaOAuth2Based;
    pub fn goa_object_peek_oauth_based(object: *mut GoaObject) -> *mut GoaOAuthBased;
    #[cfg(any(feature = "v3_6", feature = "dox"))]
    pub fn goa_object_peek_password_based(object: *mut GoaObject) -> *mut GoaPasswordBased;
    #[cfg(any(feature = "v3_8", feature = "dox"))]
    pub fn goa_object_peek_photos(object: *mut GoaObject) -> *mut GoaPhotos;
    #[cfg(any(feature = "v3_12", feature = "dox"))]
    pub fn goa_object_peek_printers(object: *mut GoaObject) -> *mut GoaPrinters;
    #[cfg(any(feature = "v3_12", feature = "dox"))]
    pub fn goa_object_peek_read_later(object: *mut GoaObject) -> *mut GoaReadLater;
    #[cfg(any(feature = "v3_6", feature = "dox"))]
    pub fn goa_object_peek_ticketing(object: *mut GoaObject) -> *mut GoaTicketing;
    #[cfg(any(feature = "v3_26", feature = "dox"))]
    pub fn goa_object_peek_todo(object: *mut GoaObject) -> *mut GoaTodo;

    //=========================================================================
    // GoaPasswordBased
    //=========================================================================
    pub fn goa_password_based_get_type() -> GType;
    #[cfg(any(feature = "v3_6", feature = "dox"))]
    pub fn goa_password_based_interface_info() -> *mut gio::GDBusInterfaceInfo;
    #[cfg(any(feature = "v3_6", feature = "dox"))]
    pub fn goa_password_based_override_properties(klass: *mut gobject::GObjectClass, property_id_begin: c_uint) -> c_uint;
    #[cfg(any(feature = "v3_6", feature = "dox"))]
    pub fn goa_password_based_call_get_password(proxy: *mut GoaPasswordBased, arg_id: *const c_char, cancellable: *mut gio::GCancellable, callback: gio::GAsyncReadyCallback, user_data: gpointer);
    #[cfg(any(feature = "v3_6", feature = "dox"))]
    pub fn goa_password_based_call_get_password_finish(proxy: *mut GoaPasswordBased, out_password: *mut *mut c_char, res: *mut gio::GAsyncResult, error: *mut *mut glib::GError) -> gboolean;
    #[cfg(any(feature = "v3_6", feature = "dox"))]
    pub fn goa_password_based_call_get_password_sync(proxy: *mut GoaPasswordBased, arg_id: *const c_char, out_password: *mut *mut c_char, cancellable: *mut gio::GCancellable, error: *mut *mut glib::GError) -> gboolean;
    #[cfg(any(feature = "v3_6", feature = "dox"))]
    pub fn goa_password_based_complete_get_password(object: *mut GoaPasswordBased, invocation: *mut gio::GDBusMethodInvocation, password: *const c_char);

    //=========================================================================
    // GoaPhotos
    //=========================================================================
    pub fn goa_photos_get_type() -> GType;
    #[cfg(any(feature = "v3_8", feature = "dox"))]
    pub fn goa_photos_interface_info() -> *mut gio::GDBusInterfaceInfo;
    #[cfg(any(feature = "v3_8", feature = "dox"))]
    pub fn goa_photos_override_properties(klass: *mut gobject::GObjectClass, property_id_begin: c_uint) -> c_uint;

    //=========================================================================
    // GoaPrinters
    //=========================================================================
    pub fn goa_printers_get_type() -> GType;
    #[cfg(any(feature = "v3_12", feature = "dox"))]
    pub fn goa_printers_interface_info() -> *mut gio::GDBusInterfaceInfo;
    #[cfg(any(feature = "v3_12", feature = "dox"))]
    pub fn goa_printers_override_properties(klass: *mut gobject::GObjectClass, property_id_begin: c_uint) -> c_uint;

    //=========================================================================
    // GoaReadLater
    //=========================================================================
    pub fn goa_read_later_get_type() -> GType;
    #[cfg(any(feature = "v3_12", feature = "dox"))]
    pub fn goa_read_later_interface_info() -> *mut gio::GDBusInterfaceInfo;
    #[cfg(any(feature = "v3_12", feature = "dox"))]
    pub fn goa_read_later_override_properties(klass: *mut gobject::GObjectClass, property_id_begin: c_uint) -> c_uint;

    //=========================================================================
    // GoaTicketing
    //=========================================================================
    pub fn goa_ticketing_get_type() -> GType;
    #[cfg(any(feature = "v3_6", feature = "dox"))]
    pub fn goa_ticketing_interface_info() -> *mut gio::GDBusInterfaceInfo;
    #[cfg(any(feature = "v3_6", feature = "dox"))]
    pub fn goa_ticketing_override_properties(klass: *mut gobject::GObjectClass, property_id_begin: c_uint) -> c_uint;
    #[cfg(any(feature = "v3_6", feature = "dox"))]
    pub fn goa_ticketing_call_get_ticket(proxy: *mut GoaTicketing, cancellable: *mut gio::GCancellable, callback: gio::GAsyncReadyCallback, user_data: gpointer);
    #[cfg(any(feature = "v3_6", feature = "dox"))]
    pub fn goa_ticketing_call_get_ticket_finish(proxy: *mut GoaTicketing, res: *mut gio::GAsyncResult, error: *mut *mut glib::GError) -> gboolean;
    #[cfg(any(feature = "v3_6", feature = "dox"))]
    pub fn goa_ticketing_call_get_ticket_sync(proxy: *mut GoaTicketing, cancellable: *mut gio::GCancellable, error: *mut *mut glib::GError) -> gboolean;
    #[cfg(any(feature = "v3_6", feature = "dox"))]
    pub fn goa_ticketing_complete_get_ticket(object: *mut GoaTicketing, invocation: *mut gio::GDBusMethodInvocation);
    #[cfg(any(feature = "v3_18", feature = "dox"))]
    pub fn goa_ticketing_dup_details(object: *mut GoaTicketing) -> *mut glib::GVariant;
    #[cfg(any(feature = "v3_18", feature = "dox"))]
    pub fn goa_ticketing_get_details(object: *mut GoaTicketing) -> *mut glib::GVariant;
    #[cfg(any(feature = "v3_18", feature = "dox"))]
    pub fn goa_ticketing_set_details(object: *mut GoaTicketing, value: *mut glib::GVariant);

    //=========================================================================
    // GoaTodo
    //=========================================================================
    pub fn goa_todo_get_type() -> GType;
    #[cfg(any(feature = "v3_26", feature = "dox"))]
    pub fn goa_todo_interface_info() -> *mut gio::GDBusInterfaceInfo;
    #[cfg(any(feature = "v3_26", feature = "dox"))]
    pub fn goa_todo_override_properties(klass: *mut gobject::GObjectClass, property_id_begin: c_uint) -> c_uint;

    //=========================================================================
    // Other functions
    //=========================================================================
    #[cfg(any(feature = "v3_8", feature = "dox"))]
    pub fn goa_check_version(required_major: c_uint, required_minor: c_uint, required_micro: c_uint) -> *const c_char;

}