UNPKG

fastcomments-sdk

Version:

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

84 lines 2.4 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 SetCommentTextResponse1 */ export interface SetCommentTextResponse1 { /** * * @type {SetCommentTextResult} * @memberof SetCommentTextResponse1 */ comment: SetCommentTextResult; /** * * @type {APIStatus} * @memberof SetCommentTextResponse1 */ status: APIStatus; /** * * @type {string} * @memberof SetCommentTextResponse1 */ reason: string; /** * * @type {string} * @memberof SetCommentTextResponse1 */ code: string; /** * * @type {string} * @memberof SetCommentTextResponse1 */ secondaryCode?: string; /** * * @type {number} * @memberof SetCommentTextResponse1 */ bannedUntil?: number; /** * * @type {number} * @memberof SetCommentTextResponse1 */ maxCharacterLength?: number; /** * * @type {string} * @memberof SetCommentTextResponse1 */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof SetCommentTextResponse1 */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the SetCommentTextResponse1 interface. */ export declare function instanceOfSetCommentTextResponse1(value: object): value is SetCommentTextResponse1; export declare function SetCommentTextResponse1FromJSON(json: any): SetCommentTextResponse1; export declare function SetCommentTextResponse1FromJSONTyped(json: any, ignoreDiscriminator: boolean): SetCommentTextResponse1; export declare function SetCommentTextResponse1ToJSON(json: any): SetCommentTextResponse1; export declare function SetCommentTextResponse1ToJSONTyped(value?: SetCommentTextResponse1 | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=SetCommentTextResponse1.d.ts.map