UNPKG

fastcomments-sdk

Version:

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

84 lines 2.6 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 { CustomConfigParameters } from './CustomConfigParameters'; import type { APIStatus } from './APIStatus'; import type { UserBadgeProgress } from './UserBadgeProgress'; /** * * @export * @interface GetUserBadgeProgressByIdResponse */ export interface GetUserBadgeProgressByIdResponse { /** * * @type {APIStatus} * @memberof GetUserBadgeProgressByIdResponse */ status: APIStatus; /** * * @type {UserBadgeProgress} * @memberof GetUserBadgeProgressByIdResponse */ userBadgeProgress: UserBadgeProgress; /** * * @type {string} * @memberof GetUserBadgeProgressByIdResponse */ reason: string; /** * * @type {string} * @memberof GetUserBadgeProgressByIdResponse */ code: string; /** * * @type {string} * @memberof GetUserBadgeProgressByIdResponse */ secondaryCode?: string; /** * * @type {number} * @memberof GetUserBadgeProgressByIdResponse */ bannedUntil?: number; /** * * @type {number} * @memberof GetUserBadgeProgressByIdResponse */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetUserBadgeProgressByIdResponse */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetUserBadgeProgressByIdResponse */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetUserBadgeProgressByIdResponse interface. */ export declare function instanceOfGetUserBadgeProgressByIdResponse(value: object): value is GetUserBadgeProgressByIdResponse; export declare function GetUserBadgeProgressByIdResponseFromJSON(json: any): GetUserBadgeProgressByIdResponse; export declare function GetUserBadgeProgressByIdResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetUserBadgeProgressByIdResponse; export declare function GetUserBadgeProgressByIdResponseToJSON(json: any): GetUserBadgeProgressByIdResponse; export declare function GetUserBadgeProgressByIdResponseToJSONTyped(value?: GetUserBadgeProgressByIdResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetUserBadgeProgressByIdResponse.d.ts.map