UNPKG

fastcomments-sdk

Version:

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

84 lines 2.53 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 GetManualBadgesForUserResponse */ export interface GetManualBadgesForUserResponse { /** * * @type {Array<UserBadge>} * @memberof GetManualBadgesForUserResponse */ badges: Array<UserBadge>; /** * * @type {APIStatus} * @memberof GetManualBadgesForUserResponse */ status: APIStatus; /** * * @type {string} * @memberof GetManualBadgesForUserResponse */ reason: string; /** * * @type {string} * @memberof GetManualBadgesForUserResponse */ code: string; /** * * @type {string} * @memberof GetManualBadgesForUserResponse */ secondaryCode?: string; /** * * @type {number} * @memberof GetManualBadgesForUserResponse */ bannedUntil?: number; /** * * @type {number} * @memberof GetManualBadgesForUserResponse */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetManualBadgesForUserResponse */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetManualBadgesForUserResponse */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetManualBadgesForUserResponse interface. */ export declare function instanceOfGetManualBadgesForUserResponse(value: object): value is GetManualBadgesForUserResponse; export declare function GetManualBadgesForUserResponseFromJSON(json: any): GetManualBadgesForUserResponse; export declare function GetManualBadgesForUserResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetManualBadgesForUserResponse; export declare function GetManualBadgesForUserResponseToJSON(json: any): GetManualBadgesForUserResponse; export declare function GetManualBadgesForUserResponseToJSONTyped(value?: GetManualBadgesForUserResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetManualBadgesForUserResponse.d.ts.map