/** * 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 VotesResponse */ export interface VotesResponse { /** * Array of vote objects * @type {Array} * @memberof VotesResponse */ data: Array; } /** * Check if a given object implements the VotesResponse interface. */ export declare function instanceOfVotesResponse(value: object): value is VotesResponse; export declare function VotesResponseFromJSON(json: any): VotesResponse; export declare function VotesResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): VotesResponse; export declare function VotesResponseToJSON(json: any): VotesResponse; export declare function VotesResponseToJSONTyped(value?: VotesResponse | null, ignoreDiscriminator?: boolean): any;