You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/model/calendar-dto.ts
+39-1Lines changed: 39 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -143,6 +143,16 @@ export class CalendarDto {
143
143
name: "transparency",
144
144
baseName: "transparency",
145
145
type: "string",
146
+
},
147
+
{
148
+
name: "_class",
149
+
baseName: "class",
150
+
type: "string",
151
+
},
152
+
{
153
+
name: "microsoftImportance",
154
+
baseName: "microsoftImportance",
155
+
type: "string",
146
156
}];
147
157
148
158
/**
@@ -240,6 +250,14 @@ export class CalendarDto {
240
250
* Specifies whether or not this appointment is intended to be visible in availability searches. Enum, available values: NotDefined, Transparent, Opaque
241
251
*/
242
252
publictransparency: string;
253
+
/**
254
+
* Defines the access classification for the calendar. Enum, available values: Public, Private, Confidential, NotDefined
255
+
*/
256
+
public_class: string;
257
+
/**
258
+
* Specifies the importance of a calendar object. Enum, available values: Low, Normal, High, NotDefined
259
+
*/
260
+
publicmicrosoftImportance: string;
243
261
244
262
/**
245
263
* iCalendar document representation.
@@ -265,6 +283,8 @@ export class CalendarDto {
265
283
* @param status Defines the overall status or confirmation for the calendar document. Enum, available values: NotDefined, Cancelled, Tentative, Confirmed
266
284
* @param summary Summary.
267
285
* @param transparency Specifies whether or not this appointment is intended to be visible in availability searches. Enum, available values: NotDefined, Transparent, Opaque
286
+
* @param _class Defines the access classification for the calendar. Enum, available values: Public, Private, Confidential, NotDefined
287
+
* @param microsoftImportance Specifies the importance of a calendar object. Enum, available values: Low, Normal, High, NotDefined
268
288
*/
269
289
publicconstructor(
270
290
@@ -289,7 +309,9 @@ export class CalendarDto {
289
309
startTimeZone?: string,
290
310
status?: string,
291
311
summary?: string,
292
-
transparency?: string
312
+
transparency?: string,
313
+
_class?: string,
314
+
microsoftImportance?: string
293
315
){
294
316
295
317
this.attachments=attachments;
@@ -314,6 +336,8 @@ export class CalendarDto {
314
336
this.status=status;
315
337
this.summary=summary;
316
338
this.transparency=transparency;
339
+
this._class=_class;
340
+
this.microsoftImportance=microsoftImportance;
317
341
318
342
}
319
343
}
@@ -488,5 +512,19 @@ export class CalendarDtoBuilder {
488
512
this.model.transparency=transparency;
489
513
returnthis;
490
514
}
515
+
/**
516
+
* Defines the access classification for the calendar. Enum, available values: Public, Private, Confidential, NotDefined
517
+
*/
518
+
public_class(_class: string): CalendarDtoBuilder{
519
+
this.model._class=_class;
520
+
returnthis;
521
+
}
522
+
/**
523
+
* Specifies the importance of a calendar object. Enum, available values: Low, Normal, High, NotDefined
Copy file name to clipboardExpand all lines: src/model/client-message-fetch-request.ts
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -54,7 +54,7 @@ export class ClientMessageFetchRequest {
54
54
publicaccountStorageFolder: string;
55
55
56
56
/**
57
-
* MailMessageBase type. Using this property you can fetch message in different formats (as EmailDto, MapiMessageDto or a file represented as Base64 string). Enum, available values: Dto, Mapi, Base64
57
+
* MailMessageBase type. Using this property you can fetch message in different formats (as EmailDto, MapiMessageDto or a file represented as Base64 string). Enum, available values: Dto, Mapi, Base64
58
58
*/
59
59
publictype: string;
60
60
@@ -70,7 +70,7 @@ export class ClientMessageFetchRequest {
70
70
* @param folder Account folder to fetch from (should be specified for some protocols such as IMAP)
71
71
* @param storage Storage name where account file located.
72
72
* @param accountStorageFolder Folder in storage where account file located.
73
-
* @param type MailMessageBase type. Using this property you can fetch message in different formats (as EmailDto, MapiMessageDto or a file represented as Base64 string). Enum, available values: Dto, Mapi, Base64
73
+
* @param type MailMessageBase type. Using this property you can fetch message in different formats (as EmailDto, MapiMessageDto or a file represented as Base64 string). Enum, available values: Dto, Mapi, Base64
74
74
* @param format Base64 data format. Used only if type is set to Base64. Enum, available values: Eml, Msg, MsgUnicode, Mhtml, Html, Tnef, Oft
Copy file name to clipboardExpand all lines: src/model/client-message-list-request.ts
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -59,7 +59,7 @@ export class ClientMessageListRequest {
59
59
publicrecursive: boolean;
60
60
61
61
/**
62
-
* MailMessageBase type. Using this property you can get messages in different formats (as EmailDto, MapiMessageDto or a file represented as Base64 string). Enum, available values: Dto, Mapi, Base64
62
+
* MailMessageBase type. Using this property you can get messages in different formats (as EmailDto, MapiMessageDto or a file represented as Base64 string). Enum, available values: Dto, Mapi, Base64
63
63
*/
64
64
publictype: string;
65
65
@@ -76,7 +76,7 @@ export class ClientMessageListRequest {
76
76
* @param storage Storage name where account file located
77
77
* @param accountStorageFolder Folder in storage where account file located
78
78
* @param recursive Specifies that should message be searched in subfolders recursively
79
-
* @param type MailMessageBase type. Using this property you can get messages in different formats (as EmailDto, MapiMessageDto or a file represented as Base64 string). Enum, available values: Dto, Mapi, Base64
79
+
* @param type MailMessageBase type. Using this property you can get messages in different formats (as EmailDto, MapiMessageDto or a file represented as Base64 string). Enum, available values: Dto, Mapi, Base64
80
80
* @param format Base64 data format. Used only if type is set to Base64. Enum, available values: Eml, Msg, MsgUnicode, Mhtml, Html, Tnef, Oft
0 commit comments