UNPKG

fastcomments-sdk

Version:

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

84 lines 2.36 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 GetUserBadge200Response */ export interface GetUserBadge200Response { /** * * @type {APIStatus} * @memberof GetUserBadge200Response */ status: APIStatus; /** * * @type {UserBadge} * @memberof GetUserBadge200Response */ userBadge: UserBadge; /** * * @type {string} * @memberof GetUserBadge200Response */ reason: string; /** * * @type {string} * @memberof GetUserBadge200Response */ code: string; /** * * @type {string} * @memberof GetUserBadge200Response */ secondaryCode?: string; /** * * @type {number} * @memberof GetUserBadge200Response */ bannedUntil?: number; /** * * @type {number} * @memberof GetUserBadge200Response */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetUserBadge200Response */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetUserBadge200Response */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetUserBadge200Response interface. */ export declare function instanceOfGetUserBadge200Response(value: object): value is GetUserBadge200Response; export declare function GetUserBadge200ResponseFromJSON(json: any): GetUserBadge200Response; export declare function GetUserBadge200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetUserBadge200Response; export declare function GetUserBadge200ResponseToJSON(json: any): GetUserBadge200Response; export declare function GetUserBadge200ResponseToJSONTyped(value?: GetUserBadge200Response | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetUserBadge200Response.d.ts.map