UNPKG

fastcomments-sdk

Version:

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

83 lines 2.52 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 GetModerationCommentTextResponse */ export interface GetModerationCommentTextResponse { /** * * @type {string} * @memberof GetModerationCommentTextResponse */ comment?: string | null; /** * * @type {APIStatus} * @memberof GetModerationCommentTextResponse */ status: APIStatus; /** * * @type {string} * @memberof GetModerationCommentTextResponse */ reason: string; /** * * @type {string} * @memberof GetModerationCommentTextResponse */ code: string; /** * * @type {string} * @memberof GetModerationCommentTextResponse */ secondaryCode?: string; /** * * @type {number} * @memberof GetModerationCommentTextResponse */ bannedUntil?: number; /** * * @type {number} * @memberof GetModerationCommentTextResponse */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetModerationCommentTextResponse */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetModerationCommentTextResponse */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetModerationCommentTextResponse interface. */ export declare function instanceOfGetModerationCommentTextResponse(value: object): value is GetModerationCommentTextResponse; export declare function GetModerationCommentTextResponseFromJSON(json: any): GetModerationCommentTextResponse; export declare function GetModerationCommentTextResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetModerationCommentTextResponse; export declare function GetModerationCommentTextResponseToJSON(json: any): GetModerationCommentTextResponse; export declare function GetModerationCommentTextResponseToJSONTyped(value?: GetModerationCommentTextResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetModerationCommentTextResponse.d.ts.map