/** * Wekan Node - Version 1 * Discriminator: resource=checklist, operation=get */ interface Credentials { wekanApi: CredentialReference; } /** Get the data of a board */ export type WekanV1ChecklistGetParams = { resource: 'checklist'; operation: 'get'; /** * 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 that checklist belongs to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. */ cardId?: string | Expression; /** * The ID of the checklist to get. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. */ checklistId?: string | Expression; }; export type WekanV1ChecklistGetNode = { type: 'n8n-nodes-base.wekan'; version: 1; credentials?: Credentials; config: NodeConfig; };