1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
|
/*
* Contacts Service
*
* Copyright (c) 2010 - 2012 Samsung Electronics Co., Ltd. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
#ifndef __TIZEN_SOCIAL_CONTACTS_H__
#define __TIZEN_SOCIAL_CONTACTS_H__
#include <contacts_errors.h>
#include <contacts_service.h>
#include <contacts_views.h>
#include <contacts_types.h>
#include <contacts_record.h>
#include <contacts_list.h>
#include <contacts_filter.h>
#include <contacts_query.h>
#include <contacts_db.h>
#include <contacts_setting.h>
#include <contacts_person.h>
#include <contacts_group.h>
#include <contacts_sim.h>
#include <contacts_vcard.h>
#include <contacts_activity.h>
#include <contacts_utils.h>
#include <contacts_phone_log.h>
#endif //__TIZEN_SOCIAL_CONTACTS_H__
/**
* @ingroup CAPI_SOCIAL_FRAMEWORK
* @defgroup CAPI_SOCIAL_CONTACTS_SVC_MODULE Contacts(New)
*
* @brief The Contacts Service API provides functions for managing phone contacts (a.k.a. phonebook).
* This API allows you not only to store information about contacts but also to query contact information.
*
* @section CAPI_SOCIAL_CONTACTS_SVC_MODULE_HEADER Required Header
* \#include <contacts.h>
*
* @section CAPI_SOCIAL_CONTACTS_SVC_MODULE_OVERVIEW Overview
*
* The basic concept in Contacts APi is a record. It may be helpful to know that a record represents
* an actual record in the internal database, but in general, you can think of a record as a piece
* of information, like an address, phone number or group of contacts. A record can be a complex
* set of data, containing other data, e.g. an address record contains country, region, and street,
* among others. Also, the contained data can be a reference to another record. For example,
* a contact record contains the 'address' property, which is a reference to an address record. An address
* record belongs to a contact record - its 'contact_id' property is set to identifier of the corresponding contact
* (more on ids later). In this case, the address is the contact's child record and the contact is the parent record.
*
* Effectively, a record can be a node in a tree or graph of relations between records.
*
* Each record type has a special structure defined for it, called 'view', which contains identifiers of its properties.
* For example, the _contacts_contact view describes the properties of the contact record.
* Its properties include name, company, nickname of the contact and many more. The address record is described by
* the _contacts_address view. A special property in such structures is the URI, which is used to identify
* the record's type. Every view describing a record has this property. You can think of views
* as of classes in an object oriented language. Whenever you use a record, you refer to its view to know
* the record's properties.
*
* To operate on a record, you must obtain its handle. The handle is provided during creation of the record.
* It can also be obtained when referring to a child record of a record the handle of which you already have.
*
* When creating a record, you need to specify what type of record you want to create. This is where you should
* use the URI property. The code below creates a contact record and obtains its handle.
*
* @code
* contacts_record_h hcontact = NULL;
* contacts_record_create( _contacts_contact._uri, &hcontact );
* @endcode
*
* A record can have basic properties of four types: integer, string, boolean, long integer, double. Each property
* of basic type has functions to operate on it:
*
* <table>
* <tr>
* <th>Property type</th>
* <th>Setter</th>
* <th>Getter</th>
* </tr>
* <tr>
* <td> string </td>
* <td> contacts_record_set_str </td>
* <td> contacts_record_get_str </td>
* </tr>
* <tr>
* <td> integer </td>
* <td> contacts_record_set_int </td>
* <td> contacts_record_get_int </td>
* </tr>
* <tr>
* <td> boolean </td>
* <td> contacts_record_set_bool </td>
* <td> contacts_record_get_bool </td>
* </tr>
* <tr>
* <td> long integer </td>
* <td> contacts_record_set_lli </td>
* <td> contacts_record_get_lli </td>
* </tr>
* <tr>
* <td> long integer </td>
* <td> contacts_record_set_double </td>
* <td> contacts_record_get_double </td>
* </tr>
* </table>
*
* For long integer functions, "lli" stands for long long int, ususally used to hold UTC time.
*
* These functions also require specifying which property you wish to get/set. The code below sets the "ringtone_path"
* property of a contact record.
*
* @code
* contacts_record_set_str( hcontact, _contacts_contact.ringtone_path , "My Documents/1.mp3" );
* @endcode
*
* Note on returned values ownership: some functions have the "_p" postfix. It means that the returned
* value should not be freed by the application, as it is a pointer to data in an existing record. For example:
*
* @code
* API int contacts_record_get_str( contacts_record_h record, unsigned int property_id, char** out_str );
* API int contacts_record_get_str_p( contacts_record_h record, unsigned int property_id, char** out_str );
* @endcode
*
* In the first case, the returned string should be freed by the application, in the second one it should not.
*
*
* A record can also have properties of type 'record' - other records, called child records.
* A record can contain many child records of a given type. For example, a contact record
* can contain many address records, and is called the parent record of the address records.
* The code below inserts an address record into a contact record.
* Note that it is not necessary to insert all records - just the contact record needs to be
* inserted into the database, it is enough for all information to be stored.
* Both records are then destroyed.
*
* @code
* contacts_record_h haddress = NULL;
* contacts_record_h himage = NULL;
* contacts_record_create( _contacts_contact._uri, &hcontact );
* contacts_record_create( _contacts_image._uri, &himage );
* contacts_record_create( _contacts_address._uri, &haddress );
* contacts_record_set_str( himage, _contacts_image.path, "My Documents/1.jpg" );
* contacts_record_set_str( hcontact, _contacts_address.country, "Korea" );
* contacts_record_add_child_record( hcontact, _contacts_contact.image, himage );
* contacts_record_add_child_record( hcontact, _contacts_contact.address, haddress );
*
* contacts_db_insert_record( hcontact );
* contacts_record_destroy( hcontact, true );
* @endcode
*
* Establishing parent/child relation between records is also possible
* through the use of identifiers, described in following paragraphs.
*
* One of record's properties is the identifier (id). If you know the id of a record existing in the database,
* you can directly access it. The id is available after the record has been inserted into the database
* and is a read-only property.
*
* @code
* contacts_record_h haddress = NULL;
* contacts_record_create( _contacts_contact._uri, &hcontact );
* contacts_db_insert_record( hcontact );
* int id = contacts_record_get_int( hcontact, _contacts_contact.id );
* // use hcontact ...
* // ...
* contacts_record_destroy( hcontact, true); // hcontact is no longer usable
*
* contacts_db_get_record( _contacts_contact._uri, id, &hcontact );
* // hcontact is now a handle to the same record as before
* @endcode
*
* Identifiers can also be used to establish a relation between two records.
* The following code sets an address record's 'contact_id' property to the id of the contact.
* contact_id acts as a foreign key here. After that is done, the address becomes one of the addresses
* connected to the contact. The address is now the contact's child record, the contact is the
* the parent record.
*
* @code
* contacts_record_create( _contacts_contact._uri, &hcontact );
* int id = ... // acquire id of created contact
*
* contacts_record_create( _contacts_address._uri, &haddress );
* contacts_record_set_int( haddress, _contacts_address.contact_id, id );
* // set other address properties
* contacts_db_insert_record( haddress );
* @endcode
*
* As mentioned above, a record can have many child records, just as more than one record in a database can have
* its foreign keys set to the id of another record.
* Having a record handle, you can access all records of a specific type related to the given record:
*
* @code
* contacts_db_get_record( _contacts_contact._uri, id, &hcontact );
* int address_num = contacts_record_get_child_record_count( hcontact, _contacts_contact.address );
* for( int i=0; i < address_num; i++ )
* {
* haddress = contacts_record_get_child_record_at( hcontact, _contacts_contact.address, i );
* contacts_record_set_str( haddress, _contacts_address.country, "Korea" );
* }
* contacts_db_update_record( hcontact );
*
* contacts_record_destroy( hcontact, true );
* @endcode
*
* This code acquires the number of child records of type 'address' and iterates over them. Each address
* has its 'country' property set to 'Korea'. Only the parent record is saved to the database - all changes
* made to the child records are saved automatically.
*
*
* Another two important concepts in Contacts API are filters and queries, related to searching.
* Filters allow returning results that satisfy a given condition, e.g. an integer property
* value must be greater than a given value, or a string must contain a given substring. Many
* conditions can be added to a filter, creating a composite filter with the use of AND and OR logical operators.
*
* A query acts as a container for filters and as an interface to the stored data. It allows configuring
* sorting and grouping methods of returned results.
*
* Sample code: Create a filter which will accept addresses with their contact's id equal to a given id
* (integer filter), or their country property equal to "Korea" (string filter). Create a query and
* add the filter to it. Results are received in a list.
*
* @code
* contacts_filter_h filter = NULL;
* contacts_list_h list = NULL;
* contacts_query_h query = NULL;
*
* contacts_filter_create( _contacts_address._uri, &filter );
* contacts_filter_add_int( filter, _contacts_address.contact_id, CONTACTS_MATCH_EQUAL, id );
* contacts_filter_add_operator( filter, CONTACTS_FILTER_OPERATOR_OR);
* contacts_filter_add_str( filter, _contacts_address.country, CONTACTS_MATCH_EXACTLY, "Korea" );
* contacts_query_create( _contacts_address._uri, &query );
* contacts_query_set_filter(query, filter);
*
* contacts_db_get_records_with_query( query, 0, 0, &list );
*
* contacts_filter_destroy( filter );
* contacts_query_destroy( query);
* // use the list
* // ...
* contacts_list_destroy( list, true );
* @endcode
*
* A query can contain more than one fiter. You can add logical operators between filters. Whole filters
* are operators' arguments, not just the conditions. Extending the example above, the following code creates two filters
* and connects them with the OR operator:
*
* @code
* contacts_filter_h filter1 = NULL;
* contacts_filter_h filter2 = NULL;
* contacts_query_h query = NULL;
*
* contacts_filter_create( _contacts_address._uri, &filter1 );
* contacts_filter_add_int( filter1, _contacts_address.contact_id, CONTACTS_MATCH_EQUAL, id );
* contacts_filter_add_operator( filter1, CONTACTS_FILTER_OPERATOR_OR);
* contacts_filter_add_str( filter1, _contacts_address.country, CONTACTS_MATCH_EXACTLY, "Korea" );
*
* contacts_filter_create( _contacts_address._uri, &filter2 );
* contacts_filter_add_str( filter2, _contacts_address.country, CONTACTS_MATCH_EXACTLY, "USA" );
* contacts_filter_add_operator( filter2, CONTACTS_FILTER_OPERATOR_AND);
* contacts_filter_add_str( filter2, _contacts_address.region, CONTACTS_MATCH_CONTAINS, "California" );
*
* contacts_filter_add_operator(filter1, CONTACTS_FILTER_OPERATOR_OR);
* contacts_filter_add_filter(filter1, filter2);
*
* contacts_query_create( _contacts_address._uri, &query );
* contacts_query_set_filter(query, filter1);
*
* contacts_db_get_records_with_query( query, 0, 0, &list );
*
* contacts_filter_destroy( filter1 );
* contacts_filter_destroy( filter2 );
* contacts_query_destroy( query );
* // ...
* @endcode
*
* The first filter accepts addresses with country equal to "Korea" or contact id equal to 'id' variable.
* The second filter accepts addresses with "USA" as country and region containing the string "California".
* The query in the code above will return addresses accepted by either of the filters.
*
* Furthermore, the order in which filters and operators are added determines the placement of parentheses.
* For example, If the following are added, in given order:
*
* @code
* Filter F1
* OR
* Filter F2
* AND
* Filter F3
* @endcode
*
* the result is:
*
* @code
* (F1 OR F2) AND F3
* @endcode
*
* @section CAPI_SOCIAL_CONTACTS_SVC_VIEW_MODULE_View_properties View properties
* In \ref CAPI_SOCIAL_CONTACTS_SVC_VIEW_MODULE category, you can find tables with view properties. Record types which have *_id
* as their properties, hold identifiers of other records - e.g. name, number and email
* views hold id of their corresponding contacts in contact_id property
* (as children of the corresponding contacts record).
*
* Properties of type 'record' are other records. For example, a contact record has 'name',
* 'number' and 'email' properties, which means that records of those types can be children
* of contact type records.
*
*/
/**
* @ingroup CAPI_SOCIAL_CONTACTS_SVC_MODULE
* @defgroup CAPI_SOCIAL_CONTACTS_SVC_DATABASE_MODULE Database
*
* @brief The contacts database API provides the set of the definitions and interfaces that enable you to handle contacts database.
*
* @section CAPI_SOCIAL_CONTACTS_SVC_DATABASE_MODULE_HEADER Required Header
* \#include <contacts.h>
*
* <BR>
*/
/**
* @ingroup CAPI_SOCIAL_CONTACTS_SVC_MODULE
* @defgroup CAPI_SOCIAL_CONTACTS_SVC_RECORD_MODULE Record
*
* @brief The contacts record API provides the set of the definitions and interfaces that enable you to get/set data from/to contacts record handle.
*
* @section CAPI_SOCIAL_CONTACTS_SVC_RECORD_MODULE_HEADER Required Header
* \#include <contacts.h>
*
* <BR>
*/
/**
* @ingroup CAPI_SOCIAL_CONTACTS_SVC_MODULE
* @defgroup CAPI_SOCIAL_CONTACTS_SVC_LIST_MODULE List
*
* @brief The contacts record API provides the set of the definitions and interfaces that enable you to get/set records list data.
*
* @section CAPI_SOCIAL_CONTACTS_SVC_LIST_MODULE_HEADER Required Header
* \#include <contacts.h>
*
* <BR>
*/
/**
* @ingroup CAPI_SOCIAL_CONTACTS_SVC_MODULE
* @defgroup CAPI_SOCIAL_CONTACTS_SVC_PERSON_MODULE Person
*
* @brief The contacts person API provides the set of the definitions and interfaces that enable you to link/unlink person and contact.
*
* @section CAPI_SOCIAL_CONTACTS_SVC_PERSON_MODULE_HEADER Required Header
* \#include <contacts.h>
*
* <BR>
*/
/**
* @ingroup CAPI_SOCIAL_CONTACTS_SVC_MODULE
* @defgroup CAPI_SOCIAL_CONTACTS_SVC_GROUP_MODULE Group
*
* @brief The contacts group API provides the set of the definitions and interfaces that enable you to add/remove contact as group member.
*
* @section CAPI_SOCIAL_CONTACTS_SVC_GROUP_MODULE_HEADER Required Header
* \#include <contacts.h>
*
* <BR>
*/
/**
* @ingroup CAPI_SOCIAL_CONTACTS_SVC_MODULE
* @defgroup CAPI_SOCIAL_CONTACTS_SVC_FILTER_MODULE Filter
*
* @brief The contacts Filter API provides the set of the definitions and interfaces that enable you to make filters to set query.
*
* @section CAPI_SOCIAL_CONTACTS_SVC_CONTACTS_FILTER_HEADER Required Header
* \#include <contacts.h>
*
* <BR>
*/
/**
* @ingroup CAPI_SOCIAL_CONTACTS_SVC_MODULE
* @defgroup CAPI_SOCIAL_CONTACTS_SVC_QUERY_MODULE Query
*
* @brief The contacts Query API provides the set of the definitions and interfaces that enable you to make query to get list.
*
* @section CAPI_SOCIAL_CONTACTS_SVC_CONTACTS_QUERY_HEADER Required Header
* \#include <contacts.h>
*
* <BR>
*/
/**
* @ingroup CAPI_SOCIAL_CONTACTS_SVC_MODULE
* @defgroup CAPI_SOCIAL_CONTACTS_SVC_VCARD_MODULE vCard
*
* @brief The contacts record API provides the set of the definitions and interfaces that enable you to get/set data from/to vCard.
*
* @section CAPI_SOCIAL_CONTACTS_SVC_VCARD_MODULE_HEADER Required Header
* \#include <contacts.h>
*
* <BR>
*/
/**
* @ingroup CAPI_SOCIAL_CONTACTS_SVC_MODULE
* @defgroup CAPI_SOCIAL_CONTACTS_SVC_ACTIVITY_MODULE Activity
*
* @brief The contacts activity API provides the set of the definitions and interfaces that enable you to delete activities by contact_id and account_id. \n
* Please refer to \ref CAPI_SOCIAL_CONTACTS_SVC_VIEW_MODULE_contacts_activity for more details.
*
* @section CAPI_SOCIAL_CONTACTS_SVC_ACTIVITY_MODULE_HEADER Required Header
* \#include <contacts.h>
*
* <BR>
*/
/**
* @ingroup CAPI_SOCIAL_CONTACTS_SVC_MODULE
* @defgroup CAPI_SOCIAL_CONTACTS_SVC_PHONELOG_MODULE Phone log
*
* @brief The contacts phone log API provides the set of the definitions and interfaces that enable you to reset phone log count.
*
* @section CAPI_SOCIAL_CONTACTS_SVC_PHONELOG_MODULE_HEADER Required Header
* \#include <contacts.h>
*
* <BR>
*/
/**
* @ingroup CAPI_SOCIAL_CONTACTS_SVC_MODULE
* @defgroup CAPI_SOCIAL_CONTACTS_SVC_SETTING_MODULE Setting
*
* @brief The contacts setting API provides the set of the definitions and interfaces that enable you to set up contacts features.
*
* @section CAPI_SOCIAL_CONTACTS_SVC_SETTING_MODULE_HEADER Required Header
* \#include <contacts.h>
*
* <BR>
*/
/**
* @ingroup CAPI_SOCIAL_CONTACTS_SVC_MODULE
* @defgroup CAPI_SOCIAL_CONTACTS_SVC_SIM_MODULE SIM
*
* @brief The contacts SIM API provides the set of the definitions and interfaces that enable you to get/set data from/to SIM card.
*
* @section CAPI_SOCIAL_CONTACTS_SVC_CONTACTS_SIM_HEADER Required Header
* \#include <contacts.h>
*
* <BR>
*/
/**
* @ingroup CAPI_SOCIAL_CONTACTS_SVC_MODULE
* @defgroup CAPI_SOCIAL_CONTACTS_SVC_UTILS_MODULE Utils
*
* @brief The contacts Utils API provides the set of the definitions and interfaces that enable you to get index characters of language according to phone setting
*
* @section CAPI_SOCIAL_CONTACTS_SVC_CONTACTS_UTILS_HEADER Required Header
* \#include <contacts.h>
*
* <BR>
*/
/**
* @ingroup CAPI_SOCIAL_CONTACTS_SVC_MODULE
* @defgroup CAPI_SOCIAL_CONTACTS_SVC_VIEW_MODULE View/Property
*
* @brief This page provides information about views with properties.
*
* @section CAPI_SOCIAL_CONTACTS_SVC_VIEW_MODULE_OVERVIEW Overview
* A view is a structure which describes properties of a record.
* A record can have basic properties of four types: integer, string, boolean, long integer, double. Each property
* of basic type has functions to operate on it:
*
* <table>
* <tr>
* <th>Property type</th>
* <th>Setter</th>
* <th>Getter</th>
* </tr>
* <tr>
* <td> string </td>
* <td> contacts_record_set_str </td>
* <td> contacts_record_get_str </td>
* </tr>
* <tr>
* <td> integer </td>
* <td> contacts_record_set_int </td>
* <td> contacts_record_get_int </td>
* </tr>
* <tr>
* <td> boolean </td>
* <td> contacts_record_set_bool </td>
* <td> contacts_record_get_bool </td>
* </tr>
* <tr>
* <td> long integer </td>
* <td> contacts_record_set_lli </td>
* <td> contacts_record_get_lli </td>
* </tr>
* <tr>
* <td> long integer </td>
* <td> contacts_record_set_double </td>
* <td> contacts_record_get_double </td>
* </tr>
* </table>
*
* For long integer functions, "lli" stands for long long int, ususally used to hold UTC time.
*
* Below you can find tables with view properties.
*
* Properties of type 'record' are other records. For example, the _contacts_contact view
* has a 'name' property of type 'record'. This means that records of type name (_contacts_name view)
* can be children of the contact record. If a name record holds the identifier
* of a contact record in its 'contact_id' property, it is the child record of the corresponding
* contact record.
*
* Records can have many children of a given type.
*
* Please refer to the main section of Contacts API for a more detailed explanation and examples.
*
* @section CAPI_SOCIAL_CONTACTS_SVC_VIEW_MODULE_HEADER Required Header
* \#include <contacts.h>
*
* @section CAPI_SOCIAL_CONTACTS_SVC_VIEW_MODULE_contacts_contact _contacts_contact view
* <table>
* <tr>
* <th>Type</th>
* <th>Property ID</th>
* <th>Read, Write</th>
* <th>Description</th>
* </tr>
* <tr><td>string</td><td>_uri</td><td>read only</td><td> View uri for contact </td></tr>
* <tr><td>integer</td><td>id</td><td>read only</td><td></td></tr>
* <tr><td>string</td><td>display_name</td><td>read only</td><td></td></tr>
* <tr><td>integer</td><td>display_source_id</td><td>read only</td><td>The source type of display name contacts_display_name_source_type_e</td></tr>
* <tr><td>integer</td><td>address_book_id</td><td>read, write once</td><td></td></tr>
* <tr><td>string</td><td>ringtone_path</td><td>read, write</td><td></td></tr>
* <tr><td>string</td><td>image_thumbnail_path</td><td>read only</td><td></td></tr>
* <tr><td>boolean</td><td>is_favorite</td><td>read, write</td><td></td></tr>
* <tr><td>boolean</td><td>has_phonenumber</td><td>read only</td><td></td></tr>
* <tr><td>boolean</td><td>has_email</td><td>read only</td><td></td></tr>
* <tr><td>integer</td><td>person_id</td><td>read only</td><td></td></tr>
* <tr><td>string</td><td>uid</td><td>read, write</td><td></td></tr>
* <tr><td>string</td><td>vibration</td><td>read, write</td><td></td></tr>
* <tr><td>integer</td><td>changed_time</td><td>read only</td><td></td></tr>
* <tr><td>integer</td><td>link_mode</td><td>read, write</td><td></td></tr>
* <tr><td>record</td><td>name</td><td>read, write</td><td></td></tr>
* <tr><td>record</td><td>company</td><td>read, write</td><td></td></tr>
* <tr><td>record</td><td>note</td><td>read, write</td><td></td></tr>
* <tr><td>record</td><td>number</td><td>read, write</td><td></td></tr>
* <tr><td>record</td><td>email</td><td>read, write</td><td></td></tr>
* <tr><td>record</td><td>event</td><td>read, write</td><td></td></tr>
* <tr><td>record</td><td>messenger</td><td>read, write</td><td></td></tr>
* <tr><td>record</td><td>address</td><td>read, write</td><td></td></tr>
* <tr><td>record</td><td>url</td><td>read, write</td><td></td></tr>
* <tr><td>record</td><td>nickname</td><td>read, write</td><td></td></tr>
* <tr><td>record</td><td>profile</td><td>read, write</td><td></td></tr>
* <tr><td>record</td><td>relationship</td><td>read, write</td><td></td></tr>
* <tr><td>record</td><td>image</td><td>read, write</td><td></td></tr>
* <tr><td>record</td><td>group_relation</td><td>read, write</td><td></td></tr>
* </table>
*
* @section CAPI_SOCIAL_CONTACTS_SVC_VIEW_MODULE_contacts_my_profile _contacts_my_profile view
* <table>
* <tr>
* <th>Type</th>
* <th>Property ID</th>
* <th>Read, Write</th>
* <th>Description</th>
* </tr>
* <tr><td>string</td><td>_uri</td><td>read only</td><td> View uri for my profile </td></tr>
* <tr><td>integer</td><td>id</td><td>read only</td><td></td></tr>
* <tr><td>string</td><td>display_name</td><td>read only</td><td></td></tr>
* <tr><td>integer</td><td>address_book_id</td><td>read, write once</td><td></td></tr>
* <tr><td>string</td><td>image_thumbnail_path</td><td>read only</td><td></td></tr>
* <tr><td>string</td><td>uid</td><td>read, write</td><td></td></tr>
* <tr><td>integer</td><td>changed_time</td><td>read only</td><td></td></tr>
* <tr><td>record</td><td>name</td><td>read, write</td><td></td></tr>
* <tr><td>record</td><td>company</td><td>read, write</td><td></td></tr>
* <tr><td>record</td><td>note</td><td>read, write</td><td></td></tr>
* <tr><td>record</td><td>number</td><td>read, write</td><td></td></tr>
* <tr><td>record</td><td>email</td><td>read, write</td><td></td></tr>
* <tr><td>record</td><td>event</td><td>read, write</td><td></td></tr>
* <tr><td>record</td><td>messenger</td><td>read, write</td><td></td></tr>
* <tr><td>record</td><td>address</td><td>read, write</td><td></td></tr>
* <tr><td>record</td><td>url</td><td>read, write</td><td></td></tr>
* <tr><td>record</td><td>nickname</td><td>read, write</td><td></td></tr>
* <tr><td>record</td><td>profile</td><td>read, write</td><td></td></tr>
* <tr><td>record</td><td>relationship</td><td>read, write</td><td></td></tr>
* <tr><td>record</td><td>image</td><td>read, write</td><td></td></tr>
* </table>
*
* @section CAPI_SOCIAL_CONTACTS_SVC_VIEW_MODULE_contacts_simple_contact _contacts_simple_contact view
* <table>
* <tr>
* <th>Type</th>
* <th>Property ID</th>
* <th>Read, Write</th>
* <th>Description</th>
* </tr>
* <tr><td>string</td><td>_uri</td><td>read only</td><td> </td></tr>
* <tr><td>integer</td><td>id</td><td>read only</td><td> </td></tr>
* <tr><td>string</td><td>display_name</td><td>read only</td><td> </td></tr>
* <tr><td>integer</td><td>display_source_id</td><td>read only</td><td> </td></tr>
* <tr><td>integer</td><td>address_book_id</td><td>read, write once</td><td> </td></tr>
* <tr><td>string</td><td>ringtone_path</td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td>image_thumbnail_path</td><td>read only</td><td> </td></tr>
* <tr><td>boolean</td><td>is_favorite</td><td>read, write</td><td> </td></tr>
* <tr><td>boolean</td><td>has_phonenumber</td><td>read only</td><td> </td></tr>
* <tr><td>boolean</td><td>has_email</td><td>read only</td><td> </td></tr>
* <tr><td>integer</td><td>person_id</td><td>read only</td><td> </td></tr>
* <tr><td>string</td><td>uid</td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td>vibration</td><td>read, write</td><td> </td></tr>
* <tr><td>integer</td><td>changed_time</td><td>read only</td><td> </td></tr>
* </table>
*
* @section CAPI_SOCIAL_CONTACTS_SVC_VIEW_MODULE_contacts_person _contacts_person view
* <table>
* <tr>
* <th>Type</th>
* <th>Property ID</th>
* <th>Read, Write</th>
* <th>Description</th>
* </tr>
* <tr><td>string</td><td>_uri</td><td>read only</td><td> </td></tr>
* <tr><td>integer</td><td> id </td><td>read only</td><td> </td></tr>
* <tr><td>string</td><td> display_name </td><td>read only</td><td> </td></tr>
* <tr><td>string</td><td> display_name_index </td><td>read only</td><td> The first character of first string for grouping. This is normalized using icu. </td></tr>
* <tr><td>integer</td><td> display_contact_id </td><td>read only</td><td> </td></tr>
* <tr><td>string</td><td> ringtone_path </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> image_thumbnail_path </td><td>read only</td><td> </td></tr>
* <tr><td>string</td><td> vibration </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> status </td><td>read only</td><td> </td></tr>
* <tr><td>boolean</td><td> is_favorite </td><td>read, write</td><td> </td></tr>
* <tr><td>double</td><td> favorite_priority </td><td> filter only </td><td> The priority of favorite contacts. You can not set the value but you can use it as sorting key. </td></tr>
* <tr><td>integer</td><td> link_count </td><td>read, write</td><td> </td></tr>
* <tr><td>integer</td><td> addressbook_ids </td><td>read, write</td><td> </td></tr>
* <tr><td>boolean</td><td> has_phonenumber </td><td>read only</td><td> </td></tr>
* <tr><td>boolean</td><td> has_email </td><td>read only</td><td> </td></tr>
* </table>
*
* @section CAPI_SOCIAL_CONTACTS_SVC_VIEW_MODULE_contacts_address_book _contacts_address_book view
* <table>
* <tr>
* <th>Type</th>
* <th>Property ID</th>
* <th>Read, Write</th>
* <th>Description</th>
* </tr>
* <tr><td>string</td><td>_uri</td><td>read only</td><td> </td></tr>
* <tr><td>integer</td><td> id </td><td>read only</td><td> </td></tr>
* <tr><td>integer</td><td> account_id </td><td>read, write once</td><td> </td></tr>
* <tr><td>string</td><td> name </td><td>read, write</td><td> It can not be NULL. Duplicate names are not allowed. </td></tr>
* <tr><td>integer</td><td> mode </td><td>read, write</td><td> </td></tr>
* </table>
*
* @section CAPI_SOCIAL_CONTACTS_SVC_VIEW_MODULE_contacts_group _contacts_group view
* <table>
* <tr>
* <th>Type</th>
* <th>Property ID</th>
* <th>Read, Write</th>
* <th>Description</th>
* </tr>
* <tr><td>string</td><td>_uri</td><td>read only</td><td> </td></tr>
* <tr><td>integer</td><td> id </td><td>read only</td><td> </td></tr>
* <tr><td>integer</td><td> address_book_id </td><td>read, write once</td><td> </td></tr>
* <tr><td>string</td><td> name </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> ringtone_path </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> image_path </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> vibration </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> extra_data </td><td>read, write</td><td> </td></tr>
* <tr><td>boolean</td><td> is_read_only </td><td>read only</td><td> </td></tr>
* </table>
*
* @section CAPI_SOCIAL_CONTACTS_SVC_VIEW_MODULE_contacts_name _contacts_name view
* <table>
* <tr>
* <th>Type</th>
* <th>Property ID</th>
* <th>Read, Write</th>
* <th>Description</th>
*</tr>
* <tr><td>string</td><td>_uri</td><td>read only</td><td> </td></tr>
* <tr><td>integer</td><td> id </td><td>read only</td><td> </td></tr>
* <tr><td>integer</td><td> contact_id </td><td>read, write once</td><td> </td></tr>
* <tr><td>string</td><td> first </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> last </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> addition </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> suffix </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> prefix </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> phonetic_first </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> phonetic_middle </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> phonetic_last </td><td>read, write</td><td> </td></tr>
* </table>
*
* @section CAPI_SOCIAL_CONTACTS_SVC_VIEW_MODULE_contacts_number _contacts_number view
* <table>
* <tr>
* <th>Type</th>
* <th>Property ID</th>
* <th>Read, Write</th>
* <th>Description</th>
* </tr>
* <tr><td>string</td><td>_uri</td><td>read only</td><td> </td></tr>
* <tr><td>integer</td><td> id </td><td>read only</td><td> </td></tr>
* <tr><td>integer</td><td> contact_id </td><td>read, write once</td><td> </td></tr>
* <tr><td>integer</td><td> type </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> label </td><td>read, write</td><td> </td></tr>
* <tr><td>boolean</td><td> is_default </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> number </td><td>read, write</td><td> </td></tr>
* </table>
*
* @section CAPI_SOCIAL_CONTACTS_SVC_VIEW_MODULE_contacts_email _contacts_email view
* <table>
* <tr>
* <th>Type</th>
* <th>Property ID</th>
* <th>Read, Write</th>
* <th>Description</th>
* </tr>
* <tr><td>string</td><td>_uri</td><td>read only</td><td> </td></tr>
* <tr><td>integer</td><td> id </td><td>read only</td><td> </td></tr>
* <tr><td>integer</td><td> contact_id </td><td>read, write once</td><td> </td></tr>
* <tr><td>integer</td><td> type </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> label </td><td>read, write</td><td> </td></tr>
* <tr><td>boolean</td><td> is_default </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> email </td><td>read, write</td><td> </td></tr>
* </table>
*
* @section CAPI_SOCIAL_CONTACTS_SVC_VIEW_MODULE_contacts_address _contacts_address view
* <table>
* <tr>
* <th>Type</th>
* <th>Property ID</th>
* <th>Read, Write</th>
* <th>Description</th>
* </tr>
* <tr><td>string</td><td>_uri</td><td>read only</td><td> </td></tr>
* <tr><td>integer</td><td> id </td><td>read only</td><td> </td></tr>
* <tr><td>integer</td><td> contact_id </td><td>read, write once</td><td> </td></tr>
* <tr><td>integer</td><td> type </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> label </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> postbox </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> postal_code </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> region </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> locality </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> street </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> country </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> extend </td><td>read, write</td><td> </td></tr>
* <tr><td>boolean</td><td> is_default </td><td>read, write</td><td> </td></tr>
* </table>
*
* @section CAPI_SOCIAL_CONTACTS_SVC_VIEW_MODULE_contacts_note _contacts_note view
* <table>
* <tr>
* <th>Type</th>
* <th>Property ID</th>
* <th>Read, Write</th>
* <th>Description</th>
* </tr>
* <tr><td>string</td><td>_uri</td><td>read only</td><td> </td></tr>
* <tr><td>integer</td><td> id </td><td>read only</td><td> </td></tr>
* <tr><td>integer</td><td> contact_id </td><td>read, write once</td><td> </td></tr>
* <tr><td>string</td><td> note </td><td>read, write</td><td> </td></tr>
* </table>
*
* @section CAPI_SOCIAL_CONTACTS_SVC_VIEW_MODULE_contacts_url _contacts_url view
* <table>
* <tr>
* <th>Type</th>
* <th>Property ID</th>
* <th>Read, Write</th>
* <th>Description</th>
* </tr>
* <tr><td>string</td><td>_uri</td><td>read only</td><td> </td></tr>
* <tr><td>integer</td><td> id </td><td>read only</td><td> </td></tr>
* <tr><td>integer</td><td> contact_id </td><td>read, write once</td><td> </td></tr>
* <tr><td>integer</td><td> type </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> label </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> url </td><td>read, write</td><td> </td></tr>
* </table>
*
* @section CAPI_SOCIAL_CONTACTS_SVC_VIEW_MODULE_contacts_event _contacts_event view
* <table>
* <tr>
* <th>Type</th>
* <th>Property ID</th>
* <th>Read, Write</th>
* <th>Description</th>
* </tr>
* <tr><td>string</td><td>_uri</td><td>read only</td><td> </td></tr>
* <tr><td>integer</td><td> id </td><td>read only</td><td> </td></tr>
* <tr><td>integer</td><td> contact_id </td><td>read, write once</td><td> </td></tr>
* <tr><td>integer</td><td> type </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> label </td><td>read, write</td><td> </td></tr>
* <tr><td>integer</td><td> date </td><td>read, write</td><td> year * 10000 + month * 100 + day </td></tr>
* <tr><td>integer</td><td> is_lunar </td><td>read, write</td><td> </td></tr>
* <tr><td>integer</td><td> lunar_date </td><td>read, write</td><td> </td></tr>
* </table>
*
* @section CAPI_SOCIAL_CONTACTS_SVC_VIEW_MODULE_contacts_relationship _contacts_relationship view
* <table>
* <tr>
* <th>Type</th>
* <th>Property ID</th>
* <th>Read, Write</th>
* <th>Description</th>
* </tr>
* <tr><td>string</td><td>_uri</td><td>read only</td><td> </td></tr>
* <tr><td>integer</td><td> id </td><td>read only</td><td> </td></tr>
* <tr><td>integer</td><td> contact_id </td><td>read, write once</td><td> </td></tr>
* <tr><td>integer</td><td> type </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> label </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> name </td><td>read, write</td><td> </td></tr>
* </table>
*
* @section CAPI_SOCIAL_CONTACTS_SVC_VIEW_MODULE_contacts_image _contacts_image view
* <table>
* <tr>
* <th>Type</th>
* <th>Property ID</th>
* <th>Read, Write</th>
* <th>Description</th>
* </tr>
* <tr><td>string</td><td>_uri</td><td>read only</td><td> </td></tr>
* <tr><td>integer</td><td> id </td><td>read only</td><td> </td></tr>
* <tr><td>integer</td><td> contact_id </td><td>read, write once</td><td> </td></tr>
* <tr><td>integer</td><td> type </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> label </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> path </td><td>read, write</td><td> </td></tr>
* </table>
*
* @section CAPI_SOCIAL_CONTACTS_SVC_VIEW_MODULE_contacts_company _contacts_company view
* <table>
* <tr>
* <th>Type</th>
* <th>Property ID</th>
* <th>Read, Write</th>
* <th>Description</th>
* </tr>
* <tr><td>string</td><td>_uri</td><td>read only</td><td> </td></tr>
* <tr><td>integer</td><td> id </td><td>read only</td><td> </td></tr>
* <tr><td>integer</td><td> contact_id </td><td>read, write once</td><td> </td></tr>
* <tr><td>integer</td><td> type </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> label </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> name </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> department </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> job_title </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> assistant_name </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> role </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> logo </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> location </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> description </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> phonetic_name </td><td>read, write</td><td> </td></tr>
* </table>
*
* @section CAPI_SOCIAL_CONTACTS_SVC_VIEW_MODULE_contacts_nickname _contacts_nickname view
* <table>
* <tr>
* <th>Type</th>
* <th>Property ID</th>
* <th>Read, Write</th>
* <th>Description</th>
* </tr>
* <tr><td>string</td><td>_uri</td><td>read only</td><td> </td></tr>
* <tr><td>integer</td><td> id </td><td>read only</td><td> </td></tr>
* <tr><td>integer</td><td> contact_id </td><td>read, write once</td><td> </td></tr>
* <tr><td>string</td><td> nickname </td><td>read, write</td><td> </td></tr>
* </table>
*
* @section CAPI_SOCIAL_CONTACTS_SVC_VIEW_MODULE_contacts_messenger _contacts_messenger view
* <table>
* <tr>
* <th>Type</th>
* <th>Property ID</th>
* <th>Read, Write</th>
* <th>Description</th>
* </tr>
* <tr><td>string</td><td>_uri</td><td>read only</td><td> </td></tr>
* <tr><td>integer</td><td> id </td><td>read only</td><td> </td></tr>
* <tr><td>integer</td><td> contact_id </td><td>read, write once</td><td> </td></tr>
* <tr><td>integer</td><td> type </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> label </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> im_id </td><td>read, write</td><td> </td></tr>
* </table>
*
* @section CAPI_SOCIAL_CONTACTS_SVC_VIEW_MODULE_contacts_extension _contacts_extension view
* <table>
* <tr>
* <th>Type</th>
* <th>Property ID</th>
* <th>Read, Write</th>
* <th>Description</th>
* </tr>
* <tr><td>string</td><td>_uri</td><td>read only</td><td> </td></tr>
* <tr><td>integer</td><td> id </td><td>read only</td><td> </td></tr>
* <tr><td>integer</td><td> contact_id </td><td>read, write once</td><td> </td></tr>
* <tr><td>integer</td><td> data1 </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> data2 </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> data3 </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> data4 </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> data5 </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> data6 </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> data7 </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> data8 </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> data9 </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> data10 </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> data11 </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> data12 </td><td>read, write</td><td> </td></tr>
* </table>
*
* @section CAPI_SOCIAL_CONTACTS_SVC_VIEW_MODULE_contacts_sdn _contacts_sdn view
* <table>
* <tr>
* <th>Type</th>
* <th>Property ID</th>
* <th>Read, Write</th>
* <th>Description</th>
* </tr>
* <tr><td>string</td><td>_uri</td><td>read only</td><td> </td></tr>
* <tr><td>integer</td><td> id </td><td>read only</td><td> </td></tr>
* <tr><td>string</td><td> name </td><td>read, write once</td><td> </td></tr>
* <tr><td>string</td><td> number </td><td>read, write</td><td> </td></tr>
* </table>
*
* @section CAPI_SOCIAL_CONTACTS_SVC_VIEW_MODULE_contacts_profile _contacts_profile view
* <table>
* <tr>
* <th>Type</th>
* <th>Property ID</th>
* <th>Read, Write</th>
* <th>Description</th>
* </tr>
* <tr><td>string</td><td>_uri</td><td>read only</td><td> </td></tr>
* <tr><td>integer</td><td> id </td><td>read only</td><td> </td></tr>
* <tr><td>integer</td><td> contact_id </td><td>read, write once</td><td> </td></tr>
* <tr><td>integer</td><td> type </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> label </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> uid </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> text </td><td>read, write</td><td> </td></tr>
* <tr><td>integer</td><td> order </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> service_operation </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> mime </td><td>read, write</td><td> </td> </tr>
* <tr><td>string</td><td> app_id </td><td>read, write</td><td> </td> </tr>
* <tr><td>string</td><td> uri </td><td>read, write</td><td> </td ></tr>
* <tr><td>string</td><td> catagory </td><td>read, write</td><td></td></tr>
* <tr><td>string</td><td> extra_data </td><td>read, write</td><td> It includes "key:value" pair. You should parse it.</td></tr>
* </table>
*
* @section CAPI_SOCIAL_CONTACTS_SVC_VIEW_MODULE_contacts_activity _contacts_activity view
* <table>
* <tr>
* <th>Type</th>
* <th>Property ID</th>
* <th>Read, Write</th>
* <th>Description</th>
* </tr>
* <tr><td>string</td><td>_uri</td><td>read only</td><td> </td></tr>
* <tr><td>integer</td><td> id </td><td>read only</td><td> </td></tr>
* <tr><td>integer</td><td> contact_id </td><td>read, write once</td><td> </td></tr>
* <tr><td>string</td><td> source_name </td><td>read, write</td><td> </td></tr>
* <tr><td>int</td><td> timestamp </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> status </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> service_operation </td><td></td><td> </td></tr>
* <tr><td>string</td><td> uri </td><td></td><td> </td></tr>
* <tr><td>string</td><td> sync_data1 </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> sync_data2 </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> sync_data3 </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> sync_data4 </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> photo </td><td>read, write</td><td> </td></tr>
* </table>
*
* @section CAPI_SOCIAL_CONTACTS_SVC_VIEW_MODULE_contacts_activity_photo _contacts_activity_photo view
* <table>
* <tr>
* <th>Type</th>
* <th>Property ID</th>
* <th>Read, Write</th>
* <th>Description</th>
* </tr>
* <tr><td>string</td><td>_uri</td><td>read only</td><td> </td></tr>
* <tr><td>integer</td><td> id </td><td>read only</td><td> </td></tr>
* <tr><td>integer</td><td> activity_id </td><td>read, write once</td><td> </td></tr>
* <tr><td>string</td><td> photo_url </td><td>read, write</td><td> </td></tr>
* <tr><td>integer</td><td> sort_index </td><td>read, write</td><td> </td></tr>
* </table>
*
* @section CAPI_SOCIAL_CONTACTS_SVC_VIEW_MODULE_contacts_speeddial _contacts_speeddial view
* <table>
* <tr>
* <th>Type</th>
* <th>Property ID</th>
* <th>Read, Write</th>
* <th>Description</th>
* </tr>
* <tr><td>string</td><td>_uri</td><td>read only</td><td> </td></tr>
* <tr><td>integer</td><td> speeddial_number </td><td>read, write</td><td> </td></tr>
* <tr><td>integer</td><td> number_id </td><td>read, write</td><td> </td></tr>
* <tr><td>string</td><td> number </td><td>read only</td><td> </td></tr>
* <tr><td>string</td><td> number_label </td><td>read only</td><td> </td></tr>
* <tr><td>integer</td><td> number_type </td><td>read only</td><td> </td></tr>
* <tr><td>integer</td><td> person_id </td><td>read only</td><td> </td></tr>
* <tr><td>string</td><td> display_name </td><td>read only</td><td> </td></tr>
* <tr><td>string</td><td> image_thumbnail_path </td><td>read only</td><td> </td></tr>
* </table>
*
* @section CAPI_SOCIAL_CONTACTS_SVC_VIEW_MODULE_contacts_phone_log _contacts_phone_log view
* <table>
* <tr>
* <th>Type</th>
* <th>Property ID</th>
* <th>Read, Write</th>
* <th>Description</th>
* </tr>
* <tr><td>string</td><td>_uri</td><td>read only</td><td> </td></tr>
* <tr><td>integer</td><td> id </td><td>read only</td><td> </td></tr>
* <tr><td>integer</td><td> person_id </td><td>read, write once </td><td> </td></tr>
* <tr><td>string</td><td> address </td><td>read, write once </td><td> </td></tr>
* <tr><td>integer</td><td> log_time </td><td>read, write once</td><td> </td></tr>
* <tr><td>integer</td><td> log_type </td><td>read, write</td><td> </td></tr>
* <tr><td>integer</td><td> extra_data1 </td><td>read, write once</td><td> You can set the related integer data(e.g. message_id, email_id) or duration of call. </td></tr>
* <tr><td>string</td><td> extra_data2 </td><td>read, write once</td><td> You can set the related string data. e.g.) short message, subject</td></tr>
* </table>
*
* <br><br>
* Read-only View URIs
* <br>
*
* @section CAPI_SOCIAL_CONTACTS_SVC_VIEW_MODULE_contacts_contact_updated_info _contacts_contact_updated_info view
* <table>
* <tr>
* <th>Type</th>
* <th>Property ID</th>
* <th>Primay Key</th>
* <th>Description</th>
* </tr>
* <tr><td>string</td><td>_uri</td><td></td><td> </td></tr>
* <tr><td>integer</td><td> contact_id </td><td>*</td><td> </td></tr>
* <tr><td>integer</td><td> address_book_id </td><td></td><td> </td></tr>
* <tr><td>integer</td><td> type </td><td></td><td> </td></tr>
* <tr><td>integer</td><td> version </td><td></td><td> </td></tr>
* <tr><td>boolean</td><td> image_changed </td><td></td><td> </td></tr>
* </table>
*
* @section CAPI_SOCIAL_CONTACTS_SVC_VIEW_MODULE_contacts_my_profile_updated_info _contacts_my_profile_updated_info view
* <table>
* <tr>
* <th>Type</th>
* <th>Property ID</th>
* <th>Primay Key</th>
* <th>Description</th>
* </tr>
* <tr><td>string</td><td>_uri</td><td></td><td> </td></tr>
* <tr><td>integer</td><td> address_book_id </td><td></td><td> </td></tr>
* <tr><td>integer</td><td> last_changed_type </td><td></td><td> </td></tr>
* <tr><td>integer</td><td> version </td><td></td><td> </td></tr>
* </table>
*
* @section CAPI_SOCIAL_CONTACTS_SVC_VIEW_MODULE_contacts_group_updated_info _contacts_group_updated_info view
* <table>
* <tr>
* <th>Type</th>
* <th>Property ID</th>
* <th>Primary Key</th>
* <th>Description</th>
* </tr>
* <tr><td>string</td><td>_uri</td><td></td><td> </td></tr>
* <tr><td>integer</td><td> group_id </td><td>*</td><td> </td></tr>
* <tr><td>integer</td><td> address_book_id </td><td></td><td> </td></tr>
* <tr><td>integer</td><td> type </td><td></td><td> </td></tr>
* <tr><td>integer</td><td> version </td><td></td><td> </td></tr>
* </table>
*
* @section CAPI_SOCIAL_CONTACTS_SVC_VIEW_MODULE_contacts_group_member_updated_info _contacts_group_member_updated_info view
* <table>
* <tr>
* <th>Type</th>
* <th>Property ID</th>
* <th>Primary Key</th>
* <th>Description</th>
* </tr>
* <tr><td>string</td><td>_uri</td><td></td><td> </td></tr>
* <tr><td>integer</td><td> group_id </td><td>*</td><td> </td></tr>
* <tr><td>integer</td><td> address_book_id </td><td></td><td> </td></tr>
* <tr><td>integer</td><td> version </td><td></td><td> </td></tr>
* </table>
*
* @section CAPI_SOCIAL_CONTACTS_SVC_VIEW_MODULE_contacts_person_number _contacts_person_number view
* <table>
* <tr>
* <th>Type</th>
* <th>Property ID</th>
* <th>Primary Key</th>
* <th>Description</th>
* </tr>
* <tr><td>string</td><td>_uri</td><td></td><td> </td></tr>
* <tr><td>integer</td><td> person_id </td><td></td><td> </td></tr>
* <tr><td>string</td><td> display_name </td><td></td><td> </td></tr>
* <tr><td>string</td><td> display_name_index </td><td></td><td> </td></tr>
* <tr><td>integer</td><td> display_contact_id </td><td></td><td> </td></tr>
* <tr><td>string</td><td> ringtone_path </td><td></td><td> </td></tr>
* <tr><td>string</td><td> image_thumbnail_path </td><td></td><td> </td></tr>
* <tr><td>string</td><td> vibration </td><td></td><td> </td></tr>
* <tr><td>boolean</td><td> is_favorite </td><td></td><td> </td></tr>
* <tr><td>boolean</td><td> has_phonenumber </td><td></td><td> </td></tr>
* <tr><td>boolean</td><td> has_email </td><td></td><td> </td></tr>
* <tr><td>integer</td><td> number_id </td><td>*</td><td> </td></tr>
* <tr><td>integer</td><td> type </td><td></td><td> </td></tr>
* <tr><td>string</td><td> label </td><td></td><td> </td></tr>
* <tr><td>boolean</td><td> is_primary_default </td><td></td><td> </td></tr>
* <tr><td>string</td><td> number </td><td></td><td> </td></tr>
* <tr><td>string</td><td> number_filter </td><td></td><td> If you add filter with this property, the string will be normalized internally and the match rule will be applied CONTACTS_MATCH_EXACTLY </td></tr>
* </table>
*
* @section CAPI_SOCIAL_CONTACTS_SVC_VIEW_MODULE_contacts_person_email _contacts_person_email view
* <table>
* <tr>
* <th>Type</th>
* <th>Property ID</th>
* <th>Primary Key</th>
* <th>Description</th>
* </tr>
* <tr><td>string</td><td>_uri</td><td></td><td> </td></tr>
* <tr><td>integer</td><td> person_id </td><td></td><td> </td></tr>
* <tr><td>string</td><td> display_name </td><td></td><td> </td></tr>
* <tr><td>string</td><td> display_name_index </td><td></td><td> </td></tr>
* <tr><td>integer</td><td> display_contact_id </td><td></td><td> </td></tr>
* <tr><td>string</td><td> ringtone_path </td><td></td><td> </td></tr>
* <tr><td>string</td><td> image_thumbnail_path </td><td></td><td> </td></tr>
* <tr><td>string</td><td> vibration </td><td></td><td> </td></tr>
* <tr><td>boolean</td><td> is_favorite </td><td></td><td> </td></tr>
* <tr><td>boolean</td><td> has_phonenumber </td><td></td><td> </td></tr>
* <tr><td>boolean</td><td> has_email </td><td></td><td> </td></tr>
* <tr><td>integer</td><td> email_id </td><td>*</td><td> </td></tr>
* <tr><td>integer</td><td> type </td><td></td><td> </td></tr>
* <tr><td>string</td><td> label </td><td></td><td> </td></tr>
* <tr><td>boolean</td><td> is_primary_default </td><td></td><td> </td></tr>
* <tr><td>string</td><td> email </td><td></td><td> </td></tr>
* </table>
*
* @section CAPI_SOCIAL_CONTACTS_SVC_VIEW_MODULE_contacts_person_grouprel _contacts_person_grouprel view
* <table>
* <tr>
* <th>Type</th>
* <th>Property ID</th>
* <th>Primary Key</th>
* <th>Description</th>
* </tr>
* <tr><td>string</td><td>_uri</td><td></td><td> </td></tr>
* <tr><td>integer</td><td> person_id </td><td>*</td><td> </td></tr>
* <tr><td>string</td><td> display_name </td><td></td><td> </td></tr>
* <tr><td>string</td><td> display_name_index </td><td></td><td> </td></tr>
* <tr><td>integer</td><td> display_contact_id </td><td></td><td> </td></tr>
* <tr><td>string</td><td> ringtone_path </td><td></td><td> </td></tr>
* <tr><td>string</td><td> image_thumbnail_path </td><td></td><td> </td></tr>
* <tr><td>string</td><td> vibration </td><td></td><td> </td></tr>
* <tr><td>string</td><td> status </td><td></td><td> </td></tr>
* <tr><td>boolean</td><td> is_favorite </td><td></td><td> </td></tr>
* <tr><td>integer</td><td> link_count </td><td></td><td> </td></tr>
* <tr><td>integer</td><td> addressbook_ids </td><td></td><td> </td></tr>
* <tr><td>boolean</td><td> has_phonenumber </td><td></td><td> </td></tr>
* <tr><td>boolean</td><td> has_email </td><td></td><td> </td></tr>
* <tr><td>integer</td><td> address_book_id </td><td></td><td> </td></tr>
* <tr><td>integer</td><td> group_id </td><td>*</td><td> </td></tr>
* </table>
*
* @section CAPI_SOCIAL_CONTACTS_SVC_VIEW_MODULE_contacts_person_phone_log _contacts_person_phone_log view
* <table>
* <tr>
* <th>Type</th>
* <th>Property ID</th>
* <th>Primary Key</th>
* <th>Description</th>
* </tr>
* <tr><td>string</td><td>_uri</td><td></td><td> </td></tr>
* <tr><td>integer</td><td> person_id </td><td> * </td><td> </td></tr>
* <tr><td>string</td><td> display_name </td><td></td><td> </td></tr>
* <tr><td>string</td><td> image_thumbnail_path </td><td></td><td> </td></tr>
* <tr><td>integer</td><td> log_id </td><td> * </td><td> </td></tr>
* <tr><td>string</td><td> address </td><td></td><td> </td></tr>
* <tr><td>integer</td><td> log_time </td><td></td><td> </td></tr>
* <tr><td>integer</td><td> log_type </td><td></td><td> </td></tr>
* <tr><td>integer</td><td> extra_data1 </td><td></td><td> </td></tr>
* <tr><td>string</td><td> extra_data2 </td><td></td><td> </td></tr>
* </table>
*
* @section CAPI_SOCIAL_CONTACTS_SVC_VIEW_MODULE_contacts_person_usage _contacts_person_usage view
* <table>
* <tr>
* <th>Type</th>
* <th>Property ID</th>
* <th>Primary Key</th>
* <th>Description</th>
* </tr>
* <tr><td>string</td><td>_uri</td><td></td><td> </td></tr>
* <tr><td>integer</td><td> person_id </td><td>*</td><td> </td></tr>
* <tr><td>string</td><td> display_name </td><td></td><td> </td></tr>
* <tr><td>string</td><td> display_name_index </td><td></td><td> </td></tr>
* <tr><td>integer</td><td> display_contact_id </td><td></td><td> </td></tr>
* <tr><td>string</td><td> ringtone_path </td><td></td><td> </td></tr>
* <tr><td>string</td><td> image_thumbnail_path </td><td></td><td> </td></tr>
* <tr><td>string</td><td> vibration </td><td></td><td> </td></tr>
* <tr><td>boolean</td><td> is_favorite </td><td></td><td> </td></tr>
* <tr><td>boolean</td><td> has_phonenumber </td><td></td>><td> </td></tr>
* <tr><td>boolean</td><td> has_email </td><td></td><td> </td></tr>
* <tr><td>integer</td><td> usage_type </td><td></td>*<td> </td></tr>
* <tr><td>integer</td><td> times_used </td><td></td><td> </td></tr>
* </table>
*
* @section CAPI_SOCIAL_CONTACTS_SVC_VIEW_MODULE_contacts_contact_number _contacts_contact_number view
* <table>
* <tr>
* <th>Type</th>
* <th>Property ID</th>
* <th>Primary Key</th>
* <th>Description</th>
* </tr>
* <tr><td>string</td><td>_uri</td><td></td><td> </td></tr>
* <tr><td>integer</td><td>contact_id</td><td></td><td> </td></tr>
* <tr><td>string</td><td>display_name</td><td></td><td> </td></tr>
* <tr><td>integer</td><td>display_source_type</td><td></td><td> </td></tr>
* <tr><td>integer</td><td>address_book_id</td><td></td><td> </td></tr>
* <tr><td>integer</td><td>person_id</td><td></td><td> </td></tr>
* <tr><td>string</td><td>ringtone_path</td><td></td><td> </td></tr>
* <tr><td>string</td><td>image_thumbnail_path</td><td></td><td> </td></tr>
* <tr><td>integer</td><td> number_id </td><td>*</td><td> </td></tr>
* <tr><td>integer</td><td> type </td><td></td><td> </td></tr>
* <tr><td>string</td><td> label </td><td></td><td> </td></tr>
* <tr><td>boolean</td><td> is_ default </td><td></td><td> </td></tr>
* <tr><td>string</td><td> number </td><td></td><td> </td></tr>
* <tr><td>string</td><td> number_filter </td><td></td><td> If you add filter with this property, the string will be normalized internally and the match rule will be applied CONTACTS_MATCH_EXACTLY </td></tr>
* </table>
*
* @section CAPI_SOCIAL_CONTACTS_SVC_VIEW_MODULE_contacts_contact_email _contacts_contact_email view
* <table>
* <tr>
* <th>Type</th>
* <th>Property ID</th>
* <th>Primary Key</th>
* <th>Description</th>
* </tr>
* <tr><td>string</td><td>_uri</td><td></td><td> </td></tr>
* <tr><td>integer</td><td>contact_id</td><td></td><td> </td></tr>
* <tr><td>string</td><td>display_name</td><td></td><td> </td></tr>
* <tr><td>integer</td><td>display_source_type</td><td></td><td> </td></tr>
* <tr><td>integer</td><td>address_book_id</td><td></td><td> </td></tr>
* <tr><td>integer</td><td>person_id</td><td></td><td> </td></tr>
* <tr><td>string</td><td>ringtone_path</td><td></td><td> </td></tr>
* <tr><td>string</td><td>image_thumbnail_path</td><td></td><td> </td></tr>
* <tr><td>integer</td><td> email_id </td><td>*</td><td> </td></tr>
* <tr><td>integer</td><td> type </td><td></td><td> </td></tr>
* <tr><td>string</td><td> label </td><td></td><td> </td></tr>
* <tr><td>boolean</td><td> is_ default </td><td></td><td> </td></tr>
* <tr><td>string</td><td> email </td><td></td><td> </td></tr>
* </table>
*
* @section CAPI_SOCIAL_CONTACTS_SVC_VIEW_MODULE_contacts_contact_grouprel _contacts_contact_grouprel view
* <table>
* <tr>
* <th>Type</th>
* <th>Property ID</th>
* <th>Primary Key</th>
* <th>Description</th>
* </tr>
* <tr><td>string</td><td>_uri</td><td></td><td> </td></tr>
* <tr><td>integer</td><td>contact_id</td><td>*</td><td> </td></tr>
* <tr><td>string</td><td>display_name</td><td></td><td> </td></tr>
* <tr><td>integer</td><td>display_source_type</td><td></td><td> </td></tr>
* <tr><td>integer</td><td>address_book_id</td><td></td><td> </td></tr>
* <tr><td>integer</td><td>person_id</td><td></td><td> </td></tr>
* <tr><td>string</td><td>ringtone_path</td><td></td><td> </td></tr>
* <tr><td>string</td><td>image_thumbnail_path</td><td></td><td> </td></tr>
* <tr><td>integer</td><td> group_id </td><td>*</td><td> </td></tr>
* <tr><td>string</td><td> group_name </td><td></td><td> </td></tr>
* </table>
*
* @section CAPI_SOCIAL_CONTACTS_SVC_VIEW_MODULE_contacts_contact_activity _contacts_contact_activity view
* <table>
* <tr>
* <th>Type</th>
* <th>Property ID</th>
* <th>Primary Key</th>
* <th>Description</th>
* </tr>
* <tr><td>string</td><td>_uri</td><td></td><td> </td></tr>
* <tr><td>integer</td><td>contact_id</td><td></td><td> </td></tr>
* <tr><td>string</td><td>display_name</td><td></td><td> </td></tr>
* <tr><td>integer</td><td>display_source_type</td><td></td><td> </td></tr>
* <tr><td>integer</td><td>address_book_id</td><td></td><td> </td></tr>
* <tr><td>integer</td><td>person_id</td><td></td><td> </td></tr>
* <tr><td>string</td><td>ringtone_path</td><td></td><td> </td></tr>
* <tr><td>string</td><td>image_thumbnail_path</td><td></td><td> </td></tr>
* <tr><td>integer</td><td> activity_id </td><td>*</td><td> </td></tr>
* <tr><td>string</td><td> source_name </td><td></td><td> </td></tr>
* <tr><td>string</td><td> status </td><td></td><td> </td></tr>
* <tr><td>integer</td><td> timestamp </td><td></td><td> </td></tr>
* <tr><td>string</td><td> service_operation </td><td></td><td> </td></tr>
* <tr><td>string</td><td> uri </td><td></td><td> </td></tr>
* <tr><td>string</td><td> sync_data1 </td><td></td><td> </td></tr>
* <tr><td>string</td><td> sync_data2 </td><td></td><td> </td></tr>
* <tr><td>string</td><td> sync_data3 </td><td></td><td> </td></tr>
* <tr><td>string</td><td> sync_data4 </td><td></td><td> </td></tr>
* </table>
*
* @section CAPI_SOCIAL_CONTACTS_SVC_VIEW_MODULE_contacts_phone_log_number _contacts_phone_log_number view
* <table>
* <tr>
* <th>Type</th>
* <th>Property ID</th>
* <th>Primary Key</th>
* <th>Description</th>
* </tr>
* <tr><td>string</td><td>_uri</td><td></td><td> </td></tr>
* <tr><td>string</td><td> number </td><td> * </td><td> </td></tr>
* </table>
*
* @section CAPI_SOCIAL_CONTACTS_SVC_VIEW_MODULE_contacts_phone_log_stat _contacts_phone_log_stat view
* <table>
* <tr>
* <th>Type</th>
* <th>Property ID</th>
* <th>Primary Key</th>
* <th>Description</th>
* </tr>
* <tr><td>string</td><td>_uri</td><td></td><td> </td></tr>
* <tr><td>integer</td><td> log_count </td><td> </td><td> </td></tr>
* <tr><td>integer</td><td> log_type </td><td> * </td><td> </td></tr>
* </table>
*/
|