UNPKG

fastcomments-sdk

Version:

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

84 lines 2.46 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 { CommentUserBadgeInfo } from './CommentUserBadgeInfo'; /** * * @export * @interface PutRemoveBadge200Response */ export interface PutRemoveBadge200Response { /** * * @type {Array<CommentUserBadgeInfo>} * @memberof PutRemoveBadge200Response */ badges?: Array<CommentUserBadgeInfo>; /** * * @type {APIStatus} * @memberof PutRemoveBadge200Response */ status: APIStatus; /** * * @type {string} * @memberof PutRemoveBadge200Response */ reason: string; /** * * @type {string} * @memberof PutRemoveBadge200Response */ code: string; /** * * @type {string} * @memberof PutRemoveBadge200Response */ secondaryCode?: string; /** * * @type {number} * @memberof PutRemoveBadge200Response */ bannedUntil?: number; /** * * @type {number} * @memberof PutRemoveBadge200Response */ maxCharacterLength?: number; /** * * @type {string} * @memberof PutRemoveBadge200Response */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof PutRemoveBadge200Response */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the PutRemoveBadge200Response interface. */ export declare function instanceOfPutRemoveBadge200Response(value: object): value is PutRemoveBadge200Response; export declare function PutRemoveBadge200ResponseFromJSON(json: any): PutRemoveBadge200Response; export declare function PutRemoveBadge200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PutRemoveBadge200Response; export declare function PutRemoveBadge200ResponseToJSON(json: any): PutRemoveBadge200Response; export declare function PutRemoveBadge200ResponseToJSONTyped(value?: PutRemoveBadge200Response | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PutRemoveBadge200Response.d.ts.map