pst-extractor 1.8.0 → 1.10.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.
Files changed (64) hide show
  1. package/dist/ColumnDescriptor.class.d.ts +26 -26
  2. package/dist/ColumnDescriptor.class.js +51 -48
  3. package/dist/DescriptorIndexNode.class.d.ts +25 -26
  4. package/dist/DescriptorIndexNode.class.js +53 -53
  5. package/dist/LZFu.class.d.ts +11 -12
  6. package/dist/LZFu.class.js +95 -95
  7. package/dist/NodeInfo.class.d.ts +33 -33
  8. package/dist/NodeInfo.class.js +52 -52
  9. package/dist/NodeMap.class.d.ts +35 -35
  10. package/dist/NodeMap.class.js +86 -83
  11. package/dist/OffsetIndexItem.class.d.ts +23 -24
  12. package/dist/OffsetIndexItem.class.js +45 -45
  13. package/dist/OutlookProperties.d.ts +275 -275
  14. package/dist/OutlookProperties.js +281 -281
  15. package/dist/PSTActivity.class.d.ts +103 -103
  16. package/dist/PSTActivity.class.js +144 -144
  17. package/dist/PSTAppointment.class.d.ts +270 -271
  18. package/dist/PSTAppointment.class.js +376 -376
  19. package/dist/PSTAttachment.class.d.ts +172 -172
  20. package/dist/PSTAttachment.class.js +317 -314
  21. package/dist/PSTContact.class.d.ts +884 -884
  22. package/dist/PSTContact.class.js +1227 -1227
  23. package/dist/PSTDescriptorItem.class.d.ts +45 -46
  24. package/dist/PSTDescriptorItem.class.js +99 -96
  25. package/dist/PSTFile.class.d.ts +215 -216
  26. package/dist/PSTFile.class.js +818 -792
  27. package/dist/PSTFolder.class.d.ts +129 -129
  28. package/dist/PSTFolder.class.js +318 -307
  29. package/dist/PSTMessage.class.d.ts +788 -789
  30. package/dist/PSTMessage.class.js +1321 -1318
  31. package/dist/PSTMessageStore.class.d.ts +13 -13
  32. package/dist/PSTMessageStore.class.js +17 -17
  33. package/dist/PSTNodeInputStream.class.d.ts +122 -123
  34. package/dist/PSTNodeInputStream.class.js +514 -488
  35. package/dist/PSTObject.class.d.ts +133 -134
  36. package/dist/PSTObject.class.js +326 -323
  37. package/dist/PSTRecipient.class.d.ts +65 -65
  38. package/dist/PSTRecipient.class.js +103 -103
  39. package/dist/PSTTable.class.d.ts +52 -52
  40. package/dist/PSTTable.class.js +175 -172
  41. package/dist/PSTTable7C.class.d.ts +45 -45
  42. package/dist/PSTTable7C.class.js +281 -278
  43. package/dist/PSTTableBC.class.d.ts +31 -31
  44. package/dist/PSTTableBC.class.js +111 -108
  45. package/dist/PSTTableItem.class.d.ts +47 -48
  46. package/dist/PSTTableItem.class.js +124 -121
  47. package/dist/PSTTask.class.d.ts +146 -146
  48. package/dist/PSTTask.class.js +205 -205
  49. package/dist/PSTUtil.class.d.ts +134 -135
  50. package/dist/PSTUtil.class.js +795 -790
  51. package/dist/RecurrencePattern.class.d.ts +49 -50
  52. package/dist/RecurrencePattern.class.js +120 -120
  53. package/dist/index.d.ts +6 -6
  54. package/dist/index.js +15 -15
  55. package/example/package.json +7 -7
  56. package/example/test-min.ts +31 -12
  57. package/example/{test-mem.ts → test.ts} +38 -30
  58. package/example/testdata/output.txt +278 -0
  59. package/example/testdata/outputBody.txt +3404 -0
  60. package/example/yarn.lock +112 -50
  61. package/junit.xml +36 -36
  62. package/package.json +28 -27
  63. package/readme.md +1 -3
  64. package/example/test-max.ts +0 -251
