UNPKG

fastcomments-sdk

Version:

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

83 lines 2.35 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 PostRemoveCommentResponse */ export interface PostRemoveCommentResponse { /** * * @type {string} * @memberof PostRemoveCommentResponse */ action: string; /** * * @type {APIStatus} * @memberof PostRemoveCommentResponse */ status: APIStatus; /** * * @type {string} * @memberof PostRemoveCommentResponse */ reason: string; /** * * @type {string} * @memberof PostRemoveCommentResponse */ code: string; /** * * @type {string} * @memberof PostRemoveCommentResponse */ secondaryCode?: string; /** * * @type {number} * @memberof PostRemoveCommentResponse */ bannedUntil?: number; /** * * @type {number} * @memberof PostRemoveCommentResponse */ maxCharacterLength?: number; /** * * @type {string} * @memberof PostRemoveCommentResponse */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof PostRemoveCommentResponse */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the PostRemoveCommentResponse interface. */ export declare function instanceOfPostRemoveCommentResponse(value: object): value is PostRemoveCommentResponse; export declare function PostRemoveCommentResponseFromJSON(json: any): PostRemoveCommentResponse; export declare function PostRemoveCommentResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PostRemoveCommentResponse; export declare function PostRemoveCommentResponseToJSON(json: any): PostRemoveCommentResponse; export declare function PostRemoveCommentResponseToJSONTyped(value?: PostRemoveCommentResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PostRemoveCommentResponse.d.ts.map