pst-extractor 1.9.0 → 1.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ColumnDescriptor.class.d.ts +26 -26
- package/dist/ColumnDescriptor.class.js +51 -51
- package/dist/DescriptorIndexNode.class.d.ts +25 -26
- package/dist/DescriptorIndexNode.class.js +53 -53
- package/dist/LZFu.class.d.ts +11 -12
- package/dist/LZFu.class.js +95 -95
- package/dist/NodeInfo.class.d.ts +33 -33
- package/dist/NodeInfo.class.js +52 -52
- package/dist/NodeMap.class.d.ts +35 -35
- package/dist/NodeMap.class.js +86 -86
- package/dist/OffsetIndexItem.class.d.ts +23 -24
- package/dist/OffsetIndexItem.class.js +45 -45
- package/dist/OutlookProperties.d.ts +275 -275
- package/dist/OutlookProperties.js +281 -281
- package/dist/PSTActivity.class.d.ts +103 -103
- package/dist/PSTActivity.class.js +144 -144
- package/dist/PSTAppointment.class.d.ts +270 -271
- package/dist/PSTAppointment.class.js +376 -376
- package/dist/PSTAttachment.class.d.ts +172 -172
- package/dist/PSTAttachment.class.js +317 -317
- package/dist/PSTContact.class.d.ts +884 -884
- package/dist/PSTContact.class.js +1227 -1227
- package/dist/PSTDescriptorItem.class.d.ts +45 -46
- package/dist/PSTDescriptorItem.class.js +99 -99
- package/dist/PSTFile.class.d.ts +215 -216
- package/dist/PSTFile.class.js +830 -818
- package/dist/PSTFolder.class.d.ts +129 -129
- package/dist/PSTFolder.class.js +318 -310
- package/dist/PSTMessage.class.d.ts +788 -789
- package/dist/PSTMessage.class.js +1321 -1321
- package/dist/PSTMessageStore.class.d.ts +13 -13
- package/dist/PSTMessageStore.class.js +17 -17
- package/dist/PSTNodeInputStream.class.d.ts +122 -123
- package/dist/PSTNodeInputStream.class.js +524 -514
- package/dist/PSTObject.class.d.ts +133 -134
- package/dist/PSTObject.class.js +326 -326
- package/dist/PSTRecipient.class.d.ts +65 -65
- package/dist/PSTRecipient.class.js +103 -103
- package/dist/PSTTable.class.d.ts +52 -52
- package/dist/PSTTable.class.js +175 -175
- package/dist/PSTTable7C.class.d.ts +45 -45
- package/dist/PSTTable7C.class.js +282 -281
- package/dist/PSTTableBC.class.d.ts +31 -31
- package/dist/PSTTableBC.class.js +111 -111
- package/dist/PSTTableItem.class.d.ts +47 -48
- package/dist/PSTTableItem.class.js +124 -124
- package/dist/PSTTask.class.d.ts +146 -146
- package/dist/PSTTask.class.js +205 -205
- package/dist/PSTUtil.class.d.ts +134 -135
- package/dist/PSTUtil.class.js +795 -795
- package/dist/RecurrencePattern.class.d.ts +49 -50
- package/dist/RecurrencePattern.class.js +120 -120
- package/dist/index.d.ts +6 -6
- package/dist/index.js +15 -15
- package/example/package.json +6 -6
- package/example/yarn.lock +120 -67
- package/junit.xml +68 -68
- package/package.json +26 -26
- package/readme.md +3 -3
|
@@ -1,884 +1,884 @@
|
|
|
1
|
-
import { DescriptorIndexNode } from './DescriptorIndexNode.class';
|
|
2
|
-
import { PSTDescriptorItem } from './PSTDescriptorItem.class';
|
|
3
|
-
import { PSTFile } from './PSTFile.class';
|
|
4
|
-
import { PSTMessage } from './PSTMessage.class';
|
|
5
|
-
import { PSTTableBC } from './PSTTableBC.class';
|
|
6
|
-
export declare class PSTContact extends PSTMessage {
|
|
7
|
-
constructor(pstFile: PSTFile, descriptorIndexNode: DescriptorIndexNode, table?: PSTTableBC, localDescriptorItems?: Map<number, PSTDescriptorItem>);
|
|
8
|
-
/**
|
|
9
|
-
* Contains the recipient's account name.
|
|
10
|
-
* https://msdn.microsoft.com/en-us/library/office/cc842401.aspx
|
|
11
|
-
* @readonly
|
|
12
|
-
* @type {string}
|
|
13
|
-
* @memberof PSTContact
|
|
14
|
-
*/
|
|
15
|
-
get account(): string;
|
|
16
|
-
/**
|
|
17
|
-
* Contains a telephone number that the message recipient can use to reach the sender.
|
|
18
|
-
* https://msdn.microsoft.com/en-us/library/office/cc839943.aspx
|
|
19
|
-
* @readonly
|
|
20
|
-
* @type {string}
|
|
21
|
-
* @memberof PSTContact
|
|
22
|
-
*/
|
|
23
|
-
get callbackTelephoneNumber(): string;
|
|
24
|
-
/**
|
|
25
|
-
* Contains a generational abbreviation that follows the full name of the recipient.
|
|
26
|
-
* https://msdn.microsoft.com/en-us/library/office/cc842136.aspx
|
|
27
|
-
* @readonly
|
|
28
|
-
* @type {string}
|
|
29
|
-
* @memberof PSTContact
|
|
30
|
-
*/
|
|
31
|
-
get generation(): string;
|
|
32
|
-
/**
|
|
33
|
-
* Contains the first or given name of the recipient.
|
|
34
|
-
* https://msdn.microsoft.com/en-us/library/office/cc815351.aspx
|
|
35
|
-
* @readonly
|
|
36
|
-
* @type {string}
|
|
37
|
-
* @memberof PSTContact
|
|
38
|
-
*/
|
|
39
|
-
get givenName(): string;
|
|
40
|
-
/**
|
|
41
|
-
* Contains a government identifier for the recipient.
|
|
42
|
-
* https://msdn.microsoft.com/en-us/library/office/cc815890.aspx
|
|
43
|
-
* @readonly
|
|
44
|
-
* @type {string}
|
|
45
|
-
* @memberof PSTContact
|
|
46
|
-
*/
|
|
47
|
-
get governmentIdNumber(): string;
|
|
48
|
-
/**
|
|
49
|
-
* Contains the primary telephone number of the recipient's place of business.
|
|
50
|
-
* https://msdn.microsoft.com/en-us/library/office/cc839937.aspx
|
|
51
|
-
* @readonly
|
|
52
|
-
* @type {string}
|
|
53
|
-
* @memberof PSTContact
|
|
54
|
-
*/
|
|
55
|
-
get businessTelephoneNumber(): string;
|
|
56
|
-
/**
|
|
57
|
-
* Contains the primary telephone number of the recipient's home.
|
|
58
|
-
* https://msdn.microsoft.com/en-us/library/office/cc815389.aspx
|
|
59
|
-
* @readonly
|
|
60
|
-
* @type {string}
|
|
61
|
-
* @memberof PSTContact
|
|
62
|
-
*/
|
|
63
|
-
get homeTelephoneNumber(): string;
|
|
64
|
-
/**
|
|
65
|
-
* Contains the initials for parts of the full name of the recipient.
|
|
66
|
-
* https://msdn.microsoft.com/en-us/library/office/cc839843.aspx
|
|
67
|
-
* @readonly
|
|
68
|
-
* @type {string}
|
|
69
|
-
* @memberof PSTContact
|
|
70
|
-
*/
|
|
71
|
-
get initials(): string;
|
|
72
|
-
/**
|
|
73
|
-
* Contains a keyword that identifies the recipient to the recipient's system administrator.
|
|
74
|
-
* https://msdn.microsoft.com/en-us/library/office/cc842250.aspx
|
|
75
|
-
* @readonly
|
|
76
|
-
* @type {string}
|
|
77
|
-
* @memberof PSTContact
|
|
78
|
-
*/
|
|
79
|
-
get keyword(): string;
|
|
80
|
-
/**
|
|
81
|
-
* Contains a value that indicates the language in which the messaging user is writing messages.
|
|
82
|
-
* https://msdn.microsoft.com/en-us/library/office/cc839724.aspx
|
|
83
|
-
* @readonly
|
|
84
|
-
* @type {string}
|
|
85
|
-
* @memberof PSTContact
|
|
86
|
-
*/
|
|
87
|
-
get language(): string;
|
|
88
|
-
/**
|
|
89
|
-
* Contains the location of the recipient in a format that is useful to the recipient's organization.
|
|
90
|
-
* https://msdn.microsoft.com/en-us/library/office/cc815567.aspx
|
|
91
|
-
* @readonly
|
|
92
|
-
* @type {string}
|
|
93
|
-
* @memberof PSTContact
|
|
94
|
-
*/
|
|
95
|
-
get location(): string;
|
|
96
|
-
/**
|
|
97
|
-
* Contains the common name of the message handling system.
|
|
98
|
-
* https://msdn.microsoft.com/en-us/library/office/cc842474.aspx
|
|
99
|
-
* @readonly
|
|
100
|
-
* @type {string}
|
|
101
|
-
* @memberof PSTContact
|
|
102
|
-
*/
|
|
103
|
-
get mhsCommonName(): string;
|
|
104
|
-
/**
|
|
105
|
-
* Contains an organizational ID number for the contact, such as an employee ID number.
|
|
106
|
-
* https://msdn.microsoft.com/en-us/library/office/cc765672.aspx
|
|
107
|
-
* @readonly
|
|
108
|
-
* @type {string}
|
|
109
|
-
* @memberof PSTContact
|
|
110
|
-
*/
|
|
111
|
-
get organizationalIdNumber(): string;
|
|
112
|
-
/**
|
|
113
|
-
* Contains the last or surname of the recipient.
|
|
114
|
-
* https://msdn.microsoft.com/en-us/library/office/cc765704.aspx
|
|
115
|
-
* @readonly
|
|
116
|
-
* @type {string}
|
|
117
|
-
* @memberof PSTContact
|
|
118
|
-
*/
|
|
119
|
-
get surname(): string;
|
|
120
|
-
/**
|
|
121
|
-
* Contains the original display name for an entry copied from an address book to a personal address book or other writable address book.
|
|
122
|
-
* https://msdn.microsoft.com/en-us/library/office/cc765709.aspx
|
|
123
|
-
* @readonly
|
|
124
|
-
* @type {string}
|
|
125
|
-
* @memberof PSTContact
|
|
126
|
-
*/
|
|
127
|
-
get originalDisplayName(): string;
|
|
128
|
-
/**
|
|
129
|
-
* Contains the recipient's postal address.
|
|
130
|
-
* https://msdn.microsoft.com/en-us/library/office/cc842549.aspx
|
|
131
|
-
* @readonly
|
|
132
|
-
* @type {string}
|
|
133
|
-
* @memberof PSTContact
|
|
134
|
-
*/
|
|
135
|
-
get postalAddress(): string;
|
|
136
|
-
/**
|
|
137
|
-
* Contains the recipient's company name.
|
|
138
|
-
* https://msdn.microsoft.com/en-us/library/office/cc842192.aspx
|
|
139
|
-
* @readonly
|
|
140
|
-
* @type {string}
|
|
141
|
-
* @memberof PSTContact
|
|
142
|
-
*/
|
|
143
|
-
get companyName(): string;
|
|
144
|
-
/**
|
|
145
|
-
* Contains the recipient's job title.
|
|
146
|
-
* https://msdn.microsoft.com/en-us/library/office/cc815831.aspx
|
|
147
|
-
* @readonly
|
|
148
|
-
* @type {string}
|
|
149
|
-
* @memberof PSTContact
|
|
150
|
-
*/
|
|
151
|
-
get title(): string;
|
|
152
|
-
/**
|
|
153
|
-
* Contains a name for the department in which the recipient works.
|
|
154
|
-
* https://msdn.microsoft.com/en-us/library/office/cc839825.aspx
|
|
155
|
-
* @readonly
|
|
156
|
-
* @type {string}
|
|
157
|
-
* @memberof PSTContact
|
|
158
|
-
*/
|
|
159
|
-
get departmentName(): string;
|
|
160
|
-
/**
|
|
161
|
-
* Contains the recipient's office location.
|
|
162
|
-
* https://msdn.microsoft.com/en-us/library/office/cc842269.aspx
|
|
163
|
-
* @readonly
|
|
164
|
-
* @type {string}
|
|
165
|
-
* @memberof PSTContact
|
|
166
|
-
*/
|
|
167
|
-
get officeLocation(): string;
|
|
168
|
-
/**
|
|
169
|
-
* Contains the recipient's primary telephone number.
|
|
170
|
-
* https://msdn.microsoft.com/en-us/library/office/cc839969.aspx
|
|
171
|
-
* @readonly
|
|
172
|
-
* @type {string}
|
|
173
|
-
* @memberof PSTContact
|
|
174
|
-
*/
|
|
175
|
-
get primaryTelephoneNumber(): string;
|
|
176
|
-
/**
|
|
177
|
-
* Contains a secondary telephone number at the recipient's place of business.
|
|
178
|
-
* https://msdn.microsoft.com/en-us/library/office/cc841990.aspx
|
|
179
|
-
* @readonly
|
|
180
|
-
* @type {string}
|
|
181
|
-
* @memberof PSTContact
|
|
182
|
-
*/
|
|
183
|
-
get business2TelephoneNumber(): string;
|
|
184
|
-
/**
|
|
185
|
-
* Contains the recipient's cellular telephone number.
|
|
186
|
-
* https://msdn.microsoft.com/en-us/library/office/cc839798.aspx
|
|
187
|
-
* @readonly
|
|
188
|
-
* @type {string}
|
|
189
|
-
* @memberof PSTContact
|
|
190
|
-
*/
|
|
191
|
-
get mobileTelephoneNumber(): string;
|
|
192
|
-
/**
|
|
193
|
-
* Contains the recipient's radio telephone number.
|
|
194
|
-
* https://msdn.microsoft.com/en-us/library/office/cc839806.aspx
|
|
195
|
-
* @readonly
|
|
196
|
-
* @type {string}
|
|
197
|
-
* @memberof PSTContact
|
|
198
|
-
*/
|
|
199
|
-
get radioTelephoneNumber(): string;
|
|
200
|
-
/**
|
|
201
|
-
* Contains the recipient's car telephone number.
|
|
202
|
-
* https://msdn.microsoft.com/en-us/library/office/cc815394.aspx
|
|
203
|
-
* @readonly
|
|
204
|
-
* @type {string}
|
|
205
|
-
* @memberof PSTContact
|
|
206
|
-
*/
|
|
207
|
-
get carTelephoneNumber(): string;
|
|
208
|
-
/**
|
|
209
|
-
* Contains an alternate telephone number for the recipient.
|
|
210
|
-
* https://msdn.microsoft.com/en-us/library/office/cc839561.aspx
|
|
211
|
-
* @readonly
|
|
212
|
-
* @type {string}
|
|
213
|
-
* @memberof PSTContact
|
|
214
|
-
*/
|
|
215
|
-
get otherTelephoneNumber(): string;
|
|
216
|
-
/**
|
|
217
|
-
* Contains a recipient's display name in a secure form that cannot be changed.
|
|
218
|
-
* https://msdn.microsoft.com/en-us/library/office/cc815723.aspx
|
|
219
|
-
* @readonly
|
|
220
|
-
* @type {string}
|
|
221
|
-
* @memberof PSTContact
|
|
222
|
-
*/
|
|
223
|
-
get transmittableDisplayName(): string;
|
|
224
|
-
/**
|
|
225
|
-
* Contains the recipient's pager telephone number.
|
|
226
|
-
* https://msdn.microsoft.com/en-us/library/office/cc765824.aspx
|
|
227
|
-
* @readonly
|
|
228
|
-
* @type {string}
|
|
229
|
-
* @memberof PSTContact
|
|
230
|
-
*/
|
|
231
|
-
get pagerTelephoneNumber(): string;
|
|
232
|
-
/**
|
|
233
|
-
* Contains the telephone number of the recipient's primary fax machine.
|
|
234
|
-
* https://msdn.microsoft.com/en-us/library/office/cc815713.aspx
|
|
235
|
-
* @readonly
|
|
236
|
-
* @type {string}
|
|
237
|
-
* @memberof PSTContact
|
|
238
|
-
*/
|
|
239
|
-
get primaryFaxNumber(): string;
|
|
240
|
-
/**
|
|
241
|
-
* Contains the telephone number of the recipient's business fax machine.
|
|
242
|
-
* https://msdn.microsoft.com/en-us/library/office/cc765799.aspx
|
|
243
|
-
* @readonly
|
|
244
|
-
* @type {string}
|
|
245
|
-
* @memberof PSTContact
|
|
246
|
-
*/
|
|
247
|
-
get businessFaxNumber(): string;
|
|
248
|
-
/**
|
|
249
|
-
* Contains the telephone number of the recipient's home fax machine.
|
|
250
|
-
* https://msdn.microsoft.com/en-us/library/office/cc842109.aspx
|
|
251
|
-
* @readonly
|
|
252
|
-
* @type {string}
|
|
253
|
-
* @memberof PSTContact
|
|
254
|
-
*/
|
|
255
|
-
get homeFaxNumber(): string;
|
|
256
|
-
/**
|
|
257
|
-
* Contains the name of the recipient's country/region.
|
|
258
|
-
* https://msdn.microsoft.com/en-us/library/office/cc842494.aspx
|
|
259
|
-
* @readonly
|
|
260
|
-
* @type {string}
|
|
261
|
-
* @memberof PSTContact
|
|
262
|
-
*/
|
|
263
|
-
get businessAddressCountry(): string;
|
|
264
|
-
/**
|
|
265
|
-
* Contains the name of the recipient's locality, such as the town or city.
|
|
266
|
-
* https://msdn.microsoft.com/en-us/library/office/cc815711.aspx
|
|
267
|
-
* @readonly
|
|
268
|
-
* @type {string}
|
|
269
|
-
* @memberof PSTContact
|
|
270
|
-
*/
|
|
271
|
-
get businessAddressCity(): string;
|
|
272
|
-
/**
|
|
273
|
-
* Contains the name of the recipient's state or province.
|
|
274
|
-
* https://msdn.microsoft.com/en-us/library/office/cc839544.aspx
|
|
275
|
-
* @readonly
|
|
276
|
-
* @type {string}
|
|
277
|
-
* @memberof PSTContact
|
|
278
|
-
*/
|
|
279
|
-
get businessAddressStateOrProvince(): string;
|
|
280
|
-
/**
|
|
281
|
-
* Contains the recipient's street address.
|
|
282
|
-
* https://msdn.microsoft.com/en-us/library/office/cc765810.aspx
|
|
283
|
-
* @readonly
|
|
284
|
-
* @type {string}
|
|
285
|
-
* @memberof PSTContact
|
|
286
|
-
*/
|
|
287
|
-
get businessAddressStreet(): string;
|
|
288
|
-
/**
|
|
289
|
-
* Contains the postal code for the recipient's postal address.
|
|
290
|
-
* https://msdn.microsoft.com/en-us/library/office/cc839851.aspx
|
|
291
|
-
* @readonly
|
|
292
|
-
* @type {string}
|
|
293
|
-
* @memberof PSTContact
|
|
294
|
-
*/
|
|
295
|
-
get businessPostalCode(): string;
|
|
296
|
-
/**
|
|
297
|
-
* Contains the number or identifier of the recipient's post office box.
|
|
298
|
-
* https://msdn.microsoft.com/en-us/library/office/cc815522.aspx
|
|
299
|
-
* @readonly
|
|
300
|
-
* @type {string}
|
|
301
|
-
* @memberof PSTContact
|
|
302
|
-
*/
|
|
303
|
-
get businessPoBox(): string;
|
|
304
|
-
/**
|
|
305
|
-
* Contains the recipient's telex number.
|
|
306
|
-
* https://msdn.microsoft.com/en-us/library/office/cc765894.aspx
|
|
307
|
-
* @readonly
|
|
308
|
-
* @type {string}
|
|
309
|
-
* @memberof PSTContact
|
|
310
|
-
*/
|
|
311
|
-
get telexNumber(): string;
|
|
312
|
-
/**
|
|
313
|
-
* Contains the recipient's ISDN-capable telephone number.
|
|
314
|
-
* https://msdn.microsoft.com/en-us/library/office/cc765863.aspx
|
|
315
|
-
* @readonly
|
|
316
|
-
* @type {string}
|
|
317
|
-
* @memberof PSTContact
|
|
318
|
-
*/
|
|
319
|
-
get isdnNumber(): string;
|
|
320
|
-
/**
|
|
321
|
-
* Contains the telephone number of the recipient's administrative assistant.
|
|
322
|
-
* https://msdn.microsoft.com/en-us/library/office/cc840012.aspx
|
|
323
|
-
* @readonly
|
|
324
|
-
* @type {string}
|
|
325
|
-
* @memberof PSTContact
|
|
326
|
-
*/
|
|
327
|
-
get assistantTelephoneNumber(): string;
|
|
328
|
-
/**
|
|
329
|
-
* Contains a secondary telephone number at the recipient's home.
|
|
330
|
-
* https://msdn.microsoft.com/en-us/library/office/cc815540.aspx
|
|
331
|
-
* @readonly
|
|
332
|
-
* @type {string}
|
|
333
|
-
* @memberof PSTContact
|
|
334
|
-
*/
|
|
335
|
-
get home2TelephoneNumber(): string;
|
|
336
|
-
/**
|
|
337
|
-
* Contains the name of the recipient's administrative assistant.
|
|
338
|
-
* https://msdn.microsoft.com/en-us/library/office/cc815319.aspx
|
|
339
|
-
* @readonly
|
|
340
|
-
* @type {string}
|
|
341
|
-
* @memberof PSTContact
|
|
342
|
-
*/
|
|
343
|
-
get assistant(): string;
|
|
344
|
-
/**
|
|
345
|
-
* Contains the names of the hobbies of the messaging user.
|
|
346
|
-
* https://msdn.microsoft.com/en-us/library/office/cc815391.aspx
|
|
347
|
-
* @readonly
|
|
348
|
-
* @type {string}
|
|
349
|
-
* @memberof PSTContact
|
|
350
|
-
*/
|
|
351
|
-
get hobbies(): string;
|
|
352
|
-
/**
|
|
353
|
-
* Contains the middle name of a contact.
|
|
354
|
-
* https://msdn.microsoft.com/en-us/library/office/cc815329.aspx
|
|
355
|
-
* @readonly
|
|
356
|
-
* @type {string}
|
|
357
|
-
* @memberof PSTContact
|
|
358
|
-
*/
|
|
359
|
-
get middleName(): string;
|
|
360
|
-
/**
|
|
361
|
-
* Contains the display name prefix (such as Miss, Mr., Mrs.) for the messaging user.
|
|
362
|
-
* https://msdn.microsoft.com/en-us/library/office/cc765538.aspx
|
|
363
|
-
* @readonly
|
|
364
|
-
* @type {string}
|
|
365
|
-
* @memberof PSTContact
|
|
366
|
-
*/
|
|
367
|
-
get displayNamePrefix(): string;
|
|
368
|
-
/**
|
|
369
|
-
* Contains the profession of the user.
|
|
370
|
-
* https://msdn.microsoft.com/en-us/library/office/cc765792.aspx
|
|
371
|
-
* @readonly
|
|
372
|
-
* @type {string}
|
|
373
|
-
* @memberof PSTContact
|
|
374
|
-
*/
|
|
375
|
-
get profession(): string;
|
|
376
|
-
/**
|
|
377
|
-
* Contains the name of the mail user's referral.
|
|
378
|
-
* https://msdn.microsoft.com/en-us/library/office/cc765803.aspx
|
|
379
|
-
* @readonly
|
|
380
|
-
* @type {string}
|
|
381
|
-
* @memberof PSTContact
|
|
382
|
-
*/
|
|
383
|
-
get preferredByName(): string;
|
|
384
|
-
/**
|
|
385
|
-
* Contains the user’s spouse name.
|
|
386
|
-
* https://msdn.microsoft.com/en-us/library/office/cc765832.aspx
|
|
387
|
-
* @readonly
|
|
388
|
-
* @type {string}
|
|
389
|
-
* @memberof PSTContact
|
|
390
|
-
*/
|
|
391
|
-
get spouseName(): string;
|
|
392
|
-
/**
|
|
393
|
-
* Contains the name of the network used to transmit the message.
|
|
394
|
-
* https://msdn.microsoft.com/en-us/library/office/cc839633.aspx
|
|
395
|
-
* @readonly
|
|
396
|
-
* @type {string}
|
|
397
|
-
* @memberof PSTContact
|
|
398
|
-
*/
|
|
399
|
-
get computerNetworkName(): string;
|
|
400
|
-
/**
|
|
401
|
-
* Contains the contact’s customer ID number.
|
|
402
|
-
* https://msdn.microsoft.com/en-us/library/office/cc842178.aspx
|
|
403
|
-
* @readonly
|
|
404
|
-
* @type {string}
|
|
405
|
-
* @memberof PSTContact
|
|
406
|
-
*/
|
|
407
|
-
get customerId(): string;
|
|
408
|
-
/**
|
|
409
|
-
* Contains the telephone number for the contact’s text telephone (TTY) or telecommunication device for the deaf (TDD).
|
|
410
|
-
* https://msdn.microsoft.com/en-us/library/office/cc765580.aspx
|
|
411
|
-
* @readonly
|
|
412
|
-
* @type {string}
|
|
413
|
-
* @memberof PSTContact
|
|
414
|
-
*/
|
|
415
|
-
get ttytddPhoneNumber(): string;
|
|
416
|
-
/**
|
|
417
|
-
* Contains the contact’s File Transfer Protocol (FTP) URL. FTP is a protocol that is used to transfer data, as specified in [RFC959].
|
|
418
|
-
* https://msdn.microsoft.com/en-us/library/office/cc839830.aspx
|
|
419
|
-
* @readonly
|
|
420
|
-
* @type {string}
|
|
421
|
-
* @memberof PSTContact
|
|
422
|
-
*/
|
|
423
|
-
get ftpSite(): string;
|
|
424
|
-
/**
|
|
425
|
-
* Contains the name of the recipient's manager.
|
|
426
|
-
* https://msdn.microsoft.com/en-us/library/office/cc842009.aspx
|
|
427
|
-
* @readonly
|
|
428
|
-
* @type {string}
|
|
429
|
-
* @memberof PSTContact
|
|
430
|
-
*/
|
|
431
|
-
get managerName(): string;
|
|
432
|
-
/**
|
|
433
|
-
* Contains the nickname of the contact.
|
|
434
|
-
* https://msdn.microsoft.com/en-us/library/office/cc765603.aspx
|
|
435
|
-
* @readonly
|
|
436
|
-
* @type {string}
|
|
437
|
-
* @memberof PSTContact
|
|
438
|
-
*/
|
|
439
|
-
get nickname(): string;
|
|
440
|
-
/**
|
|
441
|
-
* Contains the URL of a user's personal home page.
|
|
442
|
-
* https://msdn.microsoft.com/en-us/library/office/cc765751.aspx
|
|
443
|
-
* @readonly
|
|
444
|
-
* @type {string}
|
|
445
|
-
* @memberof PSTContact
|
|
446
|
-
*/
|
|
447
|
-
get personalHomePage(): string;
|
|
448
|
-
/**
|
|
449
|
-
* Contains the URL of the home page for the business.
|
|
450
|
-
* https://msdn.microsoft.com/en-us/library/office/cc842385.aspx
|
|
451
|
-
* @readonly
|
|
452
|
-
* @type {string}
|
|
453
|
-
* @memberof PSTContact
|
|
454
|
-
*/
|
|
455
|
-
get businessHomePage(): string;
|
|
456
|
-
/**
|
|
457
|
-
* Get the note associated with the contact.
|
|
458
|
-
* @readonly
|
|
459
|
-
* @type {string}
|
|
460
|
-
* @memberof PSTContact
|
|
461
|
-
*/
|
|
462
|
-
get note(): string;
|
|
463
|
-
/**
|
|
464
|
-
* Get a named string item from the map
|
|
465
|
-
* @param {number} key
|
|
466
|
-
* @returns {string}
|
|
467
|
-
* @memberof PSTContact
|
|
468
|
-
*/
|
|
469
|
-
getNamedStringItem(key: number): string;
|
|
470
|
-
/**
|
|
471
|
-
* Contains the main telephone number for a company
|
|
472
|
-
* https://msdn.microsoft.com/en-us/library/office/cc839651.aspx
|
|
473
|
-
* @readonly
|
|
474
|
-
* @type {string}
|
|
475
|
-
* @memberof PSTContact
|
|
476
|
-
*/
|
|
477
|
-
get companyMainPhoneNumber(): string;
|
|
478
|
-
/**
|
|
479
|
-
* Contains a list of names of children
|
|
480
|
-
* https://msdn.microsoft.com/en-us/library/office/cc839533.aspx
|
|
481
|
-
* @readonly
|
|
482
|
-
* @type {string}
|
|
483
|
-
* @memberof PSTContact
|
|
484
|
-
*/
|
|
485
|
-
get childrensNames(): string;
|
|
486
|
-
/**
|
|
487
|
-
* Contains the city for the recipient's home address.
|
|
488
|
-
* https://msdn.microsoft.com/en-us/library/office/cc815582.aspx
|
|
489
|
-
* @readonly
|
|
490
|
-
* @type {string}
|
|
491
|
-
* @memberof PSTContact
|
|
492
|
-
*/
|
|
493
|
-
get homeAddressCity(): string;
|
|
494
|
-
/**
|
|
495
|
-
* Contains the county in a contact's address.
|
|
496
|
-
* https://msdn.microsoft.com/en-us/library/office/cc842548.aspx
|
|
497
|
-
* @readonly
|
|
498
|
-
* @type {string}
|
|
499
|
-
* @memberof PSTContact
|
|
500
|
-
*/
|
|
501
|
-
get homeAddressCountry(): string;
|
|
502
|
-
/**
|
|
503
|
-
* Contains the postal code for the user's home address.
|
|
504
|
-
* https://msdn.microsoft.com/en-us/library/office/cc815880.aspx
|
|
505
|
-
* @readonly
|
|
506
|
-
* @type {string}
|
|
507
|
-
* @memberof PSTContact
|
|
508
|
-
*/
|
|
509
|
-
get homeAddressPostalCode(): string;
|
|
510
|
-
/**
|
|
511
|
-
* Contains the state or province portion of a user's address.
|
|
512
|
-
* https://msdn.microsoft.com/en-us/library/office/cc839958.aspx
|
|
513
|
-
* @readonly
|
|
514
|
-
* @type {string}
|
|
515
|
-
* @memberof PSTContact
|
|
516
|
-
*/
|
|
517
|
-
get homeAddressStateOrProvince(): string;
|
|
518
|
-
/**
|
|
519
|
-
* Contains the street portion of a user's address.
|
|
520
|
-
* https://msdn.microsoft.com/en-us/library/office/cc841997.aspx
|
|
521
|
-
* @readonly
|
|
522
|
-
* @type {string}
|
|
523
|
-
* @memberof PSTContact
|
|
524
|
-
*/
|
|
525
|
-
get homeAddressStreet(): string;
|
|
526
|
-
/**
|
|
527
|
-
* Contains the post office box information for a user's address.
|
|
528
|
-
* https://msdn.microsoft.com/en-us/library/office/cc842440.aspx
|
|
529
|
-
* @readonly
|
|
530
|
-
* @type {string}
|
|
531
|
-
* @memberof PSTContact
|
|
532
|
-
*/
|
|
533
|
-
get homeAddressPostOfficeBox(): string;
|
|
534
|
-
/**
|
|
535
|
-
* Contains the name of the mail user's other locality, such as the town or city.
|
|
536
|
-
* https://msdn.microsoft.com/en-us/library/office/cc765881.aspx
|
|
537
|
-
* @readonly
|
|
538
|
-
* @type {string}
|
|
539
|
-
* @memberof PSTContact
|
|
540
|
-
*/
|
|
541
|
-
get otherAddressCity(): string;
|
|
542
|
-
/**
|
|
543
|
-
* Contains the mail user's other country/region.
|
|
544
|
-
* https://msdn.microsoft.com/en-us/library/office/cc765814.aspx
|
|
545
|
-
* @readonly
|
|
546
|
-
* @type {string}
|
|
547
|
-
* @memberof PSTContact
|
|
548
|
-
*/
|
|
549
|
-
get otherAddressCountry(): string;
|
|
550
|
-
/**
|
|
551
|
-
* Contains the postal code for the mail user's other postal address.
|
|
552
|
-
* https://msdn.microsoft.com/en-us/library/office/cc842261.aspx
|
|
553
|
-
* @readonly
|
|
554
|
-
* @type {string}
|
|
555
|
-
* @memberof PSTContact
|
|
556
|
-
*/
|
|
557
|
-
get otherAddressPostalCode(): string;
|
|
558
|
-
/**
|
|
559
|
-
* Contains the name of state or province used in the other address.
|
|
560
|
-
* https://msdn.microsoft.com/en-us/library/office/cc815782.aspx
|
|
561
|
-
* @readonly
|
|
562
|
-
* @type {string}
|
|
563
|
-
* @memberof PSTContact
|
|
564
|
-
*/
|
|
565
|
-
get otherAddressStateOrProvince(): string;
|
|
566
|
-
/**
|
|
567
|
-
* Contains the mail user's other street address.
|
|
568
|
-
* https://msdn.microsoft.com/en-us/library/office/cc839546.aspx
|
|
569
|
-
* @readonly
|
|
570
|
-
* @type {string}
|
|
571
|
-
* @memberof PSTContact
|
|
572
|
-
*/
|
|
573
|
-
get otherAddressStreet(): string;
|
|
574
|
-
/**
|
|
575
|
-
* Contains the post office box for a contact's other address.
|
|
576
|
-
* https://msdn.microsoft.com/en-us/library/office/cc842396.aspx
|
|
577
|
-
* @readonly
|
|
578
|
-
* @type {string}
|
|
579
|
-
* @memberof PSTContact
|
|
580
|
-
*/
|
|
581
|
-
get otherAddressPostOfficeBox(): string;
|
|
582
|
-
/**
|
|
583
|
-
* Specifies the name under which the contact is filed when displaying a list of contacts.
|
|
584
|
-
* https://msdn.microsoft.com/en-us/library/office/cc842002.aspx
|
|
585
|
-
* @readonly
|
|
586
|
-
* @type {string}
|
|
587
|
-
* @memberof PSTContact
|
|
588
|
-
*/
|
|
589
|
-
get fileUnder(): string;
|
|
590
|
-
/**
|
|
591
|
-
* Specifies the complete address of the contact’s home address.
|
|
592
|
-
* https://msdn.microsoft.com/en-us/library/office/cc839539.aspx
|
|
593
|
-
* @readonly
|
|
594
|
-
* @type {string}
|
|
595
|
-
* @memberof PSTContact
|
|
596
|
-
*/
|
|
597
|
-
get homeAddress(): string;
|
|
598
|
-
/**
|
|
599
|
-
* Specifies the contact's complete work address.
|
|
600
|
-
* https://msdn.microsoft.com/en-us/library/office/cc815905.aspx
|
|
601
|
-
* @readonly
|
|
602
|
-
* @type {string}
|
|
603
|
-
* @memberof PSTContact
|
|
604
|
-
*/
|
|
605
|
-
get workAddress(): string;
|
|
606
|
-
/**
|
|
607
|
-
* Specifies the complete address of the contact’s other address.
|
|
608
|
-
* https://msdn.microsoft.com/en-us/library/office/cc815383.aspx
|
|
609
|
-
* @readonly
|
|
610
|
-
* @type {string}
|
|
611
|
-
* @memberof PSTContact
|
|
612
|
-
*/
|
|
613
|
-
get otherAddress(): string;
|
|
614
|
-
/**
|
|
615
|
-
* Specifies which physical address is the contact’s mailing address.
|
|
616
|
-
* https://msdn.microsoft.com/en-us/library/office/cc815430.aspx
|
|
617
|
-
* @readonly
|
|
618
|
-
* @type {number}
|
|
619
|
-
* @memberof PSTContact
|
|
620
|
-
*/
|
|
621
|
-
get postalAddressId(): number;
|
|
622
|
-
/**
|
|
623
|
-
* Specifies the contact’s business Web page URL.
|
|
624
|
-
* https://msdn.microsoft.com/en-us/library/office/cc842001.aspx
|
|
625
|
-
* @readonly
|
|
626
|
-
* @type {string}
|
|
627
|
-
* @memberof PSTContact
|
|
628
|
-
*/
|
|
629
|
-
get html(): string;
|
|
630
|
-
/**
|
|
631
|
-
* Specifies the street portion of the contact's work mailing address.
|
|
632
|
-
* https://msdn.microsoft.com/en-us/library/office/cc815537.aspx
|
|
633
|
-
* @readonly
|
|
634
|
-
* @type {string}
|
|
635
|
-
* @memberof PSTContact
|
|
636
|
-
*/
|
|
637
|
-
get workAddressStreet(): string;
|
|
638
|
-
/**
|
|
639
|
-
* Specifies the city or locality portion of the contact's work address.
|
|
640
|
-
* https://msdn.microsoft.com/en-us/library/office/cc765923.aspx
|
|
641
|
-
* @readonly
|
|
642
|
-
* @type {string}
|
|
643
|
-
* @memberof PSTContact
|
|
644
|
-
*/
|
|
645
|
-
get workAddressCity(): string;
|
|
646
|
-
/**
|
|
647
|
-
* Specifies the state or province portion of the contact's work mailing address.
|
|
648
|
-
* https://msdn.microsoft.com/en-us/library/office/cc842152.aspx
|
|
649
|
-
* @readonly
|
|
650
|
-
* @type {string}
|
|
651
|
-
* @memberof PSTContact
|
|
652
|
-
*/
|
|
653
|
-
get workAddressState(): string;
|
|
654
|
-
/**
|
|
655
|
-
* Specifies the postal code (ZIP code) portion of the contact's work address.
|
|
656
|
-
* https://msdn.microsoft.com/en-us/library/office/cc842066.aspx
|
|
657
|
-
* @readonly
|
|
658
|
-
* @type {string}
|
|
659
|
-
* @memberof PSTContact
|
|
660
|
-
*/
|
|
661
|
-
get workAddressPostalCode(): string;
|
|
662
|
-
/**
|
|
663
|
-
* Specifies the country or region portion of the contact's work address.
|
|
664
|
-
* https://msdn.microsoft.com/en-us/library/office/cc765698.aspx
|
|
665
|
-
* @readonly
|
|
666
|
-
* @type {string}
|
|
667
|
-
* @memberof PSTContact
|
|
668
|
-
*/
|
|
669
|
-
get workAddressCountry(): string;
|
|
670
|
-
/**
|
|
671
|
-
* Specifies the post office box portion of the contact's work.
|
|
672
|
-
* https://msdn.microsoft.com/en-us/library/office/cc815563.aspx
|
|
673
|
-
* @readonly
|
|
674
|
-
* @type {string}
|
|
675
|
-
* @memberof PSTContact
|
|
676
|
-
*/
|
|
677
|
-
get workAddressPostOfficeBox(): string;
|
|
678
|
-
/**
|
|
679
|
-
* Specifies the contact’s instant messaging address.
|
|
680
|
-
* https://msdn.microsoft.com/en-us/library/office/cc815607.aspx
|
|
681
|
-
* @readonly
|
|
682
|
-
* @type {string}
|
|
683
|
-
* @memberof PSTContact
|
|
684
|
-
*/
|
|
685
|
-
get instantMessagingAddress(): string;
|
|
686
|
-
/**
|
|
687
|
-
* Specifies the user-readable display name for the first e-mail address.
|
|
688
|
-
* https://msdn.microsoft.com/en-us/library/office/cc815460.aspx
|
|
689
|
-
* @readonly
|
|
690
|
-
* @type {string}
|
|
691
|
-
* @memberof PSTContact
|
|
692
|
-
*/
|
|
693
|
-
get email1DisplayName(): string;
|
|
694
|
-
/**
|
|
695
|
-
* Specifies the address type of the first e-mail address.
|
|
696
|
-
* https://msdn.microsoft.com/en-us/library/office/cc815570.aspx
|
|
697
|
-
* @readonly
|
|
698
|
-
* @type {string}
|
|
699
|
-
* @memberof PSTContact
|
|
700
|
-
*/
|
|
701
|
-
get email1AddressType(): string;
|
|
702
|
-
/**
|
|
703
|
-
* Specifies the first e-mail address of the contact.
|
|
704
|
-
* https://msdn.microsoft.com/en-us/library/office/cc842050.aspx
|
|
705
|
-
* @readonly
|
|
706
|
-
* @type {string}
|
|
707
|
-
* @memberof PSTContact
|
|
708
|
-
*/
|
|
709
|
-
get email1EmailAddress(): string;
|
|
710
|
-
/**
|
|
711
|
-
* Specifies the first display name that corresponds to the e-mail address that is specified for the contact.
|
|
712
|
-
* https://msdn.microsoft.com/en-us/library/office/cc815564.aspx
|
|
713
|
-
* @readonly
|
|
714
|
-
* @type {string}
|
|
715
|
-
* @memberof PSTContact
|
|
716
|
-
*/
|
|
717
|
-
get email1OriginalDisplayName(): string;
|
|
718
|
-
/**
|
|
719
|
-
* Specifies the user-readable display name for the second e-mail address.
|
|
720
|
-
* https://msdn.microsoft.com/en-us/library/office/cc839675.aspx
|
|
721
|
-
* @readonly
|
|
722
|
-
* @type {string}
|
|
723
|
-
* @memberof PSTContact
|
|
724
|
-
*/
|
|
725
|
-
get email2DisplayName(): string;
|
|
726
|
-
/**
|
|
727
|
-
* Specifies the address type of the second e-mail address.
|
|
728
|
-
* https://msdn.microsoft.com/en-us/library/office/cc815361.aspx
|
|
729
|
-
* @readonly
|
|
730
|
-
* @type {string}
|
|
731
|
-
* @memberof PSTContact
|
|
732
|
-
*/
|
|
733
|
-
get email2AddressType(): string;
|
|
734
|
-
/**
|
|
735
|
-
* Specifies the second e-mail address of the contact.
|
|
736
|
-
* https://msdn.microsoft.com/en-us/library/office/cc842205.aspx
|
|
737
|
-
* @readonly
|
|
738
|
-
* @type {string}
|
|
739
|
-
* @memberof PSTContact
|
|
740
|
-
*/
|
|
741
|
-
get email2EmailAddress(): string;
|
|
742
|
-
/**
|
|
743
|
-
* Specifies the second display name that corresponds to the e-mail address specified for the contact.
|
|
744
|
-
* https://msdn.microsoft.com/en-us/library/office/cc765618.aspx
|
|
745
|
-
* @readonly
|
|
746
|
-
* @type {string}
|
|
747
|
-
* @memberof PSTContact
|
|
748
|
-
*/
|
|
749
|
-
get email2OriginalDisplayName(): string;
|
|
750
|
-
/**
|
|
751
|
-
* Specifies the user-readable display name for the third e-mail address.
|
|
752
|
-
* https://msdn.microsoft.com/en-us/library/office/cc815669.aspx
|
|
753
|
-
* @readonly
|
|
754
|
-
* @type {string}
|
|
755
|
-
* @memberof PSTContact
|
|
756
|
-
*/
|
|
757
|
-
get email3DisplayName(): string;
|
|
758
|
-
/**
|
|
759
|
-
* Specifies the address type of the third e-mail address.
|
|
760
|
-
* https://msdn.microsoft.com/en-us/library/office/cc842438.aspx
|
|
761
|
-
* @readonly
|
|
762
|
-
* @type {string}
|
|
763
|
-
* @memberof PSTContact
|
|
764
|
-
*/
|
|
765
|
-
get email3AddressType(): string;
|
|
766
|
-
/**
|
|
767
|
-
* Specifies the third e-mail address of the contact.
|
|
768
|
-
* https://msdn.microsoft.com/en-us/library/office/cc815504.aspx
|
|
769
|
-
* @readonly
|
|
770
|
-
* @type {string}
|
|
771
|
-
* @memberof PSTContact
|
|
772
|
-
*/
|
|
773
|
-
get email3EmailAddress(): string;
|
|
774
|
-
/**
|
|
775
|
-
* Specifies the third display name that corresponds to the e-mail address that is specified for the contact.
|
|
776
|
-
* https://msdn.microsoft.com/en-us/library/office/cc815833.aspx
|
|
777
|
-
* @readonly
|
|
778
|
-
* @type {string}
|
|
779
|
-
* @memberof PSTContact
|
|
780
|
-
*/
|
|
781
|
-
get email3OriginalDisplayName(): string;
|
|
782
|
-
/**
|
|
783
|
-
* Specifies the address type for the business fax address for a contact.
|
|
784
|
-
* https://msdn.microsoft.com/en-us/library/office/cc842026.aspx
|
|
785
|
-
* @readonly
|
|
786
|
-
* @type {string}
|
|
787
|
-
* @memberof PSTContact
|
|
788
|
-
*/
|
|
789
|
-
get fax1AddressType(): string;
|
|
790
|
-
/**
|
|
791
|
-
* Specifies the e-mail address of the contact’s business fax.
|
|
792
|
-
* https://msdn.microsoft.com/en-us/library/office/cc765813.aspx
|
|
793
|
-
* @readonly
|
|
794
|
-
* @type {string}
|
|
795
|
-
* @memberof PSTContact
|
|
796
|
-
*/
|
|
797
|
-
get fax1EmailAddress(): string;
|
|
798
|
-
/**
|
|
799
|
-
* Specifies the original display name of the contact’s business fax address.
|
|
800
|
-
* https://msdn.microsoft.com/en-us/library/office/cc765694.aspx
|
|
801
|
-
* @readonly
|
|
802
|
-
* @type {string}
|
|
803
|
-
* @memberof PSTContact
|
|
804
|
-
*/
|
|
805
|
-
get fax1OriginalDisplayName(): string;
|
|
806
|
-
/**
|
|
807
|
-
* Specifies the address type for the contact’s home fax address.
|
|
808
|
-
* https://msdn.microsoft.com/en-us/library/office/cc839741.aspx
|
|
809
|
-
* @readonly
|
|
810
|
-
* @type {string}
|
|
811
|
-
* @memberof PSTContact
|
|
812
|
-
*/
|
|
813
|
-
get fax2AddressType(): string;
|
|
814
|
-
/**
|
|
815
|
-
* Specifies the e-mail address of the contact’s home fax address.
|
|
816
|
-
* https://msdn.microsoft.com/en-us/library/office/cc765668.aspx
|
|
817
|
-
* @readonly
|
|
818
|
-
* @type {string}
|
|
819
|
-
* @memberof PSTContact
|
|
820
|
-
*/
|
|
821
|
-
get fax2EmailAddress(): string;
|
|
822
|
-
/**
|
|
823
|
-
* Specifies the original display name of the contact’s home fax address.
|
|
824
|
-
* https://msdn.microsoft.com/en-us/library/office/cc842101.aspx
|
|
825
|
-
* @readonly
|
|
826
|
-
* @type {string}
|
|
827
|
-
* @memberof PSTContact
|
|
828
|
-
*/
|
|
829
|
-
get fax2OriginalDisplayName(): string;
|
|
830
|
-
/**
|
|
831
|
-
* Specifies the address type for the other contact’s fax address.
|
|
832
|
-
* https://msdn.microsoft.com/en-us/library/office/cc839752.aspx
|
|
833
|
-
* @readonly
|
|
834
|
-
* @type {string}
|
|
835
|
-
* @memberof PSTContact
|
|
836
|
-
*/
|
|
837
|
-
get fax3AddressType(): string;
|
|
838
|
-
/**
|
|
839
|
-
* Specifies the email address of the contact’s other fax address.
|
|
840
|
-
* https://msdn.microsoft.com/en-us/library/office/cc842217.aspx
|
|
841
|
-
* @readonly
|
|
842
|
-
* @type {string}
|
|
843
|
-
* @memberof PSTContact
|
|
844
|
-
*/
|
|
845
|
-
get fax3EmailAddress(): string;
|
|
846
|
-
/**
|
|
847
|
-
* Specifies the original display name of the contact’s other fax address.
|
|
848
|
-
* https://msdn.microsoft.com/en-us/library/office/cc765682.aspx
|
|
849
|
-
* @readonly
|
|
850
|
-
* @type {string}
|
|
851
|
-
* @memberof PSTContact
|
|
852
|
-
*/
|
|
853
|
-
get fax3OriginalDisplayName(): string;
|
|
854
|
-
/**
|
|
855
|
-
* Specifies a URL path from which a client can retrieve free/busy information for the contact as an iCal file, as specified in [MS-OXCICAL].
|
|
856
|
-
* https://msdn.microsoft.com/en-us/library/office/cc765766.aspx
|
|
857
|
-
* @readonly
|
|
858
|
-
* @type {string}
|
|
859
|
-
* @memberof PSTContact
|
|
860
|
-
*/
|
|
861
|
-
get freeBusyLocation(): string;
|
|
862
|
-
/**
|
|
863
|
-
* Contains the birthday of the contact.
|
|
864
|
-
* https://msdn.microsoft.com/en-us/library/office/cc842301.aspx
|
|
865
|
-
* @readonly
|
|
866
|
-
* @type {Date}
|
|
867
|
-
* @memberof PSTContact
|
|
868
|
-
*/
|
|
869
|
-
get birthday(): Date | null;
|
|
870
|
-
/**
|
|
871
|
-
* Contains the date of a user's wedding anniversary.
|
|
872
|
-
* https://msdn.microsoft.com/en-us/library/office/cc842132.aspx
|
|
873
|
-
* @readonly
|
|
874
|
-
* @type {Date}
|
|
875
|
-
* @memberof PSTContact
|
|
876
|
-
*/
|
|
877
|
-
get anniversary(): Date | null;
|
|
878
|
-
/**
|
|
879
|
-
* JSON stringify the object properties.
|
|
880
|
-
* @returns {string}
|
|
881
|
-
* @memberof PSTContact
|
|
882
|
-
*/
|
|
883
|
-
toJSON(): any;
|
|
884
|
-
}
|
|
1
|
+
import { DescriptorIndexNode } from './DescriptorIndexNode.class';
|
|
2
|
+
import { PSTDescriptorItem } from './PSTDescriptorItem.class';
|
|
3
|
+
import { PSTFile } from './PSTFile.class';
|
|
4
|
+
import { PSTMessage } from './PSTMessage.class';
|
|
5
|
+
import { PSTTableBC } from './PSTTableBC.class';
|
|
6
|
+
export declare class PSTContact extends PSTMessage {
|
|
7
|
+
constructor(pstFile: PSTFile, descriptorIndexNode: DescriptorIndexNode, table?: PSTTableBC, localDescriptorItems?: Map<number, PSTDescriptorItem>);
|
|
8
|
+
/**
|
|
9
|
+
* Contains the recipient's account name.
|
|
10
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842401.aspx
|
|
11
|
+
* @readonly
|
|
12
|
+
* @type {string}
|
|
13
|
+
* @memberof PSTContact
|
|
14
|
+
*/
|
|
15
|
+
get account(): string;
|
|
16
|
+
/**
|
|
17
|
+
* Contains a telephone number that the message recipient can use to reach the sender.
|
|
18
|
+
* https://msdn.microsoft.com/en-us/library/office/cc839943.aspx
|
|
19
|
+
* @readonly
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof PSTContact
|
|
22
|
+
*/
|
|
23
|
+
get callbackTelephoneNumber(): string;
|
|
24
|
+
/**
|
|
25
|
+
* Contains a generational abbreviation that follows the full name of the recipient.
|
|
26
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842136.aspx
|
|
27
|
+
* @readonly
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof PSTContact
|
|
30
|
+
*/
|
|
31
|
+
get generation(): string;
|
|
32
|
+
/**
|
|
33
|
+
* Contains the first or given name of the recipient.
|
|
34
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815351.aspx
|
|
35
|
+
* @readonly
|
|
36
|
+
* @type {string}
|
|
37
|
+
* @memberof PSTContact
|
|
38
|
+
*/
|
|
39
|
+
get givenName(): string;
|
|
40
|
+
/**
|
|
41
|
+
* Contains a government identifier for the recipient.
|
|
42
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815890.aspx
|
|
43
|
+
* @readonly
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof PSTContact
|
|
46
|
+
*/
|
|
47
|
+
get governmentIdNumber(): string;
|
|
48
|
+
/**
|
|
49
|
+
* Contains the primary telephone number of the recipient's place of business.
|
|
50
|
+
* https://msdn.microsoft.com/en-us/library/office/cc839937.aspx
|
|
51
|
+
* @readonly
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof PSTContact
|
|
54
|
+
*/
|
|
55
|
+
get businessTelephoneNumber(): string;
|
|
56
|
+
/**
|
|
57
|
+
* Contains the primary telephone number of the recipient's home.
|
|
58
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815389.aspx
|
|
59
|
+
* @readonly
|
|
60
|
+
* @type {string}
|
|
61
|
+
* @memberof PSTContact
|
|
62
|
+
*/
|
|
63
|
+
get homeTelephoneNumber(): string;
|
|
64
|
+
/**
|
|
65
|
+
* Contains the initials for parts of the full name of the recipient.
|
|
66
|
+
* https://msdn.microsoft.com/en-us/library/office/cc839843.aspx
|
|
67
|
+
* @readonly
|
|
68
|
+
* @type {string}
|
|
69
|
+
* @memberof PSTContact
|
|
70
|
+
*/
|
|
71
|
+
get initials(): string;
|
|
72
|
+
/**
|
|
73
|
+
* Contains a keyword that identifies the recipient to the recipient's system administrator.
|
|
74
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842250.aspx
|
|
75
|
+
* @readonly
|
|
76
|
+
* @type {string}
|
|
77
|
+
* @memberof PSTContact
|
|
78
|
+
*/
|
|
79
|
+
get keyword(): string;
|
|
80
|
+
/**
|
|
81
|
+
* Contains a value that indicates the language in which the messaging user is writing messages.
|
|
82
|
+
* https://msdn.microsoft.com/en-us/library/office/cc839724.aspx
|
|
83
|
+
* @readonly
|
|
84
|
+
* @type {string}
|
|
85
|
+
* @memberof PSTContact
|
|
86
|
+
*/
|
|
87
|
+
get language(): string;
|
|
88
|
+
/**
|
|
89
|
+
* Contains the location of the recipient in a format that is useful to the recipient's organization.
|
|
90
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815567.aspx
|
|
91
|
+
* @readonly
|
|
92
|
+
* @type {string}
|
|
93
|
+
* @memberof PSTContact
|
|
94
|
+
*/
|
|
95
|
+
get location(): string;
|
|
96
|
+
/**
|
|
97
|
+
* Contains the common name of the message handling system.
|
|
98
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842474.aspx
|
|
99
|
+
* @readonly
|
|
100
|
+
* @type {string}
|
|
101
|
+
* @memberof PSTContact
|
|
102
|
+
*/
|
|
103
|
+
get mhsCommonName(): string;
|
|
104
|
+
/**
|
|
105
|
+
* Contains an organizational ID number for the contact, such as an employee ID number.
|
|
106
|
+
* https://msdn.microsoft.com/en-us/library/office/cc765672.aspx
|
|
107
|
+
* @readonly
|
|
108
|
+
* @type {string}
|
|
109
|
+
* @memberof PSTContact
|
|
110
|
+
*/
|
|
111
|
+
get organizationalIdNumber(): string;
|
|
112
|
+
/**
|
|
113
|
+
* Contains the last or surname of the recipient.
|
|
114
|
+
* https://msdn.microsoft.com/en-us/library/office/cc765704.aspx
|
|
115
|
+
* @readonly
|
|
116
|
+
* @type {string}
|
|
117
|
+
* @memberof PSTContact
|
|
118
|
+
*/
|
|
119
|
+
get surname(): string;
|
|
120
|
+
/**
|
|
121
|
+
* Contains the original display name for an entry copied from an address book to a personal address book or other writable address book.
|
|
122
|
+
* https://msdn.microsoft.com/en-us/library/office/cc765709.aspx
|
|
123
|
+
* @readonly
|
|
124
|
+
* @type {string}
|
|
125
|
+
* @memberof PSTContact
|
|
126
|
+
*/
|
|
127
|
+
get originalDisplayName(): string;
|
|
128
|
+
/**
|
|
129
|
+
* Contains the recipient's postal address.
|
|
130
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842549.aspx
|
|
131
|
+
* @readonly
|
|
132
|
+
* @type {string}
|
|
133
|
+
* @memberof PSTContact
|
|
134
|
+
*/
|
|
135
|
+
get postalAddress(): string;
|
|
136
|
+
/**
|
|
137
|
+
* Contains the recipient's company name.
|
|
138
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842192.aspx
|
|
139
|
+
* @readonly
|
|
140
|
+
* @type {string}
|
|
141
|
+
* @memberof PSTContact
|
|
142
|
+
*/
|
|
143
|
+
get companyName(): string;
|
|
144
|
+
/**
|
|
145
|
+
* Contains the recipient's job title.
|
|
146
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815831.aspx
|
|
147
|
+
* @readonly
|
|
148
|
+
* @type {string}
|
|
149
|
+
* @memberof PSTContact
|
|
150
|
+
*/
|
|
151
|
+
get title(): string;
|
|
152
|
+
/**
|
|
153
|
+
* Contains a name for the department in which the recipient works.
|
|
154
|
+
* https://msdn.microsoft.com/en-us/library/office/cc839825.aspx
|
|
155
|
+
* @readonly
|
|
156
|
+
* @type {string}
|
|
157
|
+
* @memberof PSTContact
|
|
158
|
+
*/
|
|
159
|
+
get departmentName(): string;
|
|
160
|
+
/**
|
|
161
|
+
* Contains the recipient's office location.
|
|
162
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842269.aspx
|
|
163
|
+
* @readonly
|
|
164
|
+
* @type {string}
|
|
165
|
+
* @memberof PSTContact
|
|
166
|
+
*/
|
|
167
|
+
get officeLocation(): string;
|
|
168
|
+
/**
|
|
169
|
+
* Contains the recipient's primary telephone number.
|
|
170
|
+
* https://msdn.microsoft.com/en-us/library/office/cc839969.aspx
|
|
171
|
+
* @readonly
|
|
172
|
+
* @type {string}
|
|
173
|
+
* @memberof PSTContact
|
|
174
|
+
*/
|
|
175
|
+
get primaryTelephoneNumber(): string;
|
|
176
|
+
/**
|
|
177
|
+
* Contains a secondary telephone number at the recipient's place of business.
|
|
178
|
+
* https://msdn.microsoft.com/en-us/library/office/cc841990.aspx
|
|
179
|
+
* @readonly
|
|
180
|
+
* @type {string}
|
|
181
|
+
* @memberof PSTContact
|
|
182
|
+
*/
|
|
183
|
+
get business2TelephoneNumber(): string;
|
|
184
|
+
/**
|
|
185
|
+
* Contains the recipient's cellular telephone number.
|
|
186
|
+
* https://msdn.microsoft.com/en-us/library/office/cc839798.aspx
|
|
187
|
+
* @readonly
|
|
188
|
+
* @type {string}
|
|
189
|
+
* @memberof PSTContact
|
|
190
|
+
*/
|
|
191
|
+
get mobileTelephoneNumber(): string;
|
|
192
|
+
/**
|
|
193
|
+
* Contains the recipient's radio telephone number.
|
|
194
|
+
* https://msdn.microsoft.com/en-us/library/office/cc839806.aspx
|
|
195
|
+
* @readonly
|
|
196
|
+
* @type {string}
|
|
197
|
+
* @memberof PSTContact
|
|
198
|
+
*/
|
|
199
|
+
get radioTelephoneNumber(): string;
|
|
200
|
+
/**
|
|
201
|
+
* Contains the recipient's car telephone number.
|
|
202
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815394.aspx
|
|
203
|
+
* @readonly
|
|
204
|
+
* @type {string}
|
|
205
|
+
* @memberof PSTContact
|
|
206
|
+
*/
|
|
207
|
+
get carTelephoneNumber(): string;
|
|
208
|
+
/**
|
|
209
|
+
* Contains an alternate telephone number for the recipient.
|
|
210
|
+
* https://msdn.microsoft.com/en-us/library/office/cc839561.aspx
|
|
211
|
+
* @readonly
|
|
212
|
+
* @type {string}
|
|
213
|
+
* @memberof PSTContact
|
|
214
|
+
*/
|
|
215
|
+
get otherTelephoneNumber(): string;
|
|
216
|
+
/**
|
|
217
|
+
* Contains a recipient's display name in a secure form that cannot be changed.
|
|
218
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815723.aspx
|
|
219
|
+
* @readonly
|
|
220
|
+
* @type {string}
|
|
221
|
+
* @memberof PSTContact
|
|
222
|
+
*/
|
|
223
|
+
get transmittableDisplayName(): string;
|
|
224
|
+
/**
|
|
225
|
+
* Contains the recipient's pager telephone number.
|
|
226
|
+
* https://msdn.microsoft.com/en-us/library/office/cc765824.aspx
|
|
227
|
+
* @readonly
|
|
228
|
+
* @type {string}
|
|
229
|
+
* @memberof PSTContact
|
|
230
|
+
*/
|
|
231
|
+
get pagerTelephoneNumber(): string;
|
|
232
|
+
/**
|
|
233
|
+
* Contains the telephone number of the recipient's primary fax machine.
|
|
234
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815713.aspx
|
|
235
|
+
* @readonly
|
|
236
|
+
* @type {string}
|
|
237
|
+
* @memberof PSTContact
|
|
238
|
+
*/
|
|
239
|
+
get primaryFaxNumber(): string;
|
|
240
|
+
/**
|
|
241
|
+
* Contains the telephone number of the recipient's business fax machine.
|
|
242
|
+
* https://msdn.microsoft.com/en-us/library/office/cc765799.aspx
|
|
243
|
+
* @readonly
|
|
244
|
+
* @type {string}
|
|
245
|
+
* @memberof PSTContact
|
|
246
|
+
*/
|
|
247
|
+
get businessFaxNumber(): string;
|
|
248
|
+
/**
|
|
249
|
+
* Contains the telephone number of the recipient's home fax machine.
|
|
250
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842109.aspx
|
|
251
|
+
* @readonly
|
|
252
|
+
* @type {string}
|
|
253
|
+
* @memberof PSTContact
|
|
254
|
+
*/
|
|
255
|
+
get homeFaxNumber(): string;
|
|
256
|
+
/**
|
|
257
|
+
* Contains the name of the recipient's country/region.
|
|
258
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842494.aspx
|
|
259
|
+
* @readonly
|
|
260
|
+
* @type {string}
|
|
261
|
+
* @memberof PSTContact
|
|
262
|
+
*/
|
|
263
|
+
get businessAddressCountry(): string;
|
|
264
|
+
/**
|
|
265
|
+
* Contains the name of the recipient's locality, such as the town or city.
|
|
266
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815711.aspx
|
|
267
|
+
* @readonly
|
|
268
|
+
* @type {string}
|
|
269
|
+
* @memberof PSTContact
|
|
270
|
+
*/
|
|
271
|
+
get businessAddressCity(): string;
|
|
272
|
+
/**
|
|
273
|
+
* Contains the name of the recipient's state or province.
|
|
274
|
+
* https://msdn.microsoft.com/en-us/library/office/cc839544.aspx
|
|
275
|
+
* @readonly
|
|
276
|
+
* @type {string}
|
|
277
|
+
* @memberof PSTContact
|
|
278
|
+
*/
|
|
279
|
+
get businessAddressStateOrProvince(): string;
|
|
280
|
+
/**
|
|
281
|
+
* Contains the recipient's street address.
|
|
282
|
+
* https://msdn.microsoft.com/en-us/library/office/cc765810.aspx
|
|
283
|
+
* @readonly
|
|
284
|
+
* @type {string}
|
|
285
|
+
* @memberof PSTContact
|
|
286
|
+
*/
|
|
287
|
+
get businessAddressStreet(): string;
|
|
288
|
+
/**
|
|
289
|
+
* Contains the postal code for the recipient's postal address.
|
|
290
|
+
* https://msdn.microsoft.com/en-us/library/office/cc839851.aspx
|
|
291
|
+
* @readonly
|
|
292
|
+
* @type {string}
|
|
293
|
+
* @memberof PSTContact
|
|
294
|
+
*/
|
|
295
|
+
get businessPostalCode(): string;
|
|
296
|
+
/**
|
|
297
|
+
* Contains the number or identifier of the recipient's post office box.
|
|
298
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815522.aspx
|
|
299
|
+
* @readonly
|
|
300
|
+
* @type {string}
|
|
301
|
+
* @memberof PSTContact
|
|
302
|
+
*/
|
|
303
|
+
get businessPoBox(): string;
|
|
304
|
+
/**
|
|
305
|
+
* Contains the recipient's telex number.
|
|
306
|
+
* https://msdn.microsoft.com/en-us/library/office/cc765894.aspx
|
|
307
|
+
* @readonly
|
|
308
|
+
* @type {string}
|
|
309
|
+
* @memberof PSTContact
|
|
310
|
+
*/
|
|
311
|
+
get telexNumber(): string;
|
|
312
|
+
/**
|
|
313
|
+
* Contains the recipient's ISDN-capable telephone number.
|
|
314
|
+
* https://msdn.microsoft.com/en-us/library/office/cc765863.aspx
|
|
315
|
+
* @readonly
|
|
316
|
+
* @type {string}
|
|
317
|
+
* @memberof PSTContact
|
|
318
|
+
*/
|
|
319
|
+
get isdnNumber(): string;
|
|
320
|
+
/**
|
|
321
|
+
* Contains the telephone number of the recipient's administrative assistant.
|
|
322
|
+
* https://msdn.microsoft.com/en-us/library/office/cc840012.aspx
|
|
323
|
+
* @readonly
|
|
324
|
+
* @type {string}
|
|
325
|
+
* @memberof PSTContact
|
|
326
|
+
*/
|
|
327
|
+
get assistantTelephoneNumber(): string;
|
|
328
|
+
/**
|
|
329
|
+
* Contains a secondary telephone number at the recipient's home.
|
|
330
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815540.aspx
|
|
331
|
+
* @readonly
|
|
332
|
+
* @type {string}
|
|
333
|
+
* @memberof PSTContact
|
|
334
|
+
*/
|
|
335
|
+
get home2TelephoneNumber(): string;
|
|
336
|
+
/**
|
|
337
|
+
* Contains the name of the recipient's administrative assistant.
|
|
338
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815319.aspx
|
|
339
|
+
* @readonly
|
|
340
|
+
* @type {string}
|
|
341
|
+
* @memberof PSTContact
|
|
342
|
+
*/
|
|
343
|
+
get assistant(): string;
|
|
344
|
+
/**
|
|
345
|
+
* Contains the names of the hobbies of the messaging user.
|
|
346
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815391.aspx
|
|
347
|
+
* @readonly
|
|
348
|
+
* @type {string}
|
|
349
|
+
* @memberof PSTContact
|
|
350
|
+
*/
|
|
351
|
+
get hobbies(): string;
|
|
352
|
+
/**
|
|
353
|
+
* Contains the middle name of a contact.
|
|
354
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815329.aspx
|
|
355
|
+
* @readonly
|
|
356
|
+
* @type {string}
|
|
357
|
+
* @memberof PSTContact
|
|
358
|
+
*/
|
|
359
|
+
get middleName(): string;
|
|
360
|
+
/**
|
|
361
|
+
* Contains the display name prefix (such as Miss, Mr., Mrs.) for the messaging user.
|
|
362
|
+
* https://msdn.microsoft.com/en-us/library/office/cc765538.aspx
|
|
363
|
+
* @readonly
|
|
364
|
+
* @type {string}
|
|
365
|
+
* @memberof PSTContact
|
|
366
|
+
*/
|
|
367
|
+
get displayNamePrefix(): string;
|
|
368
|
+
/**
|
|
369
|
+
* Contains the profession of the user.
|
|
370
|
+
* https://msdn.microsoft.com/en-us/library/office/cc765792.aspx
|
|
371
|
+
* @readonly
|
|
372
|
+
* @type {string}
|
|
373
|
+
* @memberof PSTContact
|
|
374
|
+
*/
|
|
375
|
+
get profession(): string;
|
|
376
|
+
/**
|
|
377
|
+
* Contains the name of the mail user's referral.
|
|
378
|
+
* https://msdn.microsoft.com/en-us/library/office/cc765803.aspx
|
|
379
|
+
* @readonly
|
|
380
|
+
* @type {string}
|
|
381
|
+
* @memberof PSTContact
|
|
382
|
+
*/
|
|
383
|
+
get preferredByName(): string;
|
|
384
|
+
/**
|
|
385
|
+
* Contains the user’s spouse name.
|
|
386
|
+
* https://msdn.microsoft.com/en-us/library/office/cc765832.aspx
|
|
387
|
+
* @readonly
|
|
388
|
+
* @type {string}
|
|
389
|
+
* @memberof PSTContact
|
|
390
|
+
*/
|
|
391
|
+
get spouseName(): string;
|
|
392
|
+
/**
|
|
393
|
+
* Contains the name of the network used to transmit the message.
|
|
394
|
+
* https://msdn.microsoft.com/en-us/library/office/cc839633.aspx
|
|
395
|
+
* @readonly
|
|
396
|
+
* @type {string}
|
|
397
|
+
* @memberof PSTContact
|
|
398
|
+
*/
|
|
399
|
+
get computerNetworkName(): string;
|
|
400
|
+
/**
|
|
401
|
+
* Contains the contact’s customer ID number.
|
|
402
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842178.aspx
|
|
403
|
+
* @readonly
|
|
404
|
+
* @type {string}
|
|
405
|
+
* @memberof PSTContact
|
|
406
|
+
*/
|
|
407
|
+
get customerId(): string;
|
|
408
|
+
/**
|
|
409
|
+
* Contains the telephone number for the contact’s text telephone (TTY) or telecommunication device for the deaf (TDD).
|
|
410
|
+
* https://msdn.microsoft.com/en-us/library/office/cc765580.aspx
|
|
411
|
+
* @readonly
|
|
412
|
+
* @type {string}
|
|
413
|
+
* @memberof PSTContact
|
|
414
|
+
*/
|
|
415
|
+
get ttytddPhoneNumber(): string;
|
|
416
|
+
/**
|
|
417
|
+
* Contains the contact’s File Transfer Protocol (FTP) URL. FTP is a protocol that is used to transfer data, as specified in [RFC959].
|
|
418
|
+
* https://msdn.microsoft.com/en-us/library/office/cc839830.aspx
|
|
419
|
+
* @readonly
|
|
420
|
+
* @type {string}
|
|
421
|
+
* @memberof PSTContact
|
|
422
|
+
*/
|
|
423
|
+
get ftpSite(): string;
|
|
424
|
+
/**
|
|
425
|
+
* Contains the name of the recipient's manager.
|
|
426
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842009.aspx
|
|
427
|
+
* @readonly
|
|
428
|
+
* @type {string}
|
|
429
|
+
* @memberof PSTContact
|
|
430
|
+
*/
|
|
431
|
+
get managerName(): string;
|
|
432
|
+
/**
|
|
433
|
+
* Contains the nickname of the contact.
|
|
434
|
+
* https://msdn.microsoft.com/en-us/library/office/cc765603.aspx
|
|
435
|
+
* @readonly
|
|
436
|
+
* @type {string}
|
|
437
|
+
* @memberof PSTContact
|
|
438
|
+
*/
|
|
439
|
+
get nickname(): string;
|
|
440
|
+
/**
|
|
441
|
+
* Contains the URL of a user's personal home page.
|
|
442
|
+
* https://msdn.microsoft.com/en-us/library/office/cc765751.aspx
|
|
443
|
+
* @readonly
|
|
444
|
+
* @type {string}
|
|
445
|
+
* @memberof PSTContact
|
|
446
|
+
*/
|
|
447
|
+
get personalHomePage(): string;
|
|
448
|
+
/**
|
|
449
|
+
* Contains the URL of the home page for the business.
|
|
450
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842385.aspx
|
|
451
|
+
* @readonly
|
|
452
|
+
* @type {string}
|
|
453
|
+
* @memberof PSTContact
|
|
454
|
+
*/
|
|
455
|
+
get businessHomePage(): string;
|
|
456
|
+
/**
|
|
457
|
+
* Get the note associated with the contact.
|
|
458
|
+
* @readonly
|
|
459
|
+
* @type {string}
|
|
460
|
+
* @memberof PSTContact
|
|
461
|
+
*/
|
|
462
|
+
get note(): string;
|
|
463
|
+
/**
|
|
464
|
+
* Get a named string item from the map
|
|
465
|
+
* @param {number} key
|
|
466
|
+
* @returns {string}
|
|
467
|
+
* @memberof PSTContact
|
|
468
|
+
*/
|
|
469
|
+
getNamedStringItem(key: number): string;
|
|
470
|
+
/**
|
|
471
|
+
* Contains the main telephone number for a company
|
|
472
|
+
* https://msdn.microsoft.com/en-us/library/office/cc839651.aspx
|
|
473
|
+
* @readonly
|
|
474
|
+
* @type {string}
|
|
475
|
+
* @memberof PSTContact
|
|
476
|
+
*/
|
|
477
|
+
get companyMainPhoneNumber(): string;
|
|
478
|
+
/**
|
|
479
|
+
* Contains a list of names of children
|
|
480
|
+
* https://msdn.microsoft.com/en-us/library/office/cc839533.aspx
|
|
481
|
+
* @readonly
|
|
482
|
+
* @type {string}
|
|
483
|
+
* @memberof PSTContact
|
|
484
|
+
*/
|
|
485
|
+
get childrensNames(): string;
|
|
486
|
+
/**
|
|
487
|
+
* Contains the city for the recipient's home address.
|
|
488
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815582.aspx
|
|
489
|
+
* @readonly
|
|
490
|
+
* @type {string}
|
|
491
|
+
* @memberof PSTContact
|
|
492
|
+
*/
|
|
493
|
+
get homeAddressCity(): string;
|
|
494
|
+
/**
|
|
495
|
+
* Contains the county in a contact's address.
|
|
496
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842548.aspx
|
|
497
|
+
* @readonly
|
|
498
|
+
* @type {string}
|
|
499
|
+
* @memberof PSTContact
|
|
500
|
+
*/
|
|
501
|
+
get homeAddressCountry(): string;
|
|
502
|
+
/**
|
|
503
|
+
* Contains the postal code for the user's home address.
|
|
504
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815880.aspx
|
|
505
|
+
* @readonly
|
|
506
|
+
* @type {string}
|
|
507
|
+
* @memberof PSTContact
|
|
508
|
+
*/
|
|
509
|
+
get homeAddressPostalCode(): string;
|
|
510
|
+
/**
|
|
511
|
+
* Contains the state or province portion of a user's address.
|
|
512
|
+
* https://msdn.microsoft.com/en-us/library/office/cc839958.aspx
|
|
513
|
+
* @readonly
|
|
514
|
+
* @type {string}
|
|
515
|
+
* @memberof PSTContact
|
|
516
|
+
*/
|
|
517
|
+
get homeAddressStateOrProvince(): string;
|
|
518
|
+
/**
|
|
519
|
+
* Contains the street portion of a user's address.
|
|
520
|
+
* https://msdn.microsoft.com/en-us/library/office/cc841997.aspx
|
|
521
|
+
* @readonly
|
|
522
|
+
* @type {string}
|
|
523
|
+
* @memberof PSTContact
|
|
524
|
+
*/
|
|
525
|
+
get homeAddressStreet(): string;
|
|
526
|
+
/**
|
|
527
|
+
* Contains the post office box information for a user's address.
|
|
528
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842440.aspx
|
|
529
|
+
* @readonly
|
|
530
|
+
* @type {string}
|
|
531
|
+
* @memberof PSTContact
|
|
532
|
+
*/
|
|
533
|
+
get homeAddressPostOfficeBox(): string;
|
|
534
|
+
/**
|
|
535
|
+
* Contains the name of the mail user's other locality, such as the town or city.
|
|
536
|
+
* https://msdn.microsoft.com/en-us/library/office/cc765881.aspx
|
|
537
|
+
* @readonly
|
|
538
|
+
* @type {string}
|
|
539
|
+
* @memberof PSTContact
|
|
540
|
+
*/
|
|
541
|
+
get otherAddressCity(): string;
|
|
542
|
+
/**
|
|
543
|
+
* Contains the mail user's other country/region.
|
|
544
|
+
* https://msdn.microsoft.com/en-us/library/office/cc765814.aspx
|
|
545
|
+
* @readonly
|
|
546
|
+
* @type {string}
|
|
547
|
+
* @memberof PSTContact
|
|
548
|
+
*/
|
|
549
|
+
get otherAddressCountry(): string;
|
|
550
|
+
/**
|
|
551
|
+
* Contains the postal code for the mail user's other postal address.
|
|
552
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842261.aspx
|
|
553
|
+
* @readonly
|
|
554
|
+
* @type {string}
|
|
555
|
+
* @memberof PSTContact
|
|
556
|
+
*/
|
|
557
|
+
get otherAddressPostalCode(): string;
|
|
558
|
+
/**
|
|
559
|
+
* Contains the name of state or province used in the other address.
|
|
560
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815782.aspx
|
|
561
|
+
* @readonly
|
|
562
|
+
* @type {string}
|
|
563
|
+
* @memberof PSTContact
|
|
564
|
+
*/
|
|
565
|
+
get otherAddressStateOrProvince(): string;
|
|
566
|
+
/**
|
|
567
|
+
* Contains the mail user's other street address.
|
|
568
|
+
* https://msdn.microsoft.com/en-us/library/office/cc839546.aspx
|
|
569
|
+
* @readonly
|
|
570
|
+
* @type {string}
|
|
571
|
+
* @memberof PSTContact
|
|
572
|
+
*/
|
|
573
|
+
get otherAddressStreet(): string;
|
|
574
|
+
/**
|
|
575
|
+
* Contains the post office box for a contact's other address.
|
|
576
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842396.aspx
|
|
577
|
+
* @readonly
|
|
578
|
+
* @type {string}
|
|
579
|
+
* @memberof PSTContact
|
|
580
|
+
*/
|
|
581
|
+
get otherAddressPostOfficeBox(): string;
|
|
582
|
+
/**
|
|
583
|
+
* Specifies the name under which the contact is filed when displaying a list of contacts.
|
|
584
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842002.aspx
|
|
585
|
+
* @readonly
|
|
586
|
+
* @type {string}
|
|
587
|
+
* @memberof PSTContact
|
|
588
|
+
*/
|
|
589
|
+
get fileUnder(): string;
|
|
590
|
+
/**
|
|
591
|
+
* Specifies the complete address of the contact’s home address.
|
|
592
|
+
* https://msdn.microsoft.com/en-us/library/office/cc839539.aspx
|
|
593
|
+
* @readonly
|
|
594
|
+
* @type {string}
|
|
595
|
+
* @memberof PSTContact
|
|
596
|
+
*/
|
|
597
|
+
get homeAddress(): string;
|
|
598
|
+
/**
|
|
599
|
+
* Specifies the contact's complete work address.
|
|
600
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815905.aspx
|
|
601
|
+
* @readonly
|
|
602
|
+
* @type {string}
|
|
603
|
+
* @memberof PSTContact
|
|
604
|
+
*/
|
|
605
|
+
get workAddress(): string;
|
|
606
|
+
/**
|
|
607
|
+
* Specifies the complete address of the contact’s other address.
|
|
608
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815383.aspx
|
|
609
|
+
* @readonly
|
|
610
|
+
* @type {string}
|
|
611
|
+
* @memberof PSTContact
|
|
612
|
+
*/
|
|
613
|
+
get otherAddress(): string;
|
|
614
|
+
/**
|
|
615
|
+
* Specifies which physical address is the contact’s mailing address.
|
|
616
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815430.aspx
|
|
617
|
+
* @readonly
|
|
618
|
+
* @type {number}
|
|
619
|
+
* @memberof PSTContact
|
|
620
|
+
*/
|
|
621
|
+
get postalAddressId(): number;
|
|
622
|
+
/**
|
|
623
|
+
* Specifies the contact’s business Web page URL.
|
|
624
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842001.aspx
|
|
625
|
+
* @readonly
|
|
626
|
+
* @type {string}
|
|
627
|
+
* @memberof PSTContact
|
|
628
|
+
*/
|
|
629
|
+
get html(): string;
|
|
630
|
+
/**
|
|
631
|
+
* Specifies the street portion of the contact's work mailing address.
|
|
632
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815537.aspx
|
|
633
|
+
* @readonly
|
|
634
|
+
* @type {string}
|
|
635
|
+
* @memberof PSTContact
|
|
636
|
+
*/
|
|
637
|
+
get workAddressStreet(): string;
|
|
638
|
+
/**
|
|
639
|
+
* Specifies the city or locality portion of the contact's work address.
|
|
640
|
+
* https://msdn.microsoft.com/en-us/library/office/cc765923.aspx
|
|
641
|
+
* @readonly
|
|
642
|
+
* @type {string}
|
|
643
|
+
* @memberof PSTContact
|
|
644
|
+
*/
|
|
645
|
+
get workAddressCity(): string;
|
|
646
|
+
/**
|
|
647
|
+
* Specifies the state or province portion of the contact's work mailing address.
|
|
648
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842152.aspx
|
|
649
|
+
* @readonly
|
|
650
|
+
* @type {string}
|
|
651
|
+
* @memberof PSTContact
|
|
652
|
+
*/
|
|
653
|
+
get workAddressState(): string;
|
|
654
|
+
/**
|
|
655
|
+
* Specifies the postal code (ZIP code) portion of the contact's work address.
|
|
656
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842066.aspx
|
|
657
|
+
* @readonly
|
|
658
|
+
* @type {string}
|
|
659
|
+
* @memberof PSTContact
|
|
660
|
+
*/
|
|
661
|
+
get workAddressPostalCode(): string;
|
|
662
|
+
/**
|
|
663
|
+
* Specifies the country or region portion of the contact's work address.
|
|
664
|
+
* https://msdn.microsoft.com/en-us/library/office/cc765698.aspx
|
|
665
|
+
* @readonly
|
|
666
|
+
* @type {string}
|
|
667
|
+
* @memberof PSTContact
|
|
668
|
+
*/
|
|
669
|
+
get workAddressCountry(): string;
|
|
670
|
+
/**
|
|
671
|
+
* Specifies the post office box portion of the contact's work.
|
|
672
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815563.aspx
|
|
673
|
+
* @readonly
|
|
674
|
+
* @type {string}
|
|
675
|
+
* @memberof PSTContact
|
|
676
|
+
*/
|
|
677
|
+
get workAddressPostOfficeBox(): string;
|
|
678
|
+
/**
|
|
679
|
+
* Specifies the contact’s instant messaging address.
|
|
680
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815607.aspx
|
|
681
|
+
* @readonly
|
|
682
|
+
* @type {string}
|
|
683
|
+
* @memberof PSTContact
|
|
684
|
+
*/
|
|
685
|
+
get instantMessagingAddress(): string;
|
|
686
|
+
/**
|
|
687
|
+
* Specifies the user-readable display name for the first e-mail address.
|
|
688
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815460.aspx
|
|
689
|
+
* @readonly
|
|
690
|
+
* @type {string}
|
|
691
|
+
* @memberof PSTContact
|
|
692
|
+
*/
|
|
693
|
+
get email1DisplayName(): string;
|
|
694
|
+
/**
|
|
695
|
+
* Specifies the address type of the first e-mail address.
|
|
696
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815570.aspx
|
|
697
|
+
* @readonly
|
|
698
|
+
* @type {string}
|
|
699
|
+
* @memberof PSTContact
|
|
700
|
+
*/
|
|
701
|
+
get email1AddressType(): string;
|
|
702
|
+
/**
|
|
703
|
+
* Specifies the first e-mail address of the contact.
|
|
704
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842050.aspx
|
|
705
|
+
* @readonly
|
|
706
|
+
* @type {string}
|
|
707
|
+
* @memberof PSTContact
|
|
708
|
+
*/
|
|
709
|
+
get email1EmailAddress(): string;
|
|
710
|
+
/**
|
|
711
|
+
* Specifies the first display name that corresponds to the e-mail address that is specified for the contact.
|
|
712
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815564.aspx
|
|
713
|
+
* @readonly
|
|
714
|
+
* @type {string}
|
|
715
|
+
* @memberof PSTContact
|
|
716
|
+
*/
|
|
717
|
+
get email1OriginalDisplayName(): string;
|
|
718
|
+
/**
|
|
719
|
+
* Specifies the user-readable display name for the second e-mail address.
|
|
720
|
+
* https://msdn.microsoft.com/en-us/library/office/cc839675.aspx
|
|
721
|
+
* @readonly
|
|
722
|
+
* @type {string}
|
|
723
|
+
* @memberof PSTContact
|
|
724
|
+
*/
|
|
725
|
+
get email2DisplayName(): string;
|
|
726
|
+
/**
|
|
727
|
+
* Specifies the address type of the second e-mail address.
|
|
728
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815361.aspx
|
|
729
|
+
* @readonly
|
|
730
|
+
* @type {string}
|
|
731
|
+
* @memberof PSTContact
|
|
732
|
+
*/
|
|
733
|
+
get email2AddressType(): string;
|
|
734
|
+
/**
|
|
735
|
+
* Specifies the second e-mail address of the contact.
|
|
736
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842205.aspx
|
|
737
|
+
* @readonly
|
|
738
|
+
* @type {string}
|
|
739
|
+
* @memberof PSTContact
|
|
740
|
+
*/
|
|
741
|
+
get email2EmailAddress(): string;
|
|
742
|
+
/**
|
|
743
|
+
* Specifies the second display name that corresponds to the e-mail address specified for the contact.
|
|
744
|
+
* https://msdn.microsoft.com/en-us/library/office/cc765618.aspx
|
|
745
|
+
* @readonly
|
|
746
|
+
* @type {string}
|
|
747
|
+
* @memberof PSTContact
|
|
748
|
+
*/
|
|
749
|
+
get email2OriginalDisplayName(): string;
|
|
750
|
+
/**
|
|
751
|
+
* Specifies the user-readable display name for the third e-mail address.
|
|
752
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815669.aspx
|
|
753
|
+
* @readonly
|
|
754
|
+
* @type {string}
|
|
755
|
+
* @memberof PSTContact
|
|
756
|
+
*/
|
|
757
|
+
get email3DisplayName(): string;
|
|
758
|
+
/**
|
|
759
|
+
* Specifies the address type of the third e-mail address.
|
|
760
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842438.aspx
|
|
761
|
+
* @readonly
|
|
762
|
+
* @type {string}
|
|
763
|
+
* @memberof PSTContact
|
|
764
|
+
*/
|
|
765
|
+
get email3AddressType(): string;
|
|
766
|
+
/**
|
|
767
|
+
* Specifies the third e-mail address of the contact.
|
|
768
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815504.aspx
|
|
769
|
+
* @readonly
|
|
770
|
+
* @type {string}
|
|
771
|
+
* @memberof PSTContact
|
|
772
|
+
*/
|
|
773
|
+
get email3EmailAddress(): string;
|
|
774
|
+
/**
|
|
775
|
+
* Specifies the third display name that corresponds to the e-mail address that is specified for the contact.
|
|
776
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815833.aspx
|
|
777
|
+
* @readonly
|
|
778
|
+
* @type {string}
|
|
779
|
+
* @memberof PSTContact
|
|
780
|
+
*/
|
|
781
|
+
get email3OriginalDisplayName(): string;
|
|
782
|
+
/**
|
|
783
|
+
* Specifies the address type for the business fax address for a contact.
|
|
784
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842026.aspx
|
|
785
|
+
* @readonly
|
|
786
|
+
* @type {string}
|
|
787
|
+
* @memberof PSTContact
|
|
788
|
+
*/
|
|
789
|
+
get fax1AddressType(): string;
|
|
790
|
+
/**
|
|
791
|
+
* Specifies the e-mail address of the contact’s business fax.
|
|
792
|
+
* https://msdn.microsoft.com/en-us/library/office/cc765813.aspx
|
|
793
|
+
* @readonly
|
|
794
|
+
* @type {string}
|
|
795
|
+
* @memberof PSTContact
|
|
796
|
+
*/
|
|
797
|
+
get fax1EmailAddress(): string;
|
|
798
|
+
/**
|
|
799
|
+
* Specifies the original display name of the contact’s business fax address.
|
|
800
|
+
* https://msdn.microsoft.com/en-us/library/office/cc765694.aspx
|
|
801
|
+
* @readonly
|
|
802
|
+
* @type {string}
|
|
803
|
+
* @memberof PSTContact
|
|
804
|
+
*/
|
|
805
|
+
get fax1OriginalDisplayName(): string;
|
|
806
|
+
/**
|
|
807
|
+
* Specifies the address type for the contact’s home fax address.
|
|
808
|
+
* https://msdn.microsoft.com/en-us/library/office/cc839741.aspx
|
|
809
|
+
* @readonly
|
|
810
|
+
* @type {string}
|
|
811
|
+
* @memberof PSTContact
|
|
812
|
+
*/
|
|
813
|
+
get fax2AddressType(): string;
|
|
814
|
+
/**
|
|
815
|
+
* Specifies the e-mail address of the contact’s home fax address.
|
|
816
|
+
* https://msdn.microsoft.com/en-us/library/office/cc765668.aspx
|
|
817
|
+
* @readonly
|
|
818
|
+
* @type {string}
|
|
819
|
+
* @memberof PSTContact
|
|
820
|
+
*/
|
|
821
|
+
get fax2EmailAddress(): string;
|
|
822
|
+
/**
|
|
823
|
+
* Specifies the original display name of the contact’s home fax address.
|
|
824
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842101.aspx
|
|
825
|
+
* @readonly
|
|
826
|
+
* @type {string}
|
|
827
|
+
* @memberof PSTContact
|
|
828
|
+
*/
|
|
829
|
+
get fax2OriginalDisplayName(): string;
|
|
830
|
+
/**
|
|
831
|
+
* Specifies the address type for the other contact’s fax address.
|
|
832
|
+
* https://msdn.microsoft.com/en-us/library/office/cc839752.aspx
|
|
833
|
+
* @readonly
|
|
834
|
+
* @type {string}
|
|
835
|
+
* @memberof PSTContact
|
|
836
|
+
*/
|
|
837
|
+
get fax3AddressType(): string;
|
|
838
|
+
/**
|
|
839
|
+
* Specifies the email address of the contact’s other fax address.
|
|
840
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842217.aspx
|
|
841
|
+
* @readonly
|
|
842
|
+
* @type {string}
|
|
843
|
+
* @memberof PSTContact
|
|
844
|
+
*/
|
|
845
|
+
get fax3EmailAddress(): string;
|
|
846
|
+
/**
|
|
847
|
+
* Specifies the original display name of the contact’s other fax address.
|
|
848
|
+
* https://msdn.microsoft.com/en-us/library/office/cc765682.aspx
|
|
849
|
+
* @readonly
|
|
850
|
+
* @type {string}
|
|
851
|
+
* @memberof PSTContact
|
|
852
|
+
*/
|
|
853
|
+
get fax3OriginalDisplayName(): string;
|
|
854
|
+
/**
|
|
855
|
+
* Specifies a URL path from which a client can retrieve free/busy information for the contact as an iCal file, as specified in [MS-OXCICAL].
|
|
856
|
+
* https://msdn.microsoft.com/en-us/library/office/cc765766.aspx
|
|
857
|
+
* @readonly
|
|
858
|
+
* @type {string}
|
|
859
|
+
* @memberof PSTContact
|
|
860
|
+
*/
|
|
861
|
+
get freeBusyLocation(): string;
|
|
862
|
+
/**
|
|
863
|
+
* Contains the birthday of the contact.
|
|
864
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842301.aspx
|
|
865
|
+
* @readonly
|
|
866
|
+
* @type {Date}
|
|
867
|
+
* @memberof PSTContact
|
|
868
|
+
*/
|
|
869
|
+
get birthday(): Date | null;
|
|
870
|
+
/**
|
|
871
|
+
* Contains the date of a user's wedding anniversary.
|
|
872
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842132.aspx
|
|
873
|
+
* @readonly
|
|
874
|
+
* @type {Date}
|
|
875
|
+
* @memberof PSTContact
|
|
876
|
+
*/
|
|
877
|
+
get anniversary(): Date | null;
|
|
878
|
+
/**
|
|
879
|
+
* JSON stringify the object properties.
|
|
880
|
+
* @returns {string}
|
|
881
|
+
* @memberof PSTContact
|
|
882
|
+
*/
|
|
883
|
+
toJSON(): any;
|
|
884
|
+
}
|