UNPKG

fastcomments-sdk

Version:

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

77 lines 2.15 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 UpdateCommentResponse */ export interface UpdateCommentResponse { /** * * @type {APIStatus} * @memberof UpdateCommentResponse */ status: APIStatus; /** * * @type {string} * @memberof UpdateCommentResponse */ reason: string; /** * * @type {string} * @memberof UpdateCommentResponse */ code: string; /** * * @type {string} * @memberof UpdateCommentResponse */ secondaryCode?: string; /** * * @type {number} * @memberof UpdateCommentResponse */ bannedUntil?: number; /** * * @type {number} * @memberof UpdateCommentResponse */ maxCharacterLength?: number; /** * * @type {string} * @memberof UpdateCommentResponse */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof UpdateCommentResponse */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the UpdateCommentResponse interface. */ export declare function instanceOfUpdateCommentResponse(value: object): value is UpdateCommentResponse; export declare function UpdateCommentResponseFromJSON(json: any): UpdateCommentResponse; export declare function UpdateCommentResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateCommentResponse; export declare function UpdateCommentResponseToJSON(json: any): UpdateCommentResponse; export declare function UpdateCommentResponseToJSONTyped(value?: UpdateCommentResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=UpdateCommentResponse.d.ts.map