UNPKG

fastcomments-sdk

Version:

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

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