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


// May contain unused imports in some cases
// @ts-ignore
import type { MarketMetadata } from './market-metadata';
// May contain unused imports in some cases
// @ts-ignore
import type { SettlementSource } from './settlement-source';

export interface GetEventMetadataResponse {
    /**
     * A path to an image that represents this event.
     */
    'image_url': string;
    /**
     * A path to an image that represents the image of the featured market.
     */
    'featured_image_url'?: string;
    /**
     * Metadata for the markets in this event.
     */
    'market_details': Array<MarketMetadata>;
    /**
     * A list of settlement sources for this event.
     */
    'settlement_sources': Array<SettlementSource>;
    /**
     * Event competition.
     */
    'competition'?: string | null;
    /**
     * Event scope, based on the competition.
     */
    'competition_scope'?: string | null;
}

