UNPKG

fastcomments-sdk

Version:

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

85 lines 2.72 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 CheckedCommentsForBlocked200Response */ export interface CheckedCommentsForBlocked200Response { /** * Construct a type with a set of properties K of type T * @type {{ [key: string]: boolean; }} * @memberof CheckedCommentsForBlocked200Response */ commentStatuses: { [key: string]: boolean; }; /** * * @type {APIStatus} * @memberof CheckedCommentsForBlocked200Response */ status: APIStatus; /** * * @type {string} * @memberof CheckedCommentsForBlocked200Response */ reason: string; /** * * @type {string} * @memberof CheckedCommentsForBlocked200Response */ code: string; /** * * @type {string} * @memberof CheckedCommentsForBlocked200Response */ secondaryCode?: string; /** * * @type {number} * @memberof CheckedCommentsForBlocked200Response */ bannedUntil?: number; /** * * @type {number} * @memberof CheckedCommentsForBlocked200Response */ maxCharacterLength?: number; /** * * @type {string} * @memberof CheckedCommentsForBlocked200Response */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof CheckedCommentsForBlocked200Response */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the CheckedCommentsForBlocked200Response interface. */ export declare function instanceOfCheckedCommentsForBlocked200Response(value: object): value is CheckedCommentsForBlocked200Response; export declare function CheckedCommentsForBlocked200ResponseFromJSON(json: any): CheckedCommentsForBlocked200Response; export declare function CheckedCommentsForBlocked200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CheckedCommentsForBlocked200Response; export declare function CheckedCommentsForBlocked200ResponseToJSON(json: any): CheckedCommentsForBlocked200Response; export declare function CheckedCommentsForBlocked200ResponseToJSONTyped(value?: CheckedCommentsForBlocked200Response | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CheckedCommentsForBlocked200Response.d.ts.map