UNPKG

fastcomments-sdk

Version:

FastComments API Client - A SDK for interacting with the FastComments API

63 lines 1.93 kB
/** * 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 CreateAPIUserSubscriptionData */ export interface CreateAPIUserSubscriptionData { /** * * @type {number} * @memberof CreateAPIUserSubscriptionData */ notificationFrequency?: number; /** * * @type {string} * @memberof CreateAPIUserSubscriptionData */ pageTitle?: string; /** * * @type {string} * @memberof CreateAPIUserSubscriptionData */ url?: string; /** * * @type {string} * @memberof CreateAPIUserSubscriptionData */ urlId: string; /** * * @type {string} * @memberof CreateAPIUserSubscriptionData */ anonUserId?: string; /** * * @type {string} * @memberof CreateAPIUserSubscriptionData */ userId?: string; } /** * Check if a given object implements the CreateAPIUserSubscriptionData interface. */ export declare function instanceOfCreateAPIUserSubscriptionData(value: object): value is CreateAPIUserSubscriptionData; export declare function CreateAPIUserSubscriptionDataFromJSON(json: any): CreateAPIUserSubscriptionData; export declare function CreateAPIUserSubscriptionDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateAPIUserSubscriptionData; export declare function CreateAPIUserSubscriptionDataToJSON(json: any): CreateAPIUserSubscriptionData; export declare function CreateAPIUserSubscriptionDataToJSONTyped(value?: CreateAPIUserSubscriptionData | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CreateAPIUserSubscriptionData.d.ts.map