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
**folder** | **string** | Specifies account folder to get thread from (required for some account types, such as EWS) | [optional][default to undefined]
7
+
**folderId** | **string** | Specifies account folder to get thread from (required for some account types, such as EWS). Use folder Id from ListEmailFolders (MailServerFolder.Id). For IMAP folder Id is always same as folder name. | [optional][default to undefined]
Copy file name to clipboardExpand all lines: doc/EmailApi.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2035,7 +2035,7 @@ new GetEmailThreadRequest(
2035
2035
threadId,
2036
2036
firstAccount,
2037
2037
secondAccount=secondAccount,
2038
-
folder=folder,
2038
+
folderId=folderId,
2039
2039
storage=storage,
2040
2040
storageFolder=storageFolder)
2041
2041
```
@@ -2045,7 +2045,7 @@ Name | Type | Description | Notes
2045
2045
**threadId** | **string**| Thread identifier |
2046
2046
**firstAccount** | **string**| Email account |
2047
2047
**secondAccount** | **string**| Additional email account (for example, firstAccount could be IMAP, and second one could be SMTP) | [optional]
2048
-
**folder** | **string**| Specifies account folder to get thread from (required for some account types, such as EWS) | [optional]
2048
+
**folderId** | **string**| Specifies account folder to get thread from (required for some account types, such as EWS). Use folder Id from ListEmailFolders (MailServerFolder.Id). For IMAP folder Id is always same as folder name. | [optional]
2049
2049
**storage** | **string**| Storage name where account file(s) located | [optional]
2050
2050
**storageFolder** | **string**| Folder in storage where account file(s) located | [optional]
2051
2051
@@ -2377,7 +2377,7 @@ Get message threads from folder. All messages are partly fetched (without email
2377
2377
### Request Parameters
2378
2378
```typescript
2379
2379
newListEmailThreadsRequest(
2380
-
folder,
2380
+
folderId,
2381
2381
firstAccount,
2382
2382
secondAccount=secondAccount,
2383
2383
storage=storage,
@@ -2388,7 +2388,7 @@ new ListEmailThreadsRequest(
**folder** | **string**| A folder in email account |
2391
+
**folderId** | **string**| A folder id in email account. Use folder Id from ListEmailFolders (MailServerFolder.Id). For IMAP folder Id is always same as folder name. |
2392
2392
**firstAccount** | **string**| Email account |
2393
2393
**secondAccount** | **string**| Additional email account (for example, firstAccount could be IMAP, and second one could be SMTP) | [optional]
2394
2394
**storage** | **string**| Storage name where account file(s) located | [optional]
[[Back to top]](#)[[Back to API list]](README.md#documentation-for-api-endpoints)[[Back to Model list]](README.md#documentation-for-models)[[Back to README]](README.md)
**isRead** | **boolean** | Read flag to set. \"true\" by default | [default to undefined]
8
-
**folder** | **string** | Specifies account folder to get thread from (required for some account types, such as EWS) | [optional][default to undefined]
8
+
**folderId** | **string** | Specifies account folder to get thread from (required for some account types, such as EWS). Use folder Id from ListEmailFolders (MailServerFolder.Id). For IMAP folder Id is always same as folder name. | [optional][default to undefined]
Copy file name to clipboardExpand all lines: doc/MailAddress.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,7 @@ Name | Type | Description | Notes
7
7
**displayName** | **string** | Display name | [optional][default to undefined]
8
8
**address** | **string** | Address | [optional][default to undefined]
9
9
**participationStatus** | **string** | Identifies the participation status for the calendar user. Enum, available values: NeedsAction, Accepted, Declined, Tentative, Delegated | [default to undefined]
10
+
**originalAddressString** | **string** | The original e-mail address string | [optional][default to undefined]
**destinationFolder** | **string** | Email account folder to move thread to | [optional][default to undefined]
7
+
**destinationFolderId** | **string** | Email account folder id to move thread to. Use folder Id from ListEmailFolders (MailServerFolder.Id). For IMAP folder Id is always same as folder name. | [optional][default to undefined]
Copy file name to clipboardExpand all lines: src/model/model.ts
+49-23Lines changed: 49 additions & 23 deletions
Original file line number
Diff line number
Diff line change
@@ -3001,6 +3001,11 @@ export class EmailAddress {
3001
3001
name: "address",
3002
3002
baseName: "address",
3003
3003
type: "string",
3004
+
},
3005
+
{
3006
+
name: "originalAddressString",
3007
+
baseName: "originalAddressString",
3008
+
type: "string",
3004
3009
}];
3005
3010
3006
3011
/**
@@ -3035,6 +3040,11 @@ export class EmailAddress {
3035
3040
*/
3036
3041
publicaddress: string;
3037
3042
3043
+
/**
3044
+
* The original e-mail address string
3045
+
*/
3046
+
publicoriginalAddressString: string;
3047
+
3038
3048
3039
3049
/**
3040
3050
* Email address.
@@ -3043,19 +3053,22 @@ export class EmailAddress {
3043
3053
* @param preferred Defines whether email address is preferred.
3044
3054
* @param routingType A routing type for an email.
3045
3055
* @param address Email address.
3056
+
* @param originalAddressString The original e-mail address string
3046
3057
*/
3047
3058
publicconstructor(
3048
3059
category?: EnumWithCustomOfEmailAddressCategory,
3049
3060
displayName?: string,
3050
3061
preferred?: boolean,
3051
3062
routingType?: string,
3052
-
address?: string){
3063
+
address?: string,
3064
+
originalAddressString?: string){
3053
3065
3054
3066
this.category=category;
3055
3067
this.displayName=displayName;
3056
3068
this.preferred=preferred;
3057
3069
this.routingType=routingType;
3058
3070
this.address=address;
3071
+
this.originalAddressString=originalAddressString;
3059
3072
}
3060
3073
}
3061
3074
@@ -5340,6 +5353,11 @@ export class MailAddress {
5340
5353
name: "participationStatus",
5341
5354
baseName: "participationStatus",
5342
5355
type: "string",
5356
+
},
5357
+
{
5358
+
name: "originalAddressString",
5359
+
baseName: "originalAddressString",
5360
+
type: "string",
5343
5361
}];
5344
5362
5345
5363
/**
@@ -5364,21 +5382,29 @@ export class MailAddress {
5364
5382
*/
5365
5383
publicparticipationStatus: string;
5366
5384
5385
+
/**
5386
+
* The original e-mail address string
5387
+
*/
5388
+
publicoriginalAddressString: string;
5389
+
5367
5390
5368
5391
/**
5369
5392
* Represents the address of a message.
5370
5393
* @param displayName Display name
5371
5394
* @param address Address
5372
5395
* @param participationStatus Identifies the participation status for the calendar user. Enum, available values: NeedsAction, Accepted, Declined, Tentative, Delegated
5396
+
* @param originalAddressString The original e-mail address string
5373
5397
*/
5374
5398
publicconstructor(
5375
5399
displayName?: string,
5376
5400
address?: string,
5377
-
participationStatus?: string){
5401
+
participationStatus?: string,
5402
+
originalAddressString?: string){
5378
5403
5379
5404
this.displayName=displayName;
5380
5405
this.address=address;
5381
5406
this.participationStatus=participationStatus;
5407
+
this.originalAddressString=originalAddressString;
5382
5408
}
5383
5409
}
5384
5410
@@ -7325,8 +7351,8 @@ export class DeleteEmailThreadAccountRq extends AccountBaseRequest {
@@ -7338,28 +7364,28 @@ export class DeleteEmailThreadAccountRq extends AccountBaseRequest {
7338
7364
}
7339
7365
7340
7366
/**
7341
-
* Specifies account folder to get thread from (required for some account types, such as EWS)
7367
+
* Specifies account folder to get thread from (required for some account types, such as EWS). Use folder Id from ListEmailFolders (MailServerFolder.Id). For IMAP folder Id is always same as folder name.
7342
7368
*/
7343
-
publicfolder: string;
7369
+
publicfolderId: string;
7344
7370
7345
7371
7346
7372
/**
7347
7373
* Delete thread request
7348
7374
* @param firstAccount First account storage file name
7349
7375
* @param secondAccount Additional email account (for example, FirstAccount could be IMAP, and second one could be SMTP)
7350
7376
* @param storageFolder Storage folder location of account files
7351
-
* @paramfolder Specifies account folder to get thread from (required for some account types, such as EWS)
7377
+
* @paramfolderId Specifies account folder to get thread from (required for some account types, such as EWS). Use folder Id from ListEmailFolders (MailServerFolder.Id). For IMAP folder Id is always same as folder name.
7352
7378
*/
7353
7379
publicconstructor(
7354
7380
firstAccount?: string,
7355
7381
secondAccount?: string,
7356
7382
storageFolder?: StorageFolderLocation,
7357
-
folder?: string){
7383
+
folderId?: string){
7358
7384
super();
7359
7385
this.firstAccount=firstAccount;
7360
7386
this.secondAccount=secondAccount;
7361
7387
this.storageFolder=storageFolder;
7362
-
this.folder=folder;
7388
+
this.folderId=folderId;
7363
7389
}
7364
7390
}
7365
7391
@@ -7861,8 +7887,8 @@ export class EmailThreadReadFlagRq extends AccountBaseRequest {
7861
7887
type: "boolean",
7862
7888
},
7863
7889
{
7864
-
name: "folder",
7865
-
baseName: "folder",
7890
+
name: "folderId",
7891
+
baseName: "folderId",
7866
7892
type: "string",
7867
7893
}];
7868
7894
@@ -7879,9 +7905,9 @@ export class EmailThreadReadFlagRq extends AccountBaseRequest {
7879
7905
publicisRead: boolean;
7880
7906
7881
7907
/**
7882
-
* Specifies account folder to get thread from (required for some account types, such as EWS)
7908
+
* Specifies account folder to get thread from (required for some account types, such as EWS). Use folder Id from ListEmailFolders (MailServerFolder.Id). For IMAP folder Id is always same as folder name.
7883
7909
*/
7884
-
publicfolder: string;
7910
+
publicfolderId: string;
7885
7911
7886
7912
7887
7913
/**
@@ -7890,20 +7916,20 @@ export class EmailThreadReadFlagRq extends AccountBaseRequest {
7890
7916
* @param secondAccount Additional email account (for example, FirstAccount could be IMAP, and second one could be SMTP)
7891
7917
* @param storageFolder Storage folder location of account files
7892
7918
* @param isRead Read flag to set. \"true\" by default
7893
-
* @paramfolder Specifies account folder to get thread from (required for some account types, such as EWS)
7919
+
* @paramfolderId Specifies account folder to get thread from (required for some account types, such as EWS). Use folder Id from ListEmailFolders (MailServerFolder.Id). For IMAP folder Id is always same as folder name.
7894
7920
*/
7895
7921
publicconstructor(
7896
7922
firstAccount?: string,
7897
7923
secondAccount?: string,
7898
7924
storageFolder?: StorageFolderLocation,
7899
7925
isRead?: boolean,
7900
-
folder?: string){
7926
+
folderId?: string){
7901
7927
super();
7902
7928
this.firstAccount=firstAccount;
7903
7929
this.secondAccount=secondAccount;
7904
7930
this.storageFolder=storageFolder;
7905
7931
this.isRead=isRead;
7906
-
this.folder=folder;
7932
+
this.folderId=folderId;
7907
7933
}
7908
7934
}
7909
7935
@@ -8270,8 +8296,8 @@ export class MoveEmailThreadRq extends AccountBaseRequest {
@@ -8283,28 +8309,28 @@ export class MoveEmailThreadRq extends AccountBaseRequest {
8283
8309
}
8284
8310
8285
8311
/**
8286
-
* Email account folder to move thread to
8312
+
* Email account folder id to move thread to. Use folder Id from ListEmailFolders (MailServerFolder.Id). For IMAP folder Id is always same as folder name.
8287
8313
*/
8288
-
publicdestinationFolder: string;
8314
+
publicdestinationFolderId: string;
8289
8315
8290
8316
8291
8317
/**
8292
8318
* Email thread move request
8293
8319
* @param firstAccount First account storage file name
8294
8320
* @param secondAccount Additional email account (for example, FirstAccount could be IMAP, and second one could be SMTP)
8295
8321
* @param storageFolder Storage folder location of account files
8296
-
* @paramdestinationFolder Email account folder to move thread to
8322
+
* @paramdestinationFolderId Email account folder id to move thread to. Use folder Id from ListEmailFolders (MailServerFolder.Id). For IMAP folder Id is always same as folder name.
0 commit comments