/* tslint:disable */
/* eslint-disable */
/**
 * Kalshi Trade API Manual Endpoints
 * Manually defined OpenAPI spec for endpoints being migrated to spec-first approach
 *
 * The version of the OpenAPI document: 3.11.0
 * 
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */


// May contain unused imports in some cases
// @ts-ignore
import type { EventPosition } from './event-position';
// May contain unused imports in some cases
// @ts-ignore
import type { MarketPosition } from './market-position';

export interface GetPositionsResponse {
    /**
     * The Cursor represents a pointer to the next page of records in the pagination. Use the value returned here in the cursor query parameter for this end-point to get the next page containing limit records. An empty value of this field indicates there is no next page.
     */
    'cursor'?: string;
    /**
     * List of market positions
     */
    'market_positions': Array<MarketPosition>;
    /**
     * List of event positions
     */
    'event_positions': Array<EventPosition>;
}

