/**
 * Phantombuster Node - Version 1
 * Discriminator: resource=agent, operation=delete
 */


interface Credentials {
  phantombusterApi: CredentialReference;
}

/** Delete an agent by ID */
export type PhantombusterV1AgentDeleteParams = {
  resource: 'agent';
  operation: 'delete';
/**
 * Choose from the list, or specify an ID using an &lt;a href="https://docs.n8n.io/code/expressions/"&gt;expression&lt;/a&gt;
 */
    agentId?: string | Expression<string>;
};

export type PhantombusterV1AgentDeleteNode = {
  type: 'n8n-nodes-base.phantombuster';
  version: 1;
  credentials?: Credentials;
  config: NodeConfig<PhantombusterV1AgentDeleteParams>;
};