UNPKG

fastcomments-sdk

Version:

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

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