/**
 * 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 APIUserSubscription
 */
export interface APIUserSubscription {
    /**
     *
     * @type {number}
     * @memberof APIUserSubscription
     */
    notificationFrequency?: number;
    /**
     *
     * @type {Date}
     * @memberof APIUserSubscription
     */
    createdAt: Date;
    /**
     *
     * @type {string}
     * @memberof APIUserSubscription
     */
    pageTitle?: string;
    /**
     *
     * @type {string}
     * @memberof APIUserSubscription
     */
    url?: string;
    /**
     *
     * @type {string}
     * @memberof APIUserSubscription
     */
    urlId: string;
    /**
     *
     * @type {string}
     * @memberof APIUserSubscription
     */
    anonUserId?: string;
    /**
     *
     * @type {string}
     * @memberof APIUserSubscription
     */
    userId?: string;
    /**
     *
     * @type {string}
     * @memberof APIUserSubscription
     */
    id: string;
}
/**
 * Check if a given object implements the APIUserSubscription interface.
 */
export declare function instanceOfAPIUserSubscription(value: object): value is APIUserSubscription;
export declare function APIUserSubscriptionFromJSON(json: any): APIUserSubscription;
export declare function APIUserSubscriptionFromJSONTyped(json: any, ignoreDiscriminator: boolean): APIUserSubscription;
export declare function APIUserSubscriptionToJSON(json: any): APIUserSubscription;
export declare function APIUserSubscriptionToJSONTyped(value?: APIUserSubscription | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=APIUserSubscription.d.ts.map