/** * Wekan Node - Version 1 * Discriminator: resource=cardComment, operation=getAll */ interface Credentials { wekanApi: CredentialReference; } /** Get many user boards */ export type WekanV1CardCommentGetAllParams = { resource: 'cardComment'; operation: 'getAll'; /** * The ID of the board that card belongs to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. */ boardId?: string | Expression; /** * The ID of the list that card belongs to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. */ listId?: string | Expression; /** * The ID of the card. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. */ cardId?: string | Expression; /** * Whether to return all results or only up to a given limit * @default false */ returnAll?: boolean | Expression; /** * Max number of results to return * @displayOptions.show { returnAll: [false] } * @default 100 */ limit?: number | Expression; }; export type WekanV1CardCommentGetAllNode = { type: 'n8n-nodes-base.wekan'; version: 1; credentials?: Credentials; config: NodeConfig; };