/** * 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. */ /** * * @export * @interface Vote */ export interface Vote { /** * * @type {string} * @memberof Vote */ chatId: string; /** * * @type {string} * @memberof Vote */ messageId: string; /** * * @type {boolean} * @memberof Vote */ isUpvoted: boolean; } /** * Check if a given object implements the Vote interface. */ export declare function instanceOfVote(value: object): value is Vote; export declare function VoteFromJSON(json: any): Vote; export declare function VoteFromJSONTyped(json: any, ignoreDiscriminator: boolean): Vote; export declare function VoteToJSON(json: any): Vote; export declare function VoteToJSONTyped(value?: Vote | null, ignoreDiscriminator?: boolean): any;