/** * 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. */ import type { DailySchedule } from './daily-schedule'; export interface WeeklySchedule { /** * Start date and time for when this weekly schedule is effective. */ 'start_time': string; /** * End date and time for when this weekly schedule is no longer effective. */ 'end_time': string; /** * Trading hours for Monday. May contain multiple sessions. */ 'monday': Array; /** * Trading hours for Tuesday. May contain multiple sessions. */ 'tuesday': Array; /** * Trading hours for Wednesday. May contain multiple sessions. */ 'wednesday': Array; /** * Trading hours for Thursday. May contain multiple sessions. */ 'thursday': Array; /** * Trading hours for Friday. May contain multiple sessions. */ 'friday': Array; /** * Trading hours for Saturday. May contain multiple sessions. */ 'saturday': Array; /** * Trading hours for Sunday. May contain multiple sessions. */ 'sunday': Array; }