/** * Wekan Node - Version 1 * Discriminator: resource=card, operation=getAll */ interface Credentials { wekanApi: CredentialReference; } /** Get many user boards */ export type WekanV1CardGetAllParams = { resource: 'card'; operation: 'getAll'; /** * The ID of the board that list 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; /** * From Object */ fromObject?: 'list' | 'swimlane' | 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>. * @displayOptions.show { fromObject: ["list"] } */ listId?: string | Expression; /** * The ID of the swimlane that card belongs to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. * @displayOptions.show { fromObject: ["swimlane"] } */ swimlaneId?: 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 WekanV1CardGetAllNode = { type: 'n8n-nodes-base.wekan'; version: 1; credentials?: Credentials; config: NodeConfig; };