UNPKG

fastcomments-sdk

Version:

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

102 lines 2.68 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'; import type { VoteResponseUser } from './VoteResponseUser'; /** * * @export * @interface VoteComment200Response */ export interface VoteComment200Response { /** * * @type {APIStatus} * @memberof VoteComment200Response */ status: APIStatus; /** * * @type {string} * @memberof VoteComment200Response */ voteId?: string; /** * * @type {boolean} * @memberof VoteComment200Response */ isVerified?: boolean; /** * * @type {VoteResponseUser} * @memberof VoteComment200Response */ user?: VoteResponseUser; /** * * @type {string} * @memberof VoteComment200Response */ editKey?: string; /** * * @type {string} * @memberof VoteComment200Response */ reason: string; /** * * @type {string} * @memberof VoteComment200Response */ code: string; /** * * @type {string} * @memberof VoteComment200Response */ secondaryCode?: string; /** * * @type {number} * @memberof VoteComment200Response */ bannedUntil?: number; /** * * @type {number} * @memberof VoteComment200Response */ maxCharacterLength?: number; /** * * @type {string} * @memberof VoteComment200Response */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof VoteComment200Response */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the VoteComment200Response interface. */ export declare function instanceOfVoteComment200Response(value: object): value is VoteComment200Response; export declare function VoteComment200ResponseFromJSON(json: any): VoteComment200Response; export declare function VoteComment200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): VoteComment200Response; export declare function VoteComment200ResponseToJSON(json: any): VoteComment200Response; export declare function VoteComment200ResponseToJSONTyped(value?: VoteComment200Response | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=VoteComment200Response.d.ts.map