/* 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 Quote {
    /**
     * Unique identifier for the quote
     */
    'id': string;
    /**
     * ID of the RFQ this quote is responding to
     */
    'rfq_id': string;
    /**
     * Public communications ID of the quote creator
     */
    'creator_id': string;
    /**
     * Public communications ID of the RFQ creator
     */
    'rfq_creator_id': string;
    /**
     * The ticker of the market this quote is for
     */
    'market_ticker': string;
    /**
     * Fixed-point contract count string (2 decimals, e.g., \"10.00\"; referred to as \"fp\" in field names). Requests accept 0–2 decimal places (e.g., \"10\", \"10.0\", \"10.00\"); responses always emit 2 decimals. Currently only whole contract values are permitted, but the format supports future fractional precision. Integer contract count fields are legacy and will be deprecated; when both integer and fp fields are provided, they must match.
     */
    'contracts_fp': string;
    /**
     * US dollar amount as a fixed-point decimal string with up to 6 decimal places of precision. This is the maximum supported precision; valid quote intervals for a given market are constrained by that market\'s price level structure.
     */
    'yes_bid_dollars': string;
    /**
     * US dollar amount as a fixed-point decimal string with up to 6 decimal places of precision. This is the maximum supported precision; valid quote intervals for a given market are constrained by that market\'s price level structure.
     */
    'no_bid_dollars': string;
    /**
     * Timestamp when the quote was created
     */
    'created_ts': string;
    /**
     * Timestamp when the quote was last updated
     */
    'updated_ts': string;
    /**
     * Current status of the quote
     */
    'status': QuoteStatusEnum;
    /**
     * The side that was accepted (yes or no)
     */
    'accepted_side'?: QuoteAcceptedSideEnum;
    /**
     * Timestamp when the quote was accepted
     */
    'accepted_ts'?: string;
    /**
     * Timestamp when the quote was confirmed
     */
    'confirmed_ts'?: string;
    /**
     * Timestamp when the quote was executed
     */
    'executed_ts'?: string;
    /**
     * Timestamp when the quote was cancelled
     */
    'cancelled_ts'?: string;
    /**
     * Whether to rest the remainder of the quote after execution
     */
    'rest_remainder'?: boolean;
    /**
     * Reason for quote cancellation if cancelled
     */
    'cancellation_reason'?: string;
    /**
     * User ID of the quote creator (private field)
     */
    'creator_user_id'?: string;
    /**
     * User ID of the RFQ creator (private field)
     */
    'rfq_creator_user_id'?: string;
    /**
     * US dollar amount as a fixed-point decimal string with up to 6 decimal places of precision. This is the maximum supported precision; valid quote intervals for a given market are constrained by that market\'s price level structure.
     */
    'rfq_target_cost_dollars'?: string;
    /**
     * Order ID for the RFQ creator (private field)
     */
    'rfq_creator_order_id'?: string;
    /**
     * Order ID for the quote creator (private field)
     */
    'creator_order_id'?: string;
    /**
     * Fixed-point contract count string (2 decimals, e.g., \"10.00\"; referred to as \"fp\" in field names). Requests accept 0–2 decimal places (e.g., \"10\", \"10.0\", \"10.00\"); responses always emit 2 decimals. Currently only whole contract values are permitted, but the format supports future fractional precision. Integer contract count fields are legacy and will be deprecated; when both integer and fp fields are provided, they must match.
     */
    'yes_contracts_fp'?: string;
    /**
     * Fixed-point contract count string (2 decimals, e.g., \"10.00\"; referred to as \"fp\" in field names). Requests accept 0–2 decimal places (e.g., \"10\", \"10.0\", \"10.00\"); responses always emit 2 decimals. Currently only whole contract values are permitted, but the format supports future fractional precision. Integer contract count fields are legacy and will be deprecated; when both integer and fp fields are provided, they must match.
     */
    'no_contracts_fp'?: string;
}

export const QuoteStatusEnum = {
    Open: 'open',
    Accepted: 'accepted',
    Confirmed: 'confirmed',
    Executed: 'executed',
    Cancelled: 'cancelled'
} as const;

export type QuoteStatusEnum = typeof QuoteStatusEnum[keyof typeof QuoteStatusEnum];
export const QuoteAcceptedSideEnum = {
    Yes: 'yes',
    No: 'no'
} as const;

export type QuoteAcceptedSideEnum = typeof QuoteAcceptedSideEnum[keyof typeof QuoteAcceptedSideEnum];


