UNPKG

fastcomments-sdk

Version:

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

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