Scripting API / core/EmailApi / External
External
Type Aliases
Exclude
Exclude<
T,U> =TextendsU?never:T
Exclude from T those types that are assignable to U
Type Parameters
| Type Parameter |
|---|
T |
U |
Omit
Construct a type with the properties of T except for those in type K.
Type Parameters
| Type Parameter |
|---|
T |
K extends keyof any |
Pick
Pick<
T,K> ={ [P in K]: T[P] }
From T, pick a set of properties whose keys are in the union K
Type Parameters
| Type Parameter |
|---|
T |
K extends keyof T |
SendEmail
SendEmail =
object
Properties
WorkerSendEmailOptions
WorkerSendEmailOptions =
Omit<SendEmail,"attachments"> &object
Type Declaration
| Name | Type | Description |
|---|---|---|
charts? |
string[] |
Script IDs of charts to include in the email as .png attachments (limit 10). Only visual charts (i.e. non-tables) can be included as attachments. In Inspections, the script IDs must refer to charts in the current sub-inspection. In Dashboards, the script IDs can refer to any visual chart. |