UNPKG

fastcomments-sdk

Version:

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

41 lines 1.64 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. */ import type { APIStatus } from './APIStatus'; import type { UserBadgeProgress } from './UserBadgeProgress'; /** * * @export * @interface APIGetUserBadgeProgressResponse */ export interface APIGetUserBadgeProgressResponse { /** * * @type {APIStatus} * @memberof APIGetUserBadgeProgressResponse */ status: APIStatus; /** * * @type {UserBadgeProgress} * @memberof APIGetUserBadgeProgressResponse */ userBadgeProgress: UserBadgeProgress; } /** * Check if a given object implements the APIGetUserBadgeProgressResponse interface. */ export declare function instanceOfAPIGetUserBadgeProgressResponse(value: object): value is APIGetUserBadgeProgressResponse; export declare function APIGetUserBadgeProgressResponseFromJSON(json: any): APIGetUserBadgeProgressResponse; export declare function APIGetUserBadgeProgressResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): APIGetUserBadgeProgressResponse; export declare function APIGetUserBadgeProgressResponseToJSON(json: any): APIGetUserBadgeProgressResponse; export declare function APIGetUserBadgeProgressResponseToJSONTyped(value?: APIGetUserBadgeProgressResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=APIGetUserBadgeProgressResponse.d.ts.map