We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54f7abd commit e031050Copy full SHA for e031050
specification/watcher/_types/Actions.ts
@@ -237,15 +237,15 @@ export class DataEmailAttachment {
237
238
export class Email {
239
id?: Id
240
- bcc?: string[]
+ bcc?: string | string[]
241
body?: EmailBody
242
- cc?: string[]
+ cc?: string | string[]
243
from?: string
244
priority?: EmailPriority
245
- reply_to?: string[]
+ reply_to?: string | string[]
246
sent_date?: DateTime
247
subject: string
248
- to: string[]
+ to: string | string[]
249
attachments?: Dictionary<string, EmailAttachmentContainer>
250
}
251
0 commit comments