/** * Coda Node - Version 1.1 * Discriminator: resource=table, operation=getColumn */ interface Credentials { codaApi: CredentialReference; } /** Access data of tables in documents */ export type CodaV11TableGetColumnParams = { resource: 'table'; operation: 'getColumn'; /** * ID of the doc. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. */ docId?: string | Expression; /** * The table to get the row from. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. */ tableId?: string | Expression; /** * The table to get the row from */ columnId?: string | Expression | PlaceholderValue; }; export type CodaV11TableGetColumnNode = { type: 'n8n-nodes-base.coda'; version: 1.1; credentials?: Credentials; config: NodeConfig; };