UNPKG

fastcomments-sdk

Version:

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

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