/**
 * fastcomments
 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
 *
 * The version of the OpenAPI document: 0.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 PubSubVote
 */
export interface PubSubVote {
    /**
     *
     * @type {string}
     * @memberof PubSubVote
     */
    id: string;
    /**
     *
     * @type {string}
     * @memberof PubSubVote
     */
    tenantId: string;
    /**
     *
     * @type {string}
     * @memberof PubSubVote
     */
    urlId: string;
    /**
     *
     * @type {string}
     * @memberof PubSubVote
     */
    urlIdRaw: string;
    /**
     *
     * @type {string}
     * @memberof PubSubVote
     */
    commentId: string;
    /**
     *
     * @type {string}
     * @memberof PubSubVote
     */
    userId?: string | null;
    /**
     *
     * @type {number}
     * @memberof PubSubVote
     */
    direction: number;
    /**
     *
     * @type {number}
     * @memberof PubSubVote
     */
    createdAt: number;
    /**
     *
     * @type {string}
     * @memberof PubSubVote
     */
    verificationId: string | null;
}
/**
 * Check if a given object implements the PubSubVote interface.
 */
export declare function instanceOfPubSubVote(value: object): value is PubSubVote;
export declare function PubSubVoteFromJSON(json: any): PubSubVote;
export declare function PubSubVoteFromJSONTyped(json: any, ignoreDiscriminator: boolean): PubSubVote;
export declare function PubSubVoteToJSON(json: any): PubSubVote;
export declare function PubSubVoteToJSONTyped(value?: PubSubVote | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=PubSubVote.d.ts.map