/** * Microsoft To Do Node - Version 1 * Discriminator: resource=linkedResource, operation=update */ interface Credentials { microsoftToDoOAuth2Api: CredentialReference; } export type MicrosoftToDoV1LinkedResourceUpdateParams = { resource: 'linkedResource'; operation: 'update'; /** * Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a> */ taskListId?: string | Expression; /** * Task ID */ taskId?: string | Expression | PlaceholderValue; /** * Linked Resource ID */ linkedResourceId?: string | Expression | PlaceholderValue; /** * Update Fields * @default {} */ updateFields?: { /** App name of the source that is sending the linked entity */ applicationName?: string | Expression | PlaceholderValue; /** Field indicating title of the linked entity */ displayName?: string | Expression | PlaceholderValue; /** ID of the object that is associated with this task on the third-party/partner system */ externalId?: string | Expression | PlaceholderValue; /** Deeplink to the linked entity */ webUrl?: string | Expression | PlaceholderValue; }; }; export type MicrosoftToDoV1LinkedResourceUpdateNode = { type: 'n8n-nodes-base.microsoftToDo'; version: 1; credentials?: Credentials; config: NodeConfig; };