/** * TheHive 5 Node - Version 1 * Discriminator: resource=log, operation=deleteAttachment */ interface Credentials { theHiveProjectApi: CredentialReference; } export type TheHiveProjectV1LogDeleteAttachmentParams = { resource: 'log'; operation: 'deleteAttachment'; /** * Task Log * @default {"mode":"list","value":""} */ logId?: { __rl: true; mode: 'list' | 'id'; value: string; cachedResultName?: string }; /** * ID of the attachment. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. */ attachmentId?: string | Expression; }; export type TheHiveProjectV1LogDeleteAttachmentNode = { type: 'n8n-nodes-base.theHiveProject'; version: 1; credentials?: Credentials; config: NodeConfig; };