n8n-nodes-base
Version:
Base nodes of n8n
37 lines (33 loc) • 878 B
text/typescript
/**
* 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>;
};