UNPKG

fastcomments-sdk

Version:

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

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