UNPKG

fastcomments-sdk

Version:

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

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