UNPKG

fastcomments-sdk

Version:

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

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