UNPKG

fastcomments-sdk

Version:

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

84 lines 2.7 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 GetUserBadgeProgressByUserIdResponse */ export interface GetUserBadgeProgressByUserIdResponse { /** * * @type {APIStatus} * @memberof GetUserBadgeProgressByUserIdResponse */ status: APIStatus; /** * * @type {UserBadgeProgress} * @memberof GetUserBadgeProgressByUserIdResponse */ userBadgeProgress: UserBadgeProgress; /** * * @type {string} * @memberof GetUserBadgeProgressByUserIdResponse */ reason: string; /** * * @type {string} * @memberof GetUserBadgeProgressByUserIdResponse */ code: string; /** * * @type {string} * @memberof GetUserBadgeProgressByUserIdResponse */ secondaryCode?: string; /** * * @type {number} * @memberof GetUserBadgeProgressByUserIdResponse */ bannedUntil?: number; /** * * @type {number} * @memberof GetUserBadgeProgressByUserIdResponse */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetUserBadgeProgressByUserIdResponse */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetUserBadgeProgressByUserIdResponse */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetUserBadgeProgressByUserIdResponse interface. */ export declare function instanceOfGetUserBadgeProgressByUserIdResponse(value: object): value is GetUserBadgeProgressByUserIdResponse; export declare function GetUserBadgeProgressByUserIdResponseFromJSON(json: any): GetUserBadgeProgressByUserIdResponse; export declare function GetUserBadgeProgressByUserIdResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetUserBadgeProgressByUserIdResponse; export declare function GetUserBadgeProgressByUserIdResponseToJSON(json: any): GetUserBadgeProgressByUserIdResponse; export declare function GetUserBadgeProgressByUserIdResponseToJSONTyped(value?: GetUserBadgeProgressByUserIdResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetUserBadgeProgressByUserIdResponse.d.ts.map