/** * Athena API * REST API for the Athena system * * The version of the OpenAPI document: 1.0.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 { Vote } from './Vote'; /** * * @export * @interface ListChatVotes200Response */ export interface ListChatVotes200Response { /** * * @type {Array} * @memberof ListChatVotes200Response */ data?: Array; } /** * Check if a given object implements the ListChatVotes200Response interface. */ export declare function instanceOfListChatVotes200Response(value: object): value is ListChatVotes200Response; export declare function ListChatVotes200ResponseFromJSON(json: any): ListChatVotes200Response; export declare function ListChatVotes200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListChatVotes200Response; export declare function ListChatVotes200ResponseToJSON(json: any): ListChatVotes200Response; export declare function ListChatVotes200ResponseToJSONTyped(value?: ListChatVotes200Response | null, ignoreDiscriminator?: boolean): any;