/* 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 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 const SeriesFeeChangeFeeTypeEnum = { Quadratic: 'quadratic', QuadraticWithMakerFees: 'quadratic_with_maker_fees', Flat: 'flat' } as const; export type SeriesFeeChangeFeeTypeEnum = typeof SeriesFeeChangeFeeTypeEnum[keyof typeof SeriesFeeChangeFeeTypeEnum];