UNPKG

fastcomments-sdk

Version:

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

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