UNPKG

fastcomments-sdk

Version:

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

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