@@ -1,271 +1,270 @@
1
- /// <reference types="node" />
2
- import { DescriptorIndexNode } from './DescriptorIndexNode.class';
3
- import { PSTDescriptorItem } from './PSTDescriptorItem.class';
4
- import { PSTFile } from './PSTFile.class';
5
- import { PSTMessage } from './PSTMessage.class';
6
- import { PSTTableBC } from './PSTTableBC.class';
7
- export declare class PSTAppointment extends PSTMessage {
8
- constructor(pstFile: PSTFile, descriptorIndexNode: DescriptorIndexNode, table?: PSTTableBC, localDescriptorItems?: Map<number, PSTDescriptorItem>);
9
- /**
10
- * Specifies if a meeting request should be sent as an iCal message.
11
- * https://msdn.microsoft.com/en-us/library/office/cc839802.aspx
12
- * @readonly
13
- * @type {boolean}
14
- * @memberof PSTAppointment
15
- */
16
- get sendAsICAL(): boolean;
17
- /**
18
- * Represents the user’s availability for an appointment.
19
- * https://msdn.microsoft.com/en-us/library/office/cc841972.aspx
20
- * @readonly
21
- * @type {number}
22
- * @memberof PSTAppointment
23
- */
24
- get busyStatus(): number;
25
- /**
26
- * The user is busy.
27
- * https://msdn.microsoft.com/en-us/library/office/cc841972.aspx
28
- * @readonly
29
- * @type {boolean}
30
- * @memberof PSTAppointment
31
- */
32
- get showAsBusy(): boolean;
33
- /**
34
- * Represents the location of an appointment.
35
- * https://msdn.microsoft.com/en-us/library/office/cc842419.aspx
36
- * @readonly
37
- * @type {string}
38
- * @memberof PSTAppointment
39
- */
40
- get location(): string;
41
- /**
42
- * Represents the date and time when an appointment begins.
43
- * https://msdn.microsoft.com/en-us/library/office/cc839929.aspx
44
- * @readonly
45
- * @type {Date}
46
- * @memberof PSTAppointment
47
- */
48
- get startTime(): Date | null;
49
- /**
50
- * Represents the date and time that an appointment ends.
51
- * https://msdn.microsoft.com/en-us/library/office/cc815864.aspx
52
- * @readonly
53
- * @type {Date}
54
- * @memberof PSTAppointment
55
- */
56
- get endTime(): Date | null;
57
- /**
58
- * Represents the length of time, in minutes, when an appointment is scheduled.
59
- * https://msdn.microsoft.com/en-us/library/office/cc842287.aspx
60
- * @readonly
61
- * @type {number}
62
- * @memberof PSTAppointment
63
- */
64
- get duration(): number;
65
- /**
66
- * Specifies the color to use when displaying the calendar.
67
- * https://msdn.microsoft.com/en-us/library/office/cc842274.aspx
68
- * @readonly
69
- * @type {number}
70
- * @memberof PSTAppointment
71
- */
72
- get color(): number;
73
- /**
74
- * Specifies whether or not the event is all day.
75
- * https://msdn.microsoft.com/en-us/library/office/cc839901.aspx
76
- * @readonly
77
- * @type {boolean}
78
- * @memberof PSTAppointment
79
- */
80
- get subType(): boolean;
81
- /**
82
- * Specifies a bit field that describes the state of the object.
83
- * https://msdn.microsoft.com/en-us/library/office/cc765762.aspx
84
- * @readonly
85
- * @type {number}
86
- * @memberof PSTAppointment
87
- */
88
- get meetingStatus(): number;
89
- /**
90
- * Specifies the response status of an attendee.
91
- * https://msdn.microsoft.com/en-us/library/office/cc839923.aspx
92
- * @readonly
93
- * @type {number}
94
- * @memberof PSTAppointment
95
- */
96
- get responseStatus(): number;
97
- /**
98
- * Specifies whether an appointment message is recurrent.
99
- * https://msdn.microsoft.com/en-us/library/office/cc765772.aspx
100
- * @readonly
101
- * @type {boolean}
102
- * @memberof PSTAppointment
103
- */
104
- get isRecurring(): boolean;
105
- /**
106
- * Specifies the date and time within the recurrence pattern that the exception will replace.
107
- * https://msdn.microsoft.com/en-us/library/office/cc842450.aspx
108
- * @readonly
109
- * @type {Date}
110
- * @memberof PSTAppointment
111
- */
112
- get recurrenceBase(): Date | null;
113
- /**
114
- * Specifies the recurrence type of the recurring series.
115
- * https://msdn.microsoft.com/en-us/library/office/cc842135.aspx
116
- * @readonly
117
- * @type {number}
118
- * @memberof PSTAppointment
119
- */
120
- get recurrenceType(): number;
121
- /**
122
- * Specifies a description of the recurrence pattern of the calendar object.
123
- * https://msdn.microsoft.com/en-us/library/office/cc815733.aspx
124
- * @readonly
125
- * @type {string}
126
- * @memberof PSTAppointment
127
- */
128
- get recurrencePattern(): string;
129
- /**
130
- * Specifies the dates and times when a recurring series occurs by using one of the recurrence patterns and ranges that are specified in [MS-OXOCAL].
131
- * https://msdn.microsoft.com/en-us/library/office/cc842017.aspx
132
- * @readonly
133
- * @type {Buffer}
134
- * @memberof PSTAppointment
135
- */
136
- get recurrenceStructure(): Buffer | null;
137
- /**
138
- * Contains a stream that maps to the persisted format of a TZREG structure, which describes the time zone to be used for the start and end time of a recurring appointment or meeting request.
139
- * https://msdn.microsoft.com/en-us/library/office/cc815376.aspx
140
- * @readonly
141
- * @type {Buffer}
142
- * @memberof PSTAppointment
143
- */
144
- get timezone(): Buffer | null;
145
- /**
146
- * Specifies a list of all the attendees except for the organizer, including resources and unsendable attendees.
147
- * https://msdn.microsoft.com/en-us/library/office/cc815418.aspx
148
- * @readonly
149
- * @type {string}
150
- * @memberof PSTAppointment
151
- */
152
- get allAttendees(): string;
153
- /**
154
- * Contains a list of all the sendable attendees who are also required attendees.
155
- * https://msdn.microsoft.com/en-us/library/office/cc842502.aspx
156
- * @readonly
157
- * @type {string}
158
- * @memberof PSTAppointment
159
- */
160
- get toAttendees(): string;
161
- /**
162
- * Contains a list of all the sendable attendees who are also optional attendees.
163
- * https://msdn.microsoft.com/en-us/library/office/cc839636.aspx
164
- * @readonly
165
- * @type {string}
166
- * @memberof PSTAppointment
167
- */
168
- get ccAttendees(): string;
169
- /**
170
- * Specifies the sequence number of a Meeting object.
171
- * https://msdn.microsoft.com/en-us/library/office/cc765937.aspx
172
- * @readonly
173
- * @type {number}
174
- * @memberof PSTAppointment
175
- */
176
- get appointmentSequence(): number;
177
- /**
178
- * Is a hosted meeting?
179
- * https://msdn.microsoft.com/en-us/library/ee200872(v=exchg.80).aspx
180
- * @readonly
181
- * @type {boolean}
182
- * @memberof PSTAppointment
183
- */
184
- get isOnlineMeeting(): boolean;
185
- /**
186
- * Specifies the type of the meeting.
187
- * https://msdn.microsoft.com/en-us/library/ee158396(v=exchg.80).aspx
188
- * @readonly
189
- * @type {number}
190
- * @memberof PSTAppointment
191
- */
192
- get netMeetingType(): number;
193
- /**
194
- * Specifies the directory server to be used.
195
- * https://msdn.microsoft.com/en-us/library/ee201516(v=exchg.80).aspx
196
- * @readonly
197
- * @type {string}
198
- * @memberof PSTAppointment
199
- */
200
- get netMeetingServer(): string;
201
- /**
202
- * Specifies the email address of the organizer.
203
- * https://msdn.microsoft.com/en-us/library/ee203317(v=exchg.80).aspx
204
- * @readonly
205
- * @type {string}
206
- * @memberof PSTAppointment
207
- */
208
- get netMeetingOrganizerAlias(): string;
209
- /**
210
- * Specifies the document to be launched when the user joins the meeting.
211
- * https://msdn.microsoft.com/en-us/library/ee204395(v=exchg.80).aspx
212
- * @readonly
213
- * @type {string}
214
- * @memberof PSTAppointment
215
- */
216
- get netMeetingDocumentPathName(): string;
217
- /**
218
- * The PidLidNetShowUrl property ([MS-OXPROPS] section 2.175) specifies the URL to be launched when the user joins the meeting
219
- * https://msdn.microsoft.com/en-us/library/ee179451(v=exchg.80).aspx
220
- * @readonly
221
- * @type {string}
222
- * @memberof PSTAppointment
223
- */
224
- get netShowURL(): string;
225
- /**
226
- * Specifies the date and time at which the meeting-related object was sent.
227
- * https://msdn.microsoft.com/en-us/library/ee237112(v=exchg.80).aspx
228
- * @readonly
229
- * @type {Date}
230
- * @memberof PSTAppointment
231
- */
232
- get attendeeCriticalChange(): Date | null;
233
- /**
234
- * Indicates that this meeting response is a counter proposal.
235
- * https://msdn.microsoft.com/en-us/magazine/cc815846.aspx
236
- * @readonly
237
- * @type {boolean}
238
- * @memberof PSTAppointment
239
- */
240
- get appointmentCounterProposal(): boolean;
241
- /**
242
- * Indicates whether the user did not include any text in the body of the Meeting Response object.
243
- * https://msdn.microsoft.com/en-us/library/ee159822(v=exchg.80).aspx
244
- * @readonly
245
- * @type {boolean}
246
- * @memberof PSTAppointment
247
- */
248
- get isSilent(): boolean;
249
- /**
250
- * Identifies required attendees for the appointment or meeting.
251
- * https://msdn.microsoft.com/en-us/library/ee160700(v=exchg.80).aspx
252
- * @readonly
253
- * @type {string}
254
- * @memberof PSTAppointment
255
- */
256
- get requiredAttendees(): string;
257
- /**
258
- * Contains the Windows Locale ID of the end-user who created this message.
259
- * https://msdn.microsoft.com/en-us/library/ee201602(v=exchg.80).aspx
260
- * @readonly
261
- * @type {number}
262
- * @memberof PSTAppointment
263
- */
264
- get localeId(): number;
265
- /**
266
- * JSON stringify the object properties. Large fields (like body) aren't included.
267
- * @returns {string}
268
- * @memberof PSTAppointment
269
- */
270
- toJSON(): any;
271
- }
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 PSTAppointment extends PSTMessage {
7
+ constructor(pstFile: PSTFile, descriptorIndexNode: DescriptorIndexNode, table?: PSTTableBC, localDescriptorItems?: Map<number, PSTDescriptorItem>);
8
+ /**
9
+ * Specifies if a meeting request should be sent as an iCal message.
10
+ * https://msdn.microsoft.com/en-us/library/office/cc839802.aspx
11
+ * @readonly
12
+ * @type {boolean}
13
+ * @memberof PSTAppointment
14
+ */
15
+ get sendAsICAL(): boolean;
16
+ /**
17
+ * Represents the user’s availability for an appointment.
18
+ * https://msdn.microsoft.com/en-us/library/office/cc841972.aspx
19
+ * @readonly
20
+ * @type {number}
21
+ * @memberof PSTAppointment
22
+ */
23
+ get busyStatus(): number;
24
+ /**
25
+ * The user is busy.
26
+ * https://msdn.microsoft.com/en-us/library/office/cc841972.aspx
27
+ * @readonly
28
+ * @type {boolean}
29
+ * @memberof PSTAppointment
30
+ */
31
+ get showAsBusy(): boolean;
32
+ /**
33
+ * Represents the location of an appointment.
34
+ * https://msdn.microsoft.com/en-us/library/office/cc842419.aspx
35
+ * @readonly
36
+ * @type {string}
37
+ * @memberof PSTAppointment
38
+ */
39
+ get location(): string;
40
+ /**
41
+ * Represents the date and time when an appointment begins.
42
+ * https://msdn.microsoft.com/en-us/library/office/cc839929.aspx
43
+ * @readonly
44
+ * @type {Date}
45
+ * @memberof PSTAppointment
46
+ */
47
+ get startTime(): Date | null;
48
+ /**
49
+ * Represents the date and time that an appointment ends.
50
+ * https://msdn.microsoft.com/en-us/library/office/cc815864.aspx
51
+ * @readonly
52
+ * @type {Date}
53
+ * @memberof PSTAppointment
54
+ */
55
+ get endTime(): Date | null;
56
+ /**
57
+ * Represents the length of time, in minutes, when an appointment is scheduled.
58
+ * https://msdn.microsoft.com/en-us/library/office/cc842287.aspx
59
+ * @readonly
60
+ * @type {number}
61
+ * @memberof PSTAppointment
62
+ */
63
+ get duration(): number;
64
+ /**
65
+ * Specifies the color to use when displaying the calendar.
66
+ * https://msdn.microsoft.com/en-us/library/office/cc842274.aspx
67
+ * @readonly
68
+ * @type {number}
69
+ * @memberof PSTAppointment
70
+ */
71
+ get color(): number;
72
+ /**
73
+ * Specifies whether or not the event is all day.
74
+ * https://msdn.microsoft.com/en-us/library/office/cc839901.aspx
75
+ * @readonly
76
+ * @type {boolean}
77
+ * @memberof PSTAppointment
78
+ */
79
+ get subType(): boolean;
80
+ /**
81
+ * Specifies a bit field that describes the state of the object.
82
+ * https://msdn.microsoft.com/en-us/library/office/cc765762.aspx
83
+ * @readonly
84
+ * @type {number}
85
+ * @memberof PSTAppointment
86
+ */
87
+ get meetingStatus(): number;
88
+ /**
89
+ * Specifies the response status of an attendee.
90
+ * https://msdn.microsoft.com/en-us/library/office/cc839923.aspx
91
+ * @readonly
92
+ * @type {number}
93
+ * @memberof PSTAppointment
94
+ */
95
+ get responseStatus(): number;
96
+ /**
97
+ * Specifies whether an appointment message is recurrent.
98
+ * https://msdn.microsoft.com/en-us/library/office/cc765772.aspx
99
+ * @readonly
100
+ * @type {boolean}
101
+ * @memberof PSTAppointment
102
+ */
103
+ get isRecurring(): boolean;
104
+ /**
105
+ * Specifies the date and time within the recurrence pattern that the exception will replace.
106
+ * https://msdn.microsoft.com/en-us/library/office/cc842450.aspx
107
+ * @readonly
108
+ * @type {Date}
109
+ * @memberof PSTAppointment
110
+ */
111
+ get recurrenceBase(): Date | null;
112
+ /**
113
+ * Specifies the recurrence type of the recurring series.
114
+ * https://msdn.microsoft.com/en-us/library/office/cc842135.aspx
115
+ * @readonly
116
+ * @type {number}
117
+ * @memberof PSTAppointment
118
+ */
119
+ get recurrenceType(): number;
120
+ /**
121
+ * Specifies a description of the recurrence pattern of the calendar object.
122
+ * https://msdn.microsoft.com/en-us/library/office/cc815733.aspx
123
+ * @readonly
124
+ * @type {string}
125
+ * @memberof PSTAppointment
126
+ */
127
+ get recurrencePattern(): string;
128
+ /**
129
+ * Specifies the dates and times when a recurring series occurs by using one of the recurrence patterns and ranges that are specified in [MS-OXOCAL].
130
+ * https://msdn.microsoft.com/en-us/library/office/cc842017.aspx
131
+ * @readonly
132
+ * @type {Buffer}
133
+ * @memberof PSTAppointment
134
+ */
135
+ get recurrenceStructure(): Buffer | null;
136
+ /**
137
+ * Contains a stream that maps to the persisted format of a TZREG structure, which describes the time zone to be used for the start and end time of a recurring appointment or meeting request.
138
+ * https://msdn.microsoft.com/en-us/library/office/cc815376.aspx
139
+ * @readonly
140
+ * @type {Buffer}
141
+ * @memberof PSTAppointment
142
+ */
143
+ get timezone(): Buffer | null;
144
+ /**
145
+ * Specifies a list of all the attendees except for the organizer, including resources and unsendable attendees.
146
+ * https://msdn.microsoft.com/en-us/library/office/cc815418.aspx
147
+ * @readonly
148
+ * @type {string}
149
+ * @memberof PSTAppointment
150
+ */
151
+ get allAttendees(): string;
152
+ /**
153
+ * Contains a list of all the sendable attendees who are also required attendees.
154
+ * https://msdn.microsoft.com/en-us/library/office/cc842502.aspx
155
+ * @readonly
156
+ * @type {string}
157
+ * @memberof PSTAppointment
158
+ */
159
+ get toAttendees(): string;
160
+ /**
161
+ * Contains a list of all the sendable attendees who are also optional attendees.
162
+ * https://msdn.microsoft.com/en-us/library/office/cc839636.aspx
163
+ * @readonly
164
+ * @type {string}
165
+ * @memberof PSTAppointment
166
+ */
167
+ get ccAttendees(): string;
168
+ /**
169
+ * Specifies the sequence number of a Meeting object.
170
+ * https://msdn.microsoft.com/en-us/library/office/cc765937.aspx
171
+ * @readonly
172
+ * @type {number}
173
+ * @memberof PSTAppointment
174
+ */
175
+ get appointmentSequence(): number;
176
+ /**
177
+ * Is a hosted meeting?
178
+ * https://msdn.microsoft.com/en-us/library/ee200872(v=exchg.80).aspx
179
+ * @readonly
180
+ * @type {boolean}
181
+ * @memberof PSTAppointment
182
+ */
183
+ get isOnlineMeeting(): boolean;
184
+ /**
185
+ * Specifies the type of the meeting.
186
+ * https://msdn.microsoft.com/en-us/library/ee158396(v=exchg.80).aspx
187
+ * @readonly
188
+ * @type {number}
189
+ * @memberof PSTAppointment
190
+ */
191
+ get netMeetingType(): number;
192
+ /**
193
+ * Specifies the directory server to be used.
194
+ * https://msdn.microsoft.com/en-us/library/ee201516(v=exchg.80).aspx
195
+ * @readonly
196
+ * @type {string}
197
+ * @memberof PSTAppointment
198
+ */
199
+ get netMeetingServer(): string;
200
+ /**
201
+ * Specifies the email address of the organizer.
202
+ * https://msdn.microsoft.com/en-us/library/ee203317(v=exchg.80).aspx
203
+ * @readonly
204
+ * @type {string}
205
+ * @memberof PSTAppointment
206
+ */
207
+ get netMeetingOrganizerAlias(): string;
208
+ /**
209
+ * Specifies the document to be launched when the user joins the meeting.
210
+ * https://msdn.microsoft.com/en-us/library/ee204395(v=exchg.80).aspx
211
+ * @readonly
212
+ * @type {string}
213
+ * @memberof PSTAppointment
214
+ */
215
+ get netMeetingDocumentPathName(): string;
216
+ /**
217
+ * The PidLidNetShowUrl property ([MS-OXPROPS] section 2.175) specifies the URL to be launched when the user joins the meeting
218
+ * https://msdn.microsoft.com/en-us/library/ee179451(v=exchg.80).aspx
219
+ * @readonly
220
+ * @type {string}
221
+ * @memberof PSTAppointment
222
+ */
223
+ get netShowURL(): string;
224
+ /**
225
+ * Specifies the date and time at which the meeting-related object was sent.
226
+ * https://msdn.microsoft.com/en-us/library/ee237112(v=exchg.80).aspx
227
+ * @readonly
228
+ * @type {Date}
229
+ * @memberof PSTAppointment
230
+ */
231
+ get attendeeCriticalChange(): Date | null;
232
+ /**
233
+ * Indicates that this meeting response is a counter proposal.
234
+ * https://msdn.microsoft.com/en-us/magazine/cc815846.aspx
235
+ * @readonly
236
+ * @type {boolean}
237
+ * @memberof PSTAppointment
238
+ */
239
+ get appointmentCounterProposal(): boolean;
240
+ /**
241
+ * Indicates whether the user did not include any text in the body of the Meeting Response object.
242
+ * https://msdn.microsoft.com/en-us/library/ee159822(v=exchg.80).aspx
243
+ * @readonly
244
+ * @type {boolean}
245
+ * @memberof PSTAppointment
246
+ */
247
+ get isSilent(): boolean;
248
+ /**
249
+ * Identifies required attendees for the appointment or meeting.
250
+ * https://msdn.microsoft.com/en-us/library/ee160700(v=exchg.80).aspx
251
+ * @readonly
252
+ * @type {string}
253
+ * @memberof PSTAppointment
254
+ */
255
+ get requiredAttendees(): string;
256
+ /**
257
+ * Contains the Windows Locale ID of the end-user who created this message.
258
+ * https://msdn.microsoft.com/en-us/library/ee201602(v=exchg.80).aspx
259
+ * @readonly
260
+ * @type {number}
261
+ * @memberof PSTAppointment
262
+ */
263
+ get localeId(): number;
264
+ /**
265
+ * JSON stringify the object properties. Large fields (like body) aren't included.
266
+ * @returns {string}
267
+ * @memberof PSTAppointment
268
+ */
269
+ toJSON(): any;
270
+ }