UNPKG

fastcomments-sdk

Version:

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

84 lines 2.44 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 { SetCommentTextResult } from './SetCommentTextResult'; import type { APIStatus } from './APIStatus'; /** * * @export * @interface SetCommentText200Response */ export interface SetCommentText200Response { /** * * @type {SetCommentTextResult} * @memberof SetCommentText200Response */ comment: SetCommentTextResult; /** * * @type {APIStatus} * @memberof SetCommentText200Response */ status: APIStatus; /** * * @type {string} * @memberof SetCommentText200Response */ reason: string; /** * * @type {string} * @memberof SetCommentText200Response */ code: string; /** * * @type {string} * @memberof SetCommentText200Response */ secondaryCode?: string; /** * * @type {number} * @memberof SetCommentText200Response */ bannedUntil?: number; /** * * @type {number} * @memberof SetCommentText200Response */ maxCharacterLength?: number; /** * * @type {string} * @memberof SetCommentText200Response */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof SetCommentText200Response */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the SetCommentText200Response interface. */ export declare function instanceOfSetCommentText200Response(value: object): value is SetCommentText200Response; export declare function SetCommentText200ResponseFromJSON(json: any): SetCommentText200Response; export declare function SetCommentText200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SetCommentText200Response; export declare function SetCommentText200ResponseToJSON(json: any): SetCommentText200Response; export declare function SetCommentText200ResponseToJSONTyped(value?: SetCommentText200Response | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=SetCommentText200Response.d.ts.map