UNPKG

fastcomments-sdk

Version:

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

77 lines 2.2 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'; /** * * @export * @interface UpdateUserBadgeResponse */ export interface UpdateUserBadgeResponse { /** * * @type {APIStatus} * @memberof UpdateUserBadgeResponse */ status: APIStatus; /** * * @type {string} * @memberof UpdateUserBadgeResponse */ reason: string; /** * * @type {string} * @memberof UpdateUserBadgeResponse */ code: string; /** * * @type {string} * @memberof UpdateUserBadgeResponse */ secondaryCode?: string; /** * * @type {number} * @memberof UpdateUserBadgeResponse */ bannedUntil?: number; /** * * @type {number} * @memberof UpdateUserBadgeResponse */ maxCharacterLength?: number; /** * * @type {string} * @memberof UpdateUserBadgeResponse */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof UpdateUserBadgeResponse */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the UpdateUserBadgeResponse interface. */ export declare function instanceOfUpdateUserBadgeResponse(value: object): value is UpdateUserBadgeResponse; export declare function UpdateUserBadgeResponseFromJSON(json: any): UpdateUserBadgeResponse; export declare function UpdateUserBadgeResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateUserBadgeResponse; export declare function UpdateUserBadgeResponseToJSON(json: any): UpdateUserBadgeResponse; export declare function UpdateUserBadgeResponseToJSONTyped(value?: UpdateUserBadgeResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=UpdateUserBadgeResponse.d.ts.map