/* 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.
 */



export interface GetBalanceResponse {
    /**
     * Member\'s available balance in cents. This represents the amount available for trading.
     */
    'balance': number;
    /**
     * Member\'s portfolio value in cents. This is the current value of all positions held.
     */
    'portfolio_value': number;
    /**
     * Unix timestamp of the last update to the balance.
     */
    'updated_ts': number;
}

