/** * Coda Node - Version 1 * Discriminator: resource=view, operation=deleteViewRow */ interface Credentials { codaApi: CredentialReference; } /** Access data of views in documents */ export type CodaV1ViewDeleteViewRowParams = { resource: 'view'; operation: 'deleteViewRow'; /** * 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 view 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>. */ viewId?: string | Expression; /** * The view 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>. */ rowId?: string | Expression; }; export type CodaV1ViewDeleteViewRowNode = { type: 'n8n-nodes-base.coda'; version: 1; credentials?: Credentials; config: NodeConfig; };