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