/**
 * Elastic Security Node - Version 1
 * Discriminator: resource=caseComment, operation=getAll
 */


interface Credentials {
  elasticSecurityApi: CredentialReference;
}

/** Retrieve many cases */
export type ElasticSecurityV1CaseCommentGetAllParams = {
  resource: 'caseComment';
  operation: 'getAll';
/**
 * Case ID
 */
    caseId?: string | Expression<string> | PlaceholderValue;
/**
 * Whether to return all results or only up to a given limit
 * @default false
 */
    returnAll?: boolean | Expression<boolean>;
/**
 * Max number of results to return
 * @displayOptions.show { returnAll: [false] }
 * @default 50
 */
    limit?: number | Expression<number>;
};

export type ElasticSecurityV1CaseCommentGetAllNode = {
  type: 'n8n-nodes-base.elasticSecurity';
  version: 1;
  credentials?: Credentials;
  config: NodeConfig<ElasticSecurityV1CaseCommentGetAllParams>;
};