UNPKG

fastcomments-sdk

Version:

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

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