UNPKG

fastcomments-sdk

Version:

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

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