/** * Microsoft Outlook Node - Version 1 * Discriminator: resource=draft, operation=get */ interface Credentials { microsoftOutlookOAuth2Api: CredentialReference; } /** Get a single draft */ export type MicrosoftOutlookV1DraftGetParams = { resource: 'draft'; operation: 'get'; /** * Message ID */ messageId?: string | Expression | PlaceholderValue; /** * Additional Fields * @default {} */ additionalFields?: { /** Prefix for name of the binary property to which to write the attachments. An index starting with 0 will be added. So if name is "attachment_" the first attachment is saved to "attachment_0" * @default attachment_ */ dataPropertyAttachmentsPrefixName?: string | Expression | PlaceholderValue; /** Fields the response will contain. Multiple can be added separated by comma. */ fields?: string | Expression | PlaceholderValue; /** Microsoft Graph API OData $filter query. Information about the syntax can be found <a href="https://docs.microsoft.com/en-us/graph/query-parameters#filter-parameter">here</a>. */ filter?: string | Expression | PlaceholderValue; }; }; export type MicrosoftOutlookV1DraftGetNode = { type: 'n8n-nodes-base.microsoftOutlook'; version: 1; credentials?: Credentials; config: NodeConfig; };