UNPKG

fastcomments-sdk

Version:

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

89 lines 2.48 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 GetCommentText200Response */ export interface GetCommentText200Response { /** * * @type {APIStatus} * @memberof GetCommentText200Response */ status: APIStatus; /** * * @type {string} * @memberof GetCommentText200Response */ commentText: string; /** * * @type {string} * @memberof GetCommentText200Response */ sanitizedCommentText: string; /** * * @type {string} * @memberof GetCommentText200Response */ reason: string; /** * * @type {string} * @memberof GetCommentText200Response */ code: string; /** * * @type {string} * @memberof GetCommentText200Response */ secondaryCode?: string; /** * * @type {number} * @memberof GetCommentText200Response */ bannedUntil?: number; /** * * @type {number} * @memberof GetCommentText200Response */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetCommentText200Response */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetCommentText200Response */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetCommentText200Response interface. */ export declare function instanceOfGetCommentText200Response(value: object): value is GetCommentText200Response; export declare function GetCommentText200ResponseFromJSON(json: any): GetCommentText200Response; export declare function GetCommentText200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetCommentText200Response; export declare function GetCommentText200ResponseToJSON(json: any): GetCommentText200Response; export declare function GetCommentText200ResponseToJSONTyped(value?: GetCommentText200Response | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetCommentText200Response.d.ts.map