UNPKG

fastcomments-sdk

Version:

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

84 lines 2.33 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 GetUserBadgesResponse */ export interface GetUserBadgesResponse { /** * * @type {APIStatus} * @memberof GetUserBadgesResponse */ status: APIStatus; /** * * @type {Array<UserBadge>} * @memberof GetUserBadgesResponse */ userBadges: Array<UserBadge>; /** * * @type {string} * @memberof GetUserBadgesResponse */ reason: string; /** * * @type {string} * @memberof GetUserBadgesResponse */ code: string; /** * * @type {string} * @memberof GetUserBadgesResponse */ secondaryCode?: string; /** * * @type {number} * @memberof GetUserBadgesResponse */ bannedUntil?: number; /** * * @type {number} * @memberof GetUserBadgesResponse */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetUserBadgesResponse */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetUserBadgesResponse */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetUserBadgesResponse interface. */ export declare function instanceOfGetUserBadgesResponse(value: object): value is GetUserBadgesResponse; export declare function GetUserBadgesResponseFromJSON(json: any): GetUserBadgesResponse; export declare function GetUserBadgesResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetUserBadgesResponse; export declare function GetUserBadgesResponseToJSON(json: any): GetUserBadgesResponse; export declare function GetUserBadgesResponseToJSONTyped(value?: GetUserBadgesResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetUserBadgesResponse.d.ts.map