/**
 * Quick Base Node - Version 1
 * Discriminator: resource=report, operation=run
 */


interface Credentials {
  quickbaseApi: CredentialReference;
}

/** Run a report */
export type QuickbaseV1ReportRunParams = {
  resource: 'report';
  operation: 'run';
/**
 * The table identifier
 */
    tableId?: string | Expression<string> | PlaceholderValue;
/**
 * The identifier of the report, unique to the table
 */
    reportId?: string | Expression<string> | PlaceholderValue;
/**
 * Whether to return all results or only up to a given limit
 * @default true
 */
    returnAll?: boolean | Expression<boolean>;
/**
 * Max number of results to return
 * @displayOptions.hide { returnAll: [true] }
 * @default 100
 */
    limit?: number | Expression<number>;
};

export type QuickbaseV1ReportRunNode = {
  type: 'n8n-nodes-base.quickbase';
  version: 1;
  credentials?: Credentials;
  config: NodeConfig<QuickbaseV1ReportRunParams>;
};