UNPKG

fastcomments-sdk

Version:

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

83 lines 2.43 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 DeleteCommentVote200Response */ export interface DeleteCommentVote200Response { /** * * @type {APIStatus} * @memberof DeleteCommentVote200Response */ status: APIStatus; /** * * @type {boolean} * @memberof DeleteCommentVote200Response */ wasPendingVote?: boolean; /** * * @type {string} * @memberof DeleteCommentVote200Response */ reason: string; /** * * @type {string} * @memberof DeleteCommentVote200Response */ code: string; /** * * @type {string} * @memberof DeleteCommentVote200Response */ secondaryCode?: string; /** * * @type {number} * @memberof DeleteCommentVote200Response */ bannedUntil?: number; /** * * @type {number} * @memberof DeleteCommentVote200Response */ maxCharacterLength?: number; /** * * @type {string} * @memberof DeleteCommentVote200Response */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof DeleteCommentVote200Response */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the DeleteCommentVote200Response interface. */ export declare function instanceOfDeleteCommentVote200Response(value: object): value is DeleteCommentVote200Response; export declare function DeleteCommentVote200ResponseFromJSON(json: any): DeleteCommentVote200Response; export declare function DeleteCommentVote200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeleteCommentVote200Response; export declare function DeleteCommentVote200ResponseToJSON(json: any): DeleteCommentVote200Response; export declare function DeleteCommentVote200ResponseToJSONTyped(value?: DeleteCommentVote200Response | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=DeleteCommentVote200Response.d.ts.map