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
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>GDataContactsContact</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="GData Reference Manual">
<link rel="up" href="ch10.html" title="Google Contacts API">
<link rel="prev" href="GDataContactsQuery.html" title="GDataContactsQuery">
<link rel="next" href="ch11.html" title="Google Documents API">
<meta name="generator" content="GTK-Doc V1.14 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
<tr valign="middle">
<td><a accesskey="p" href="GDataContactsQuery.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
<td><a accesskey="u" href="ch10.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
<th width="100%" align="center">GData Reference Manual</th>
<td><a accesskey="n" href="ch11.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
</tr>
<tr><td colspan="5" class="shortcuts">
<a href="#GDataContactsContact.synopsis" class="shortcut">Top</a>
|
<a href="#GDataContactsContact.description" class="shortcut">Description</a>
|
<a href="#GDataContactsContact.object-hierarchy" class="shortcut">Object Hierarchy</a>
|
<a href="#GDataContactsContact.properties" class="shortcut">Properties</a>
</td></tr>
</table>
<div class="refentry" title="GDataContactsContact">
<a name="GDataContactsContact"></a><div class="titlepage"></div>
<div class="refnamediv"><table width="100%"><tr>
<td valign="top">
<h2><span class="refentrytitle"><a name="GDataContactsContact.top_of_page"></a>GDataContactsContact</span></h2>
<p>GDataContactsContact — GData Contacts contact object</p>
</td>
<td valign="top" align="right"></td>
</tr></table></div>
<div class="refsect1" title="Stability Level">
<a name="GDataContactsContact.stability-level"></a><h2>Stability Level</h2>
Unstable, unless otherwise indicated
</div>
<div class="refsynopsisdiv" title="Synopsis">
<a name="GDataContactsContact.synopsis"></a><h2>Synopsis</h2>
<pre class="synopsis">
#include <gdata/services/contacts/gdata-contacts-contact.h>
<a class="link" href="GDataContactsContact.html#GDataContactsContact-struct" title="GDataContactsContact">GDataContactsContact</a>;
<a class="link" href="GDataContactsContact.html#GDataContactsContactClass" title="GDataContactsContactClass">GDataContactsContactClass</a>;
<a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="returnvalue">GDataContactsContact</span></a> * <a class="link" href="GDataContactsContact.html#gdata-contacts-contact-new" title="gdata_contacts_contact_new ()">gdata_contacts_contact_new</a> (<em class="parameter"><code>const <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *id</code></em>);
<a class="link" href="GDataGDName.html" title="GDataGDName"><span class="returnvalue">GDataGDName</span></a> * <a class="link" href="GDataContactsContact.html#gdata-contacts-contact-get-name" title="gdata_contacts_contact_get_name ()">gdata_contacts_contact_get_name</a> (<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>);
<span class="returnvalue">void</span> <a class="link" href="GDataContactsContact.html#gdata-contacts-contact-set-name" title="gdata_contacts_contact_set_name ()">gdata_contacts_contact_set_name</a> (<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>,
<em class="parameter"><code><a class="link" href="GDataGDName.html" title="GDataGDName"><span class="type">GDataGDName</span></a> *name</code></em>);
<a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> * <a class="link" href="GDataContactsContact.html#gdata-contacts-contact-get-email-addresses" title="gdata_contacts_contact_get_email_addresses ()">gdata_contacts_contact_get_email_addresses</a>
(<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>);
<a class="link" href="GDataGDEmailAddress.html" title="GDataGDEmailAddress"><span class="returnvalue">GDataGDEmailAddress</span></a> * <a class="link" href="GDataContactsContact.html#gdata-contacts-contact-get-primary-email-address" title="gdata_contacts_contact_get_primary_email_address ()">gdata_contacts_contact_get_primary_email_address</a>
(<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>);
<span class="returnvalue">void</span> <a class="link" href="GDataContactsContact.html#gdata-contacts-contact-add-email-address" title="gdata_contacts_contact_add_email_address ()">gdata_contacts_contact_add_email_address</a>
(<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>,
<em class="parameter"><code><a class="link" href="GDataGDEmailAddress.html" title="GDataGDEmailAddress"><span class="type">GDataGDEmailAddress</span></a> *email_address</code></em>);
<span class="returnvalue">void</span> <a class="link" href="GDataContactsContact.html#gdata-contacts-contact-remove-all-email-addresses" title="gdata_contacts_contact_remove_all_email_addresses ()">gdata_contacts_contact_remove_all_email_addresses</a>
(<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>);
<a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> * <a class="link" href="GDataContactsContact.html#gdata-contacts-contact-get-im-addresses" title="gdata_contacts_contact_get_im_addresses ()">gdata_contacts_contact_get_im_addresses</a>
(<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>);
<a class="link" href="GDataGDIMAddress.html" title="GDataGDIMAddress"><span class="returnvalue">GDataGDIMAddress</span></a> * <a class="link" href="GDataContactsContact.html#gdata-contacts-contact-get-primary-im-address" title="gdata_contacts_contact_get_primary_im_address ()">gdata_contacts_contact_get_primary_im_address</a>
(<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>);
<span class="returnvalue">void</span> <a class="link" href="GDataContactsContact.html#gdata-contacts-contact-add-im-address" title="gdata_contacts_contact_add_im_address ()">gdata_contacts_contact_add_im_address</a>
(<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>,
<em class="parameter"><code><a class="link" href="GDataGDIMAddress.html" title="GDataGDIMAddress"><span class="type">GDataGDIMAddress</span></a> *im_address</code></em>);
<span class="returnvalue">void</span> <a class="link" href="GDataContactsContact.html#gdata-contacts-contact-remove-all-im-addresses" title="gdata_contacts_contact_remove_all_im_addresses ()">gdata_contacts_contact_remove_all_im_addresses</a>
(<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>);
<a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> * <a class="link" href="GDataContactsContact.html#gdata-contacts-contact-get-postal-addresses" title="gdata_contacts_contact_get_postal_addresses ()">gdata_contacts_contact_get_postal_addresses</a>
(<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>);
<a class="link" href="GDataGDPostalAddress.html" title="GDataGDPostalAddress"><span class="returnvalue">GDataGDPostalAddress</span></a> * <a class="link" href="GDataContactsContact.html#gdata-contacts-contact-get-primary-postal-address" title="gdata_contacts_contact_get_primary_postal_address ()">gdata_contacts_contact_get_primary_postal_address</a>
(<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>);
<span class="returnvalue">void</span> <a class="link" href="GDataContactsContact.html#gdata-contacts-contact-add-postal-address" title="gdata_contacts_contact_add_postal_address ()">gdata_contacts_contact_add_postal_address</a>
(<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>,
<em class="parameter"><code><a class="link" href="GDataGDPostalAddress.html" title="GDataGDPostalAddress"><span class="type">GDataGDPostalAddress</span></a> *postal_address</code></em>);
<span class="returnvalue">void</span> <a class="link" href="GDataContactsContact.html#gdata-contacts-contact-remove-all-postal-addresses" title="gdata_contacts_contact_remove_all_postal_addresses ()">gdata_contacts_contact_remove_all_postal_addresses</a>
(<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>);
<a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> * <a class="link" href="GDataContactsContact.html#gdata-contacts-contact-get-phone-numbers" title="gdata_contacts_contact_get_phone_numbers ()">gdata_contacts_contact_get_phone_numbers</a>
(<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>);
<a class="link" href="GDataGDPhoneNumber.html" title="GDataGDPhoneNumber"><span class="returnvalue">GDataGDPhoneNumber</span></a> * <a class="link" href="GDataContactsContact.html#gdata-contacts-contact-get-primary-phone-number" title="gdata_contacts_contact_get_primary_phone_number ()">gdata_contacts_contact_get_primary_phone_number</a>
(<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>);
<span class="returnvalue">void</span> <a class="link" href="GDataContactsContact.html#gdata-contacts-contact-add-phone-number" title="gdata_contacts_contact_add_phone_number ()">gdata_contacts_contact_add_phone_number</a>
(<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>,
<em class="parameter"><code><a class="link" href="GDataGDPhoneNumber.html" title="GDataGDPhoneNumber"><span class="type">GDataGDPhoneNumber</span></a> *phone_number</code></em>);
<span class="returnvalue">void</span> <a class="link" href="GDataContactsContact.html#gdata-contacts-contact-remove-all-phone-numbers" title="gdata_contacts_contact_remove_all_phone_numbers ()">gdata_contacts_contact_remove_all_phone_numbers</a>
(<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>);
<a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> * <a class="link" href="GDataContactsContact.html#gdata-contacts-contact-get-organizations" title="gdata_contacts_contact_get_organizations ()">gdata_contacts_contact_get_organizations</a>
(<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>);
<a class="link" href="GDataGDOrganization.html" title="GDataGDOrganization"><span class="returnvalue">GDataGDOrganization</span></a> * <a class="link" href="GDataContactsContact.html#gdata-contacts-contact-get-primary-organization" title="gdata_contacts_contact_get_primary_organization ()">gdata_contacts_contact_get_primary_organization</a>
(<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>);
<span class="returnvalue">void</span> <a class="link" href="GDataContactsContact.html#gdata-contacts-contact-add-organization" title="gdata_contacts_contact_add_organization ()">gdata_contacts_contact_add_organization</a>
(<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>,
<em class="parameter"><code><a class="link" href="GDataGDOrganization.html" title="GDataGDOrganization"><span class="type">GDataGDOrganization</span></a> *organization</code></em>);
<span class="returnvalue">void</span> <a class="link" href="GDataContactsContact.html#gdata-contacts-contact-remove-all-organizations" title="gdata_contacts_contact_remove_all_organizations ()">gdata_contacts_contact_remove_all_organizations</a>
(<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>);
<a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> * <a class="link" href="GDataContactsContact.html#gdata-contacts-contact-get-groups" title="gdata_contacts_contact_get_groups ()">gdata_contacts_contact_get_groups</a> (<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>);
<span class="returnvalue">void</span> <a class="link" href="GDataContactsContact.html#gdata-contacts-contact-add-group" title="gdata_contacts_contact_add_group ()">gdata_contacts_contact_add_group</a> (<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>,
<em class="parameter"><code>const <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *href</code></em>);
<span class="returnvalue">void</span> <a class="link" href="GDataContactsContact.html#gdata-contacts-contact-remove-group" title="gdata_contacts_contact_remove_group ()">gdata_contacts_contact_remove_group</a> (<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>,
<em class="parameter"><code>const <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *href</code></em>);
<a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GDataContactsContact.html#gdata-contacts-contact-is-group-deleted" title="gdata_contacts_contact_is_group_deleted ()">gdata_contacts_contact_is_group_deleted</a>
(<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>,
<em class="parameter"><code>const <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *href</code></em>);
const <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * <a class="link" href="GDataContactsContact.html#gdata-contacts-contact-get-extended-property" title="gdata_contacts_contact_get_extended_property ()">gdata_contacts_contact_get_extended_property</a>
(<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>,
<em class="parameter"><code>const <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>);
<a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Hash-Tables.html#GHashTable"><span class="returnvalue">GHashTable</span></a> * <a class="link" href="GDataContactsContact.html#gdata-contacts-contact-get-extended-properties" title="gdata_contacts_contact_get_extended_properties ()">gdata_contacts_contact_get_extended_properties</a>
(<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>);
<a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GDataContactsContact.html#gdata-contacts-contact-set-extended-property" title="gdata_contacts_contact_set_extended_property ()">gdata_contacts_contact_set_extended_property</a>
(<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>,
<em class="parameter"><code>const <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>,
<em class="parameter"><code>const <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *value</code></em>);
<span class="returnvalue">void</span> <a class="link" href="GDataContactsContact.html#gdata-contacts-contact-get-edited" title="gdata_contacts_contact_get_edited ()">gdata_contacts_contact_get_edited</a> (<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>,
<em class="parameter"><code><a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Date-and-Time-Functions.html#GTimeVal"><span class="type">GTimeVal</span></a> *edited</code></em>);
<a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GDataContactsContact.html#gdata-contacts-contact-is-deleted" title="gdata_contacts_contact_is_deleted ()">gdata_contacts_contact_is_deleted</a> (<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>);
<a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GDataContactsContact.html#gdata-contacts-contact-has-photo" title="gdata_contacts_contact_has_photo ()">gdata_contacts_contact_has_photo</a> (<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>);
<a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * <a class="link" href="GDataContactsContact.html#gdata-contacts-contact-get-photo" title="gdata_contacts_contact_get_photo ()">gdata_contacts_contact_get_photo</a> (<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>,
<em class="parameter"><code><a class="link" href="GDataContactsService.html" title="GDataContactsService"><span class="type">GDataContactsService</span></a> *service</code></em>,
<em class="parameter"><code><a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gsize"><span class="type">gsize</span></a> *length</code></em>,
<em class="parameter"><code><a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> **content_type</code></em>,
<em class="parameter"><code><a href="/opt/gnome2/build/share/gtk-doc/html/gio/GCancellable.html"><span class="type">GCancellable</span></a> *cancellable</code></em>,
<em class="parameter"><code><a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);
<a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GDataContactsContact.html#gdata-contacts-contact-set-photo" title="gdata_contacts_contact_set_photo ()">gdata_contacts_contact_set_photo</a> (<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>,
<em class="parameter"><code><a class="link" href="GDataService.html" title="GDataService"><span class="type">GDataService</span></a> *service</code></em>,
<em class="parameter"><code>const <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *data</code></em>,
<em class="parameter"><code><a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gsize"><span class="type">gsize</span></a> length</code></em>,
<em class="parameter"><code><a href="/opt/gnome2/build/share/gtk-doc/html/gio/GCancellable.html"><span class="type">GCancellable</span></a> *cancellable</code></em>,
<em class="parameter"><code><a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);
</pre>
</div>
<div class="refsect1" title="Object Hierarchy">
<a name="GDataContactsContact.object-hierarchy"></a><h2>Object Hierarchy</h2>
<pre class="synopsis">
<a href="/opt/gnome2/build/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject">GObject</a>
+----<a class="link" href="GDataParsable.html" title="GDataParsable">GDataParsable</a>
+----<a class="link" href="GDataEntry.html" title="GDataEntry">GDataEntry</a>
+----GDataContactsContact
</pre>
</div>
<div class="refsect1" title="Properties">
<a name="GDataContactsContact.properties"></a><h2>Properties</h2>
<pre class="synopsis">
"<a class="link" href="GDataContactsContact.html#GDataContactsContact--deleted" title='The "deleted" property'>deleted</a>" <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read
"<a class="link" href="GDataContactsContact.html#GDataContactsContact--edited" title='The "edited" property'>edited</a>" <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Date-and-Time-Functions.html#GTimeVal"><span class="type">GTimeVal</span></a>* : Read
"<a class="link" href="GDataContactsContact.html#GDataContactsContact--has-photo" title='The "has-photo" property'>has-photo</a>" <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read
"<a class="link" href="GDataContactsContact.html#GDataContactsContact--name" title='The "name" property'>name</a>" <a class="link" href="GDataGDName.html" title="GDataGDName"><span class="type">GDataGDName</span></a>* : Read / Write
</pre>
</div>
<div class="refsect1" title="Description">
<a name="GDataContactsContact.description"></a><h2>Description</h2>
<p>
<a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> is a subclass of <a class="link" href="GDataEntry.html" title="GDataEntry"><span class="type">GDataEntry</span></a> to represent a contact from a Google address book.
</p>
<p>
For more details of Google Contacts' GData API, see the <a class="ulink" href="http://code.google.com/apis/contacts/docs/2.0/reference.html" target="_top">
online documentation</a>.
</p>
</div>
<div class="refsect1" title="Details">
<a name="GDataContactsContact.details"></a><h2>Details</h2>
<div class="refsect2" title="GDataContactsContact">
<a name="GDataContactsContact-struct"></a><h3>GDataContactsContact</h3>
<pre class="programlisting">typedef struct _GDataContactsContact GDataContactsContact;</pre>
<p>
All the fields in the <a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> structure are private and should never be accessed directly.
</p>
<p class="since">Since 0.2.0</p>
</div>
<hr>
<div class="refsect2" title="GDataContactsContactClass">
<a name="GDataContactsContactClass"></a><h3>GDataContactsContactClass</h3>
<pre class="programlisting">typedef struct {
} GDataContactsContactClass;
</pre>
<p>
All the fields in the <a class="link" href="GDataContactsContact.html#GDataContactsContactClass" title="GDataContactsContactClass"><span class="type">GDataContactsContactClass</span></a> structure are private and should never be accessed directly.
</p>
<p class="since">Since 0.2.0</p>
</div>
<hr>
<div class="refsect2" title="gdata_contacts_contact_new ()">
<a name="gdata-contacts-contact-new"></a><h3>gdata_contacts_contact_new ()</h3>
<pre class="programlisting"><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="returnvalue">GDataContactsContact</span></a> * gdata_contacts_contact_new (<em class="parameter"><code>const <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *id</code></em>);</pre>
<p>
Creates a new <a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> with the given ID and default properties.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>id</code></em> :</span></p></td>
<td>the contact's ID, or <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> a new <a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a>; unref with <a href="/opt/gnome2/build/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a>
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.2.0</p>
</div>
<hr>
<div class="refsect2" title="gdata_contacts_contact_get_name ()">
<a name="gdata-contacts-contact-get-name"></a><h3>gdata_contacts_contact_get_name ()</h3>
<pre class="programlisting"><a class="link" href="GDataGDName.html" title="GDataGDName"><span class="returnvalue">GDataGDName</span></a> * gdata_contacts_contact_get_name (<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>);</pre>
<p>
Gets the <a class="link" href="GDataContactsContact.html#GDataContactsContact--name" title='The "name" property'><span class="type">"name"</span></a> property.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>self</code></em> :</span></p></td>
<td>a <a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> the contact's name, or <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.5.0</p>
</div>
<hr>
<div class="refsect2" title="gdata_contacts_contact_set_name ()">
<a name="gdata-contacts-contact-set-name"></a><h3>gdata_contacts_contact_set_name ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span> gdata_contacts_contact_set_name (<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>,
<em class="parameter"><code><a class="link" href="GDataGDName.html" title="GDataGDName"><span class="type">GDataGDName</span></a> *name</code></em>);</pre>
<p>
Sets the <a class="link" href="GDataContactsContact.html#GDataContactsContact--name" title='The "name" property'><span class="type">"name"</span></a> property to <em class="parameter"><code>name</code></em>, and increments its reference count.
</p>
<p>
<em class="parameter"><code>name</code></em> must not be <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, though all its properties may be <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>self</code></em> :</span></p></td>
<td>a <a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
<td>the new <a class="link" href="GDataGDName.html" title="GDataGDName"><span class="type">GDataGDName</span></a>
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.6.3</p>
</div>
<hr>
<div class="refsect2" title="gdata_contacts_contact_get_email_addresses ()">
<a name="gdata-contacts-contact-get-email-addresses"></a><h3>gdata_contacts_contact_get_email_addresses ()</h3>
<pre class="programlisting"><a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> * gdata_contacts_contact_get_email_addresses
(<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>);</pre>
<p>
Gets a list of the e-mail addresses owned by the contact.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>self</code></em> :</span></p></td>
<td>a <a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> a <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="type">GList</span></a> of <a class="link" href="GDataGDEmailAddress.html" title="GDataGDEmailAddress"><span class="type">GDataGDEmailAddress</span></a>es, or <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.2.0</p>
</div>
<hr>
<div class="refsect2" title="gdata_contacts_contact_get_primary_email_address ()">
<a name="gdata-contacts-contact-get-primary-email-address"></a><h3>gdata_contacts_contact_get_primary_email_address ()</h3>
<pre class="programlisting"><a class="link" href="GDataGDEmailAddress.html" title="GDataGDEmailAddress"><span class="returnvalue">GDataGDEmailAddress</span></a> * gdata_contacts_contact_get_primary_email_address
(<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>);</pre>
<p>
Gets the contact's primary e-mail address, if one exists.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>self</code></em> :</span></p></td>
<td>a <a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> a <a class="link" href="GDataGDEmailAddress.html" title="GDataGDEmailAddress"><span class="type">GDataGDEmailAddress</span></a>, or <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.2.0</p>
</div>
<hr>
<div class="refsect2" title="gdata_contacts_contact_add_email_address ()">
<a name="gdata-contacts-contact-add-email-address"></a><h3>gdata_contacts_contact_add_email_address ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span> gdata_contacts_contact_add_email_address
(<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>,
<em class="parameter"><code><a class="link" href="GDataGDEmailAddress.html" title="GDataGDEmailAddress"><span class="type">GDataGDEmailAddress</span></a> *email_address</code></em>);</pre>
<p>
Adds an e-mail address to the contact's list of e-mail addresses and increments its reference count.
</p>
<p>
Note that only one e-mail address per contact may be marked as "primary". Insertion and update operations
(with <a class="link" href="GDataContactsService.html#gdata-contacts-service-insert-contact" title="gdata_contacts_service_insert_contact ()"><code class="function">gdata_contacts_service_insert_contact()</code></a>) will return an error if more than one e-mail address
is marked as primary.
</p>
<p>
Duplicate e-mail addresses will not be added to the list.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>self</code></em> :</span></p></td>
<td>a <a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>email_address</code></em> :</span></p></td>
<td>a <a class="link" href="GDataGDEmailAddress.html" title="GDataGDEmailAddress"><span class="type">GDataGDEmailAddress</span></a> to add
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.2.0</p>
</div>
<hr>
<div class="refsect2" title="gdata_contacts_contact_remove_all_email_addresses ()">
<a name="gdata-contacts-contact-remove-all-email-addresses"></a><h3>gdata_contacts_contact_remove_all_email_addresses ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span> gdata_contacts_contact_remove_all_email_addresses
(<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>);</pre>
<p>
Removes all e-mail addresses from the contact.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody><tr>
<td><p><span class="term"><em class="parameter"><code>self</code></em> :</span></p></td>
<td>a <a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a>
</td>
</tr></tbody>
</table></div>
<p class="since">Since 0.4.0</p>
</div>
<hr>
<div class="refsect2" title="gdata_contacts_contact_get_im_addresses ()">
<a name="gdata-contacts-contact-get-im-addresses"></a><h3>gdata_contacts_contact_get_im_addresses ()</h3>
<pre class="programlisting"><a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> * gdata_contacts_contact_get_im_addresses
(<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>);</pre>
<p>
Gets a list of the IM addresses owned by the contact.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>self</code></em> :</span></p></td>
<td>a <a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> a <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="type">GList</span></a> of <a class="link" href="GDataGDIMAddress.html" title="GDataGDIMAddress"><span class="type">GDataGDIMAddress</span></a>es, or <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.2.0</p>
</div>
<hr>
<div class="refsect2" title="gdata_contacts_contact_get_primary_im_address ()">
<a name="gdata-contacts-contact-get-primary-im-address"></a><h3>gdata_contacts_contact_get_primary_im_address ()</h3>
<pre class="programlisting"><a class="link" href="GDataGDIMAddress.html" title="GDataGDIMAddress"><span class="returnvalue">GDataGDIMAddress</span></a> * gdata_contacts_contact_get_primary_im_address
(<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>);</pre>
<p>
Gets the contact's primary IM address, if one exists.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>self</code></em> :</span></p></td>
<td>a <a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> a <a class="link" href="GDataGDIMAddress.html" title="GDataGDIMAddress"><span class="type">GDataGDIMAddress</span></a>, or <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.2.0</p>
</div>
<hr>
<div class="refsect2" title="gdata_contacts_contact_add_im_address ()">
<a name="gdata-contacts-contact-add-im-address"></a><h3>gdata_contacts_contact_add_im_address ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span> gdata_contacts_contact_add_im_address
(<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>,
<em class="parameter"><code><a class="link" href="GDataGDIMAddress.html" title="GDataGDIMAddress"><span class="type">GDataGDIMAddress</span></a> *im_address</code></em>);</pre>
<p>
Adds an IM (instant messaging) address to the contact's list of IM addresses and increments its reference count.
</p>
<p>
Note that only one IM address per contact may be marked as "primary". Insertion and update operations
(with <a class="link" href="GDataContactsService.html#gdata-contacts-service-insert-contact" title="gdata_contacts_service_insert_contact ()"><code class="function">gdata_contacts_service_insert_contact()</code></a>) will return an error if more than one IM address
is marked as primary.
</p>
<p>
Duplicate IM addresses will not be added to the list.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>self</code></em> :</span></p></td>
<td>a <a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>im_address</code></em> :</span></p></td>
<td>a <a class="link" href="GDataGDIMAddress.html" title="GDataGDIMAddress"><span class="type">GDataGDIMAddress</span></a> to add
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.2.0</p>
</div>
<hr>
<div class="refsect2" title="gdata_contacts_contact_remove_all_im_addresses ()">
<a name="gdata-contacts-contact-remove-all-im-addresses"></a><h3>gdata_contacts_contact_remove_all_im_addresses ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span> gdata_contacts_contact_remove_all_im_addresses
(<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>);</pre>
<p>
Removes all IM addresses from the contact.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody><tr>
<td><p><span class="term"><em class="parameter"><code>self</code></em> :</span></p></td>
<td>a <a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a>
</td>
</tr></tbody>
</table></div>
<p class="since">Since 0.4.0</p>
</div>
<hr>
<div class="refsect2" title="gdata_contacts_contact_get_postal_addresses ()">
<a name="gdata-contacts-contact-get-postal-addresses"></a><h3>gdata_contacts_contact_get_postal_addresses ()</h3>
<pre class="programlisting"><a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> * gdata_contacts_contact_get_postal_addresses
(<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>);</pre>
<p>
Gets a list of the postal addresses owned by the contact.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>self</code></em> :</span></p></td>
<td>a <a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> a <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="type">GList</span></a> of <a class="link" href="GDataGDPostalAddress.html" title="GDataGDPostalAddress"><span class="type">GDataGDPostalAddress</span></a>es, or <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.2.0</p>
</div>
<hr>
<div class="refsect2" title="gdata_contacts_contact_get_primary_postal_address ()">
<a name="gdata-contacts-contact-get-primary-postal-address"></a><h3>gdata_contacts_contact_get_primary_postal_address ()</h3>
<pre class="programlisting"><a class="link" href="GDataGDPostalAddress.html" title="GDataGDPostalAddress"><span class="returnvalue">GDataGDPostalAddress</span></a> * gdata_contacts_contact_get_primary_postal_address
(<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>);</pre>
<p>
Gets the contact's primary postal address, if one exists.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>self</code></em> :</span></p></td>
<td>a <a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> a <a class="link" href="GDataGDPostalAddress.html" title="GDataGDPostalAddress"><span class="type">GDataGDPostalAddress</span></a>, or <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.2.0</p>
</div>
<hr>
<div class="refsect2" title="gdata_contacts_contact_add_postal_address ()">
<a name="gdata-contacts-contact-add-postal-address"></a><h3>gdata_contacts_contact_add_postal_address ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span> gdata_contacts_contact_add_postal_address
(<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>,
<em class="parameter"><code><a class="link" href="GDataGDPostalAddress.html" title="GDataGDPostalAddress"><span class="type">GDataGDPostalAddress</span></a> *postal_address</code></em>);</pre>
<p>
Adds a postal address to the contact's list of postal addresses and increments its reference count.
</p>
<p>
Note that only one postal address per contact may be marked as "primary". Insertion and update operations
(with <a class="link" href="GDataContactsService.html#gdata-contacts-service-insert-contact" title="gdata_contacts_service_insert_contact ()"><code class="function">gdata_contacts_service_insert_contact()</code></a>) will return an error if more than one postal address
is marked as primary.
</p>
<p>
Duplicate postal addresses will not be added to the list.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>self</code></em> :</span></p></td>
<td>a <a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>postal_address</code></em> :</span></p></td>
<td>a <a class="link" href="GDataGDPostalAddress.html" title="GDataGDPostalAddress"><span class="type">GDataGDPostalAddress</span></a> to add
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.2.0</p>
</div>
<hr>
<div class="refsect2" title="gdata_contacts_contact_remove_all_postal_addresses ()">
<a name="gdata-contacts-contact-remove-all-postal-addresses"></a><h3>gdata_contacts_contact_remove_all_postal_addresses ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span> gdata_contacts_contact_remove_all_postal_addresses
(<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>);</pre>
<p>
Removes all postal addresses from the contact.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody><tr>
<td><p><span class="term"><em class="parameter"><code>self</code></em> :</span></p></td>
<td>a <a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a>
</td>
</tr></tbody>
</table></div>
<p class="since">Since 0.4.0</p>
</div>
<hr>
<div class="refsect2" title="gdata_contacts_contact_get_phone_numbers ()">
<a name="gdata-contacts-contact-get-phone-numbers"></a><h3>gdata_contacts_contact_get_phone_numbers ()</h3>
<pre class="programlisting"><a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> * gdata_contacts_contact_get_phone_numbers
(<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>);</pre>
<p>
Gets a list of the phone numbers owned by the contact.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>self</code></em> :</span></p></td>
<td>a <a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> a <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="type">GList</span></a> of <a class="link" href="GDataGDPhoneNumber.html" title="GDataGDPhoneNumber"><span class="type">GDataGDPhoneNumber</span></a>s, or <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.2.0</p>
</div>
<hr>
<div class="refsect2" title="gdata_contacts_contact_get_primary_phone_number ()">
<a name="gdata-contacts-contact-get-primary-phone-number"></a><h3>gdata_contacts_contact_get_primary_phone_number ()</h3>
<pre class="programlisting"><a class="link" href="GDataGDPhoneNumber.html" title="GDataGDPhoneNumber"><span class="returnvalue">GDataGDPhoneNumber</span></a> * gdata_contacts_contact_get_primary_phone_number
(<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>);</pre>
<p>
Gets the contact's primary phone number, if one exists.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>self</code></em> :</span></p></td>
<td>a <a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> a <a class="link" href="GDataGDPhoneNumber.html" title="GDataGDPhoneNumber"><span class="type">GDataGDPhoneNumber</span></a>, or <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.2.0</p>
</div>
<hr>
<div class="refsect2" title="gdata_contacts_contact_add_phone_number ()">
<a name="gdata-contacts-contact-add-phone-number"></a><h3>gdata_contacts_contact_add_phone_number ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span> gdata_contacts_contact_add_phone_number
(<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>,
<em class="parameter"><code><a class="link" href="GDataGDPhoneNumber.html" title="GDataGDPhoneNumber"><span class="type">GDataGDPhoneNumber</span></a> *phone_number</code></em>);</pre>
<p>
Adds a phone number to the contact's list of phone numbers and increments its reference count
</p>
<p>
Note that only one phone number per contact may be marked as "primary". Insertion and update operations
(with <a class="link" href="GDataContactsService.html#gdata-contacts-service-insert-contact" title="gdata_contacts_service_insert_contact ()"><code class="function">gdata_contacts_service_insert_contact()</code></a>) will return an error if more than one phone number
is marked as primary.
</p>
<p>
Duplicate phone numbers will not be added to the list.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>self</code></em> :</span></p></td>
<td>a <a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>phone_number</code></em> :</span></p></td>
<td>a <a class="link" href="GDataGDPhoneNumber.html" title="GDataGDPhoneNumber"><span class="type">GDataGDPhoneNumber</span></a> to add
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.2.0</p>
</div>
<hr>
<div class="refsect2" title="gdata_contacts_contact_remove_all_phone_numbers ()">
<a name="gdata-contacts-contact-remove-all-phone-numbers"></a><h3>gdata_contacts_contact_remove_all_phone_numbers ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span> gdata_contacts_contact_remove_all_phone_numbers
(<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>);</pre>
<p>
Removes all phone numbers from the contact.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody><tr>
<td><p><span class="term"><em class="parameter"><code>self</code></em> :</span></p></td>
<td>a <a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a>
</td>
</tr></tbody>
</table></div>
<p class="since">Since 0.4.0</p>
</div>
<hr>
<div class="refsect2" title="gdata_contacts_contact_get_organizations ()">
<a name="gdata-contacts-contact-get-organizations"></a><h3>gdata_contacts_contact_get_organizations ()</h3>
<pre class="programlisting"><a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> * gdata_contacts_contact_get_organizations
(<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>);</pre>
<p>
Gets a list of the organizations to which the contact belongs.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>self</code></em> :</span></p></td>
<td>a <a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> a <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="type">GList</span></a> of <a class="link" href="GDataGDOrganization.html" title="GDataGDOrganization"><span class="type">GDataGDOrganization</span></a>s, or <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.2.0</p>
</div>
<hr>
<div class="refsect2" title="gdata_contacts_contact_get_primary_organization ()">
<a name="gdata-contacts-contact-get-primary-organization"></a><h3>gdata_contacts_contact_get_primary_organization ()</h3>
<pre class="programlisting"><a class="link" href="GDataGDOrganization.html" title="GDataGDOrganization"><span class="returnvalue">GDataGDOrganization</span></a> * gdata_contacts_contact_get_primary_organization
(<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>);</pre>
<p>
Gets the contact's primary organization, if one exists.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>self</code></em> :</span></p></td>
<td>a <a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> a <a class="link" href="GDataGDOrganization.html" title="GDataGDOrganization"><span class="type">GDataGDOrganization</span></a>, or <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.2.0</p>
</div>
<hr>
<div class="refsect2" title="gdata_contacts_contact_add_organization ()">
<a name="gdata-contacts-contact-add-organization"></a><h3>gdata_contacts_contact_add_organization ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span> gdata_contacts_contact_add_organization
(<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>,
<em class="parameter"><code><a class="link" href="GDataGDOrganization.html" title="GDataGDOrganization"><span class="type">GDataGDOrganization</span></a> *organization</code></em>);</pre>
<p>
Adds an organization to the contact's list of organizations (e.g. employers) and increments its reference count.
</p>
<p>
Note that only one organization per contact may be marked as "primary". Insertion and update operations
(with <a class="link" href="GDataContactsService.html#gdata-contacts-service-insert-contact" title="gdata_contacts_service_insert_contact ()"><code class="function">gdata_contacts_service_insert_contact()</code></a>) will return an error if more than one organization
is marked as primary.
</p>
<p>
Duplicate organizations will not be added to the list.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>self</code></em> :</span></p></td>
<td>a <a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>organization</code></em> :</span></p></td>
<td>a <a class="link" href="GDataGDOrganization.html" title="GDataGDOrganization"><span class="type">GDataGDOrganization</span></a> to add
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.2.0</p>
</div>
<hr>
<div class="refsect2" title="gdata_contacts_contact_remove_all_organizations ()">
<a name="gdata-contacts-contact-remove-all-organizations"></a><h3>gdata_contacts_contact_remove_all_organizations ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span> gdata_contacts_contact_remove_all_organizations
(<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>);</pre>
<p>
Removes all organizations from the contact.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody><tr>
<td><p><span class="term"><em class="parameter"><code>self</code></em> :</span></p></td>
<td>a <a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a>
</td>
</tr></tbody>
</table></div>
<p class="since">Since 0.4.0</p>
</div>
<hr>
<div class="refsect2" title="gdata_contacts_contact_get_groups ()">
<a name="gdata-contacts-contact-get-groups"></a><h3>gdata_contacts_contact_get_groups ()</h3>
<pre class="programlisting"><a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> * gdata_contacts_contact_get_groups (<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>);</pre>
<p>
Gets a list of the groups to which the contact belongs.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>self</code></em> :</span></p></td>
<td>a <a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> a <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="type">GList</span></a> of constant group ID URIs, or <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>; free with <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#g-list-free"><code class="function">g_list_free()</code></a>
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.2.0</p>
</div>
<hr>
<div class="refsect2" title="gdata_contacts_contact_add_group ()">
<a name="gdata-contacts-contact-add-group"></a><h3>gdata_contacts_contact_add_group ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span> gdata_contacts_contact_add_group (<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>,
<em class="parameter"><code>const <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *href</code></em>);</pre>
<p>
Adds the contact to the given group. <em class="parameter"><code>href</code></em> should be a URI.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>self</code></em> :</span></p></td>
<td>a <a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>href</code></em> :</span></p></td>
<td>the group's ID URI
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.2.0</p>
</div>
<hr>
<div class="refsect2" title="gdata_contacts_contact_remove_group ()">
<a name="gdata-contacts-contact-remove-group"></a><h3>gdata_contacts_contact_remove_group ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span> gdata_contacts_contact_remove_group (<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>,
<em class="parameter"><code>const <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *href</code></em>);</pre>
<p>
Removes the contact from the given group. <em class="parameter"><code>href</code></em> should be a URI.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>self</code></em> :</span></p></td>
<td>a <a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>href</code></em> :</span></p></td>
<td>the group's ID URI
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.2.0</p>
</div>
<hr>
<div class="refsect2" title="gdata_contacts_contact_is_group_deleted ()">
<a name="gdata-contacts-contact-is-group-deleted"></a><h3>gdata_contacts_contact_is_group_deleted ()</h3>
<pre class="programlisting"><a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gdata_contacts_contact_is_group_deleted
(<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>,
<em class="parameter"><code>const <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *href</code></em>);</pre>
<p>
Returns whether the contact has recently been removed from the given group. This
will always return <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> unless <a class="link" href="GDataContactsQuery.html#GDataContactsQuery--show-deleted" title='The "show-deleted" property'><span class="type">"show-deleted"</span></a> has been set to
<a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> for the query which returned the contact.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>self</code></em> :</span></p></td>
<td>a <a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>href</code></em> :</span></p></td>
<td>the group's ID URI
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the contact has recently been removed from the group, <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.2.0</p>
</div>
<hr>
<div class="refsect2" title="gdata_contacts_contact_get_extended_property ()">
<a name="gdata-contacts-contact-get-extended-property"></a><h3>gdata_contacts_contact_get_extended_property ()</h3>
<pre class="programlisting">const <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * gdata_contacts_contact_get_extended_property
(<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>,
<em class="parameter"><code>const <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>);</pre>
<p>
Gets the value of an extended property of the contact. Each contact can have up to 10 client-set extended
properties to store data of the client's choosing.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>self</code></em> :</span></p></td>
<td>a <a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
<td>the property name; an arbitrary, unique string
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> the property's value, or <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.2.0</p>
</div>
<hr>
<div class="refsect2" title="gdata_contacts_contact_get_extended_properties ()">
<a name="gdata-contacts-contact-get-extended-properties"></a><h3>gdata_contacts_contact_get_extended_properties ()</h3>
<pre class="programlisting"><a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Hash-Tables.html#GHashTable"><span class="returnvalue">GHashTable</span></a> * gdata_contacts_contact_get_extended_properties
(<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>);</pre>
<p>
Gets the full list of extended properties of the contact; a hash table mapping property name to value.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>self</code></em> :</span></p></td>
<td>a <a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> a <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Hash-Tables.html#GHashTable"><span class="type">GHashTable</span></a> of extended properties
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.4.0</p>
</div>
<hr>
<div class="refsect2" title="gdata_contacts_contact_set_extended_property ()">
<a name="gdata-contacts-contact-set-extended-property"></a><h3>gdata_contacts_contact_set_extended_property ()</h3>
<pre class="programlisting"><a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gdata_contacts_contact_set_extended_property
(<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>,
<em class="parameter"><code>const <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>,
<em class="parameter"><code>const <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *value</code></em>);</pre>
<p>
Sets the value of a contact's extended property. Extended property names are unique (but of the client's choosing),
and reusing the same property name will result in the old value of that property being overwritten.
</p>
<p>
To unset a property, set <em class="parameter"><code>value</code></em> to <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.
</p>
<p>
A contact may have up to 10 extended properties, and each should be reasonably small (i.e. not a photo or ringtone).
For more information, see the <a class="ulink" href="http://code.google.com/apis/contacts/docs/2.0/reference.html#ProjectionsAndExtended" target="_top">online documentation</a>.
<a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> will be returned if you attempt to add more than 10 extended properties.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>self</code></em> :</span></p></td>
<td>a <a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
<td>the property name; an arbitrary, unique string
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
<td>the property value, or <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the property was updated or deleted successfully, <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.2.0</p>
</div>
<hr>
<div class="refsect2" title="gdata_contacts_contact_get_edited ()">
<a name="gdata-contacts-contact-get-edited"></a><h3>gdata_contacts_contact_get_edited ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span> gdata_contacts_contact_get_edited (<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>,
<em class="parameter"><code><a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Date-and-Time-Functions.html#GTimeVal"><span class="type">GTimeVal</span></a> *edited</code></em>);</pre>
<p>
Gets the <a class="link" href="GDataContactsContact.html#GDataContactsContact--edited" title='The "edited" property'><span class="type">"edited"</span></a> property and puts it in <em class="parameter"><code>edited</code></em>. If the property is unset,
both fields in the <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Date-and-Time-Functions.html#GTimeVal"><span class="type">GTimeVal</span></a> will be set to <code class="code">0</code>.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>self</code></em> :</span></p></td>
<td>a <a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>edited</code></em> :</span></p></td>
<td>a <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Date-and-Time-Functions.html#GTimeVal"><span class="type">GTimeVal</span></a>
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.2.0</p>
</div>
<hr>
<div class="refsect2" title="gdata_contacts_contact_is_deleted ()">
<a name="gdata-contacts-contact-is-deleted"></a><h3>gdata_contacts_contact_is_deleted ()</h3>
<pre class="programlisting"><a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gdata_contacts_contact_is_deleted (<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>);</pre>
<p>
Returns whether the contact has recently been deleted. This will always return
<a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> unless <a class="link" href="GDataContactsQuery.html#GDataContactsQuery--show-deleted" title='The "show-deleted" property'><span class="type">"show-deleted"</span></a> has been set to
<a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> for the query which returned the contact; then this function will return
<a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> only if the contact has been deleted.
</p>
<p>
If a contact has been deleted, no other information is available about it. This
is designed to allow contacts to be deleted from local address books using
incremental updates from the server (e.g. with <a class="link" href="GDataQuery.html#GDataQuery--updated-min" title='The "updated-min" property'><span class="type">"updated-min"</span></a> and
<a class="link" href="GDataContactsQuery.html#GDataContactsQuery--show-deleted" title='The "show-deleted" property'><span class="type">"show-deleted"</span></a>).
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>self</code></em> :</span></p></td>
<td>a <a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the contact has been deleted, <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.2.0</p>
</div>
<hr>
<div class="refsect2" title="gdata_contacts_contact_has_photo ()">
<a name="gdata-contacts-contact-has-photo"></a><h3>gdata_contacts_contact_has_photo ()</h3>
<pre class="programlisting"><a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gdata_contacts_contact_has_photo (<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>);</pre>
<p>
Returns whether the contact has a photo attached to their contact entry. If the contact
does have a photo, it can be returned using <a class="link" href="GDataContactsContact.html#gdata-contacts-contact-get-photo" title="gdata_contacts_contact_get_photo ()"><code class="function">gdata_contacts_contact_get_photo()</code></a>.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>self</code></em> :</span></p></td>
<td>a <a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the contact has a photo, <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.4.0</p>
</div>
<hr>
<div class="refsect2" title="gdata_contacts_contact_get_photo ()">
<a name="gdata-contacts-contact-get-photo"></a><h3>gdata_contacts_contact_get_photo ()</h3>
<pre class="programlisting"><a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * gdata_contacts_contact_get_photo (<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>,
<em class="parameter"><code><a class="link" href="GDataContactsService.html" title="GDataContactsService"><span class="type">GDataContactsService</span></a> *service</code></em>,
<em class="parameter"><code><a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gsize"><span class="type">gsize</span></a> *length</code></em>,
<em class="parameter"><code><a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> **content_type</code></em>,
<em class="parameter"><code><a href="/opt/gnome2/build/share/gtk-doc/html/gio/GCancellable.html"><span class="type">GCancellable</span></a> *cancellable</code></em>,
<em class="parameter"><code><a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
<p>
Downloads and returns the contact's photo, if they have one. If the contact doesn't
have a photo (i.e. <a class="link" href="GDataContactsContact.html#gdata-contacts-contact-has-photo" title="gdata_contacts_contact_has_photo ()"><code class="function">gdata_contacts_contact_has_photo()</code></a> returns <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>), <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> is returned, but
no error is set in <em class="parameter"><code>error</code></em>.
</p>
<p>
If <em class="parameter"><code>cancellable</code></em> is not <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, then the operation can be cancelled by triggering the <em class="parameter"><code>cancellable</code></em> object from another thread.
If the operation was cancelled, the error <a href="/opt/gnome2/build/share/gtk-doc/html/gio/gio-GIOError.html#G-IO-ERROR-CANCELLED:CAPS"><code class="literal">G_IO_ERROR_CANCELLED</code></a> will be returned.
</p>
<p>
If there is an error getting the photo, a <a class="link" href="GDataService.html#GDATA-SERVICE-ERROR-PROTOCOL-ERROR:CAPS"><code class="literal">GDATA_SERVICE_ERROR_PROTOCOL_ERROR</code></a> error will be returned.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>self</code></em> :</span></p></td>
<td>a <a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>service</code></em> :</span></p></td>
<td>a <a class="link" href="GDataContactsService.html" title="GDataContactsService"><span class="type">GDataContactsService</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>length</code></em> :</span></p></td>
<td>return location for the image length, in bytes
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>content_type</code></em> :</span></p></td>
<td>return location for the image's content type, or <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>; free with <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>cancellable</code></em> :</span></p></td>
<td>optional <a href="/opt/gnome2/build/share/gtk-doc/html/gio/GCancellable.html"><span class="type">GCancellable</span></a> object, or <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>error</code></em> :</span></p></td>
<td>a <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a>, or <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> the image data, or <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>; free with <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a>
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.4.0</p>
</div>
<hr>
<div class="refsect2" title="gdata_contacts_contact_set_photo ()">
<a name="gdata-contacts-contact-set-photo"></a><h3>gdata_contacts_contact_set_photo ()</h3>
<pre class="programlisting"><a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gdata_contacts_contact_set_photo (<em class="parameter"><code><a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a> *self</code></em>,
<em class="parameter"><code><a class="link" href="GDataService.html" title="GDataService"><span class="type">GDataService</span></a> *service</code></em>,
<em class="parameter"><code>const <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *data</code></em>,
<em class="parameter"><code><a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gsize"><span class="type">gsize</span></a> length</code></em>,
<em class="parameter"><code><a href="/opt/gnome2/build/share/gtk-doc/html/gio/GCancellable.html"><span class="type">GCancellable</span></a> *cancellable</code></em>,
<em class="parameter"><code><a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
<p>
Sets the contact's photo to <em class="parameter"><code>data</code></em> or, if <em class="parameter"><code>data</code></em> is <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, deletes the contact's photo.
</p>
<p>
If <em class="parameter"><code>cancellable</code></em> is not <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, then the operation can be cancelled by triggering the <em class="parameter"><code>cancellable</code></em> object from another thread.
If the operation was cancelled, the error <a href="/opt/gnome2/build/share/gtk-doc/html/gio/gio-GIOError.html#G-IO-ERROR-CANCELLED:CAPS"><code class="literal">G_IO_ERROR_CANCELLED</code></a> will be returned.
</p>
<p>
If there is an error setting the photo, a <a class="link" href="GDataService.html#GDATA-SERVICE-ERROR-PROTOCOL-ERROR:CAPS"><code class="literal">GDATA_SERVICE_ERROR_PROTOCOL_ERROR</code></a> error will be returned.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>self</code></em> :</span></p></td>
<td>a <a class="link" href="GDataContactsContact.html" title="GDataContactsContact"><span class="type">GDataContactsContact</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>service</code></em> :</span></p></td>
<td>a <a class="link" href="GDataService.html" title="GDataService"><span class="type">GDataService</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
<td>the image data, or <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>length</code></em> :</span></p></td>
<td>the image length, in bytes, or <code class="code">0</code>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>cancellable</code></em> :</span></p></td>
<td>optional <a href="/opt/gnome2/build/share/gtk-doc/html/gio/GCancellable.html"><span class="type">GCancellable</span></a> object, or <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>error</code></em> :</span></p></td>
<td>a <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a>, or <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> on success, <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.4.0</p>
</div>
</div>
<div class="refsect1" title="Property Details">
<a name="GDataContactsContact.property-details"></a><h2>Property Details</h2>
<div class="refsect2" title='The "deleted" property'>
<a name="GDataContactsContact--deleted"></a><h3>The <code class="literal">"deleted"</code> property</h3>
<pre class="programlisting"> "deleted" <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read</pre>
<p>
Whether the entry has been deleted.
</p>
<p>Default value: FALSE</p>
<p class="since">Since 0.2.0</p>
</div>
<hr>
<div class="refsect2" title='The "edited" property'>
<a name="GDataContactsContact--edited"></a><h3>The <code class="literal">"edited"</code> property</h3>
<pre class="programlisting"> "edited" <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Date-and-Time-Functions.html#GTimeVal"><span class="type">GTimeVal</span></a>* : Read</pre>
<p>
The last time the contact was edited. If the contact has not been edited yet, the content indicates the time it was created.
</p>
<p>
For more information, see the <a class="ulink" href="http://www.atomenabled.org/developers/protocol/#appEdited" target="_top">
Atom Publishing Protocol specification</a>.
</p>
<p class="since">Since 0.2.0</p>
</div>
<hr>
<div class="refsect2" title='The "has-photo" property'>
<a name="GDataContactsContact--has-photo"></a><h3>The <code class="literal">"has-photo"</code> property</h3>
<pre class="programlisting"> "has-photo" <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read</pre>
<p>
Whether the contact has a photo.
</p>
<p>Default value: FALSE</p>
<p class="since">Since 0.4.0</p>
</div>
<hr>
<div class="refsect2" title='The "name" property'>
<a name="GDataContactsContact--name"></a><h3>The <code class="literal">"name"</code> property</h3>
<pre class="programlisting"> "name" <a class="link" href="GDataGDName.html" title="GDataGDName"><span class="type">GDataGDName</span></a>* : Read / Write</pre>
<p>
The contact's name in a structured representation.
</p>
<p class="since">Since 0.5.0</p>
</div>
</div>
</div>
<div class="footer">
<hr>
Generated by GTK-Doc V1.14</div>
</body>
</html>
|