/**
 * 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 SeriesFeeChange {
    /**
     * Unique identifier for this fee change
     */
    'id': string;
    /**
     * Series ticker this fee change applies to
     */
    'series_ticker': string;
    /**
     * New fee type for the series
     */
    'fee_type': SeriesFeeChangeFeeTypeEnum;
    /**
     * New fee multiplier for the series
     */
    'fee_multiplier': number;
    /**
     * Timestamp when this fee change is scheduled to take effect
     */
    'scheduled_ts': string;
}
export declare const SeriesFeeChangeFeeTypeEnum: {
    readonly Quadratic: "quadratic";
    readonly QuadraticWithMakerFees: "quadratic_with_maker_fees";
    readonly Flat: "flat";
};
export type SeriesFeeChangeFeeTypeEnum = typeof SeriesFeeChangeFeeTypeEnum[keyof typeof SeriesFeeChangeFeeTypeEnum];
