/**
 * 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.
 */
import type { MetaItem } from './MetaItem';
/**
 *
 * @export
 * @interface QuestionResult
 */
export interface QuestionResult {
    /**
     *
     * @type {string}
     * @memberof QuestionResult
     */
    id: string;
    /**
     *
     * @type {string}
     * @memberof QuestionResult
     */
    tenantId: string;
    /**
     *
     * @type {string}
     * @memberof QuestionResult
     */
    urlId: string;
    /**
     *
     * @type {string}
     * @memberof QuestionResult
     */
    anonUserId: string;
    /**
     *
     * @type {string}
     * @memberof QuestionResult
     */
    userId: string;
    /**
     *
     * @type {Date}
     * @memberof QuestionResult
     */
    createdAt: Date;
    /**
     *
     * @type {number}
     * @memberof QuestionResult
     */
    value: number;
    /**
     *
     * @type {string}
     * @memberof QuestionResult
     */
    commentId?: string | null;
    /**
     *
     * @type {string}
     * @memberof QuestionResult
     */
    questionId: string;
    /**
     *
     * @type {Array<MetaItem>}
     * @memberof QuestionResult
     */
    meta?: Array<MetaItem> | null;
    /**
     *
     * @type {string}
     * @memberof QuestionResult
     */
    ipHash: string;
}
/**
 * Check if a given object implements the QuestionResult interface.
 */
export declare function instanceOfQuestionResult(value: object): value is QuestionResult;
export declare function QuestionResultFromJSON(json: any): QuestionResult;
export declare function QuestionResultFromJSONTyped(json: any, ignoreDiscriminator: boolean): QuestionResult;
export declare function QuestionResultToJSON(json: any): QuestionResult;
export declare function QuestionResultToJSONTyped(value?: QuestionResult | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=QuestionResult.d.ts.map