/** * Neynar API * The Neynar API allows you to interact with the Farcaster protocol among other things. See the [Neynar docs](https://docs.neynar.com/reference) for more details. * * The version of the OpenAPI document: 3.137.0 * Contact: team@neynar.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { GetTableSchema200ResponseColumnsInner } from './get-table-schema200-response-columns-inner'; import type { GetTableSchema200ResponseForeignKeysInner } from './get-table-schema200-response-foreign-keys-inner'; import type { GetTableSchema200ResponseIndexesInner } from './get-table-schema200-response-indexes-inner'; /** * * @export * @interface GetTableSchema200Response */ export interface GetTableSchema200Response { /** * Table name * @type {string} * @memberof GetTableSchema200Response */ 'tableName': string; /** * Table columns * @type {Array} * @memberof GetTableSchema200Response */ 'columns': Array; /** * Table indexes * @type {Array} * @memberof GetTableSchema200Response */ 'indexes': Array; /** * Foreign key relationships * @type {Array} * @memberof GetTableSchema200Response */ 'foreignKeys': Array; /** * Primary key column names * @type {Array} * @memberof GetTableSchema200Response */ 'primaryKeyColumns': Array; }