UNPKG

fastcomments-sdk

Version:

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

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