/* 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 AcceptQuoteRequest {
    /**
     * The side of the quote to accept (yes or no)
     */
    'accepted_side': AcceptQuoteRequestAcceptedSideEnum;
}

export const AcceptQuoteRequestAcceptedSideEnum = {
    Yes: 'yes',
    No: 'no'
} as const;

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


