/**
 * 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 &lt;a href="https://docs.n8n.io/code/expressions/"&gt;expression&lt;/a&gt;.
 */
    attachmentId?: string | Expression<string>;
};

export type TheHiveProjectV1LogDeleteAttachmentNode = {
  type: 'n8n-nodes-base.theHiveProject';
  version: 1;
  credentials?: Credentials;
  config: NodeConfig<TheHiveProjectV1LogDeleteAttachmentParams>;
};