/**
 * 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.175.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.
 */
export interface QueryTableRequest {
    /**
     * Columns to select (defaults to all)
     */
    'columns'?: Array<string>;
    /**
     * Deployment ID (UUID)
     */
    'deployment_id': string;
    /**
     * Farcaster ID of the user. Required for non-admin users.
     */
    'fid'?: number;
    /**
     * Maximum rows to return (default: 100, max: 1000)
     */
    'limit'?: number;
    /**
     * Number of rows to skip
     */
    'offset'?: number;
    /**
     * Column to sort by
     */
    'orderBy'?: string;
    /**
     * Sort direction
     */
    'orderDirection'?: QueryTableRequestOrderDirectionEnum;
    /**
     * Table name to query
     */
    'table': string;
}
export declare const QueryTableRequestOrderDirectionEnum: {
    readonly Asc: "asc";
    readonly Desc: "desc";
};
export type QueryTableRequestOrderDirectionEnum = typeof QueryTableRequestOrderDirectionEnum[keyof typeof QueryTableRequestOrderDirectionEnum];
