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 { UserBadge } from './UserBadge'; import type { APIStatus } from './APIStatus'; /** * * @export * @interface GetManualBadgesForUser200Response */ export interface GetManualBadgesForUser200Response { /** * * @type {Array<UserBadge>} * @memberof GetManualBadgesForUser200Response */ badges: Array<UserBadge>; /** * * @type {APIStatus} * @memberof GetManualBadgesForUser200Response */ status: APIStatus; /** * * @type {string} * @memberof GetManualBadgesForUser200Response */ reason: string; /** * * @type {string} * @memberof GetManualBadgesForUser200Response */ code: string; /** * * @type {string} * @memberof GetManualBadgesForUser200Response */ secondaryCode?: string; /** * * @type {number} * @memberof GetManualBadgesForUser200Response */ bannedUntil?: number; /** * * @type {number} * @memberof GetManualBadgesForUser200Response */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetManualBadgesForUser200Response */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetManualBadgesForUser200Response */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetManualBadgesForUser200Response interface. */ export declare function instanceOfGetManualBadgesForUser200Response(value: object): value is GetManualBadgesForUser200Response; export declare function GetManualBadgesForUser200ResponseFromJSON(json: any): GetManualBadgesForUser200Response; export declare function GetManualBadgesForUser200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetManualBadgesForUser200Response; export declare function GetManualBadgesForUser200ResponseToJSON(json: any): GetManualBadgesForUser200Response; export declare function GetManualBadgesForUser200ResponseToJSONTyped(value?: GetManualBadgesForUser200Response | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetManualBadgesForUser200Response.d.ts.map