UNPKG

fastcomments-sdk

Version:

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

83 lines 2.45 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 PostSetCommentText200Response */ export interface PostSetCommentText200Response { /** * * @type {string} * @memberof PostSetCommentText200Response */ newCommentTextHTML: string; /** * * @type {APIStatus} * @memberof PostSetCommentText200Response */ status: APIStatus; /** * * @type {string} * @memberof PostSetCommentText200Response */ reason: string; /** * * @type {string} * @memberof PostSetCommentText200Response */ code: string; /** * * @type {string} * @memberof PostSetCommentText200Response */ secondaryCode?: string; /** * * @type {number} * @memberof PostSetCommentText200Response */ bannedUntil?: number; /** * * @type {number} * @memberof PostSetCommentText200Response */ maxCharacterLength?: number; /** * * @type {string} * @memberof PostSetCommentText200Response */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof PostSetCommentText200Response */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the PostSetCommentText200Response interface. */ export declare function instanceOfPostSetCommentText200Response(value: object): value is PostSetCommentText200Response; export declare function PostSetCommentText200ResponseFromJSON(json: any): PostSetCommentText200Response; export declare function PostSetCommentText200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PostSetCommentText200Response; export declare function PostSetCommentText200ResponseToJSON(json: any): PostSetCommentText200Response; export declare function PostSetCommentText200ResponseToJSONTyped(value?: PostSetCommentText200Response | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PostSetCommentText200Response.d.ts.map