/* 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 Announcement {
    /**
     * The type of the announcement.
     */
    'type': AnnouncementTypeEnum;
    /**
     * The message contained within the announcement.
     */
    'message': string;
    /**
     * The time the announcement was delivered.
     */
    'delivery_time': string;
    /**
     * The current status of this announcement.
     */
    'status': AnnouncementStatusEnum;
}

export const AnnouncementTypeEnum = {
    Info: 'info',
    Warning: 'warning',
    Error: 'error'
} as const;

export type AnnouncementTypeEnum = typeof AnnouncementTypeEnum[keyof typeof AnnouncementTypeEnum];
export const AnnouncementStatusEnum = {
    Active: 'active',
    Inactive: 'inactive'
} as const;

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


