UNPKG

fastcomments-sdk

Version:

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

83 lines 2.11 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 UserBadgeProgress */ export interface UserBadgeProgress { /** * * @type {string} * @memberof UserBadgeProgress */ id: string; /** * * @type {string} * @memberof UserBadgeProgress */ tenantId: string; /** * * @type {string} * @memberof UserBadgeProgress */ userId: string; /** * * @type {string} * @memberof UserBadgeProgress */ firstCommentId: string; /** * * @type {Date} * @memberof UserBadgeProgress */ firstCommentDate: Date; /** * * @type {number} * @memberof UserBadgeProgress */ autoTrustFactor?: number; /** * * @type {number} * @memberof UserBadgeProgress */ manualTrustFactor?: number; /** * Construct a type with a set of properties K of type T * @type {{ [key: string]: number; }} * @memberof UserBadgeProgress */ progress: { [key: string]: number; }; /** * * @type {Date} * @memberof UserBadgeProgress */ tosAcceptedAt?: Date; } /** * Check if a given object implements the UserBadgeProgress interface. */ export declare function instanceOfUserBadgeProgress(value: object): value is UserBadgeProgress; export declare function UserBadgeProgressFromJSON(json: any): UserBadgeProgress; export declare function UserBadgeProgressFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserBadgeProgress; export declare function UserBadgeProgressToJSON(json: any): UserBadgeProgress; export declare function UserBadgeProgressToJSONTyped(value?: UserBadgeProgress | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=UserBadgeProgress.d.ts.map