UNPKG

fastcomments-sdk

Version:

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

102 lines 2.6 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 VoteCommentResponse */ export interface VoteCommentResponse { /** * * @type {APIStatus} * @memberof VoteCommentResponse */ status: APIStatus; /** * * @type {string} * @memberof VoteCommentResponse */ voteId?: string; /** * * @type {boolean} * @memberof VoteCommentResponse */ isVerified?: boolean; /** * * @type {VoteResponseUser} * @memberof VoteCommentResponse */ user?: VoteResponseUser; /** * * @type {string} * @memberof VoteCommentResponse */ editKey?: string; /** * * @type {string} * @memberof VoteCommentResponse */ reason: string; /** * * @type {string} * @memberof VoteCommentResponse */ code: string; /** * * @type {string} * @memberof VoteCommentResponse */ secondaryCode?: string; /** * * @type {number} * @memberof VoteCommentResponse */ bannedUntil?: number; /** * * @type {number} * @memberof VoteCommentResponse */ maxCharacterLength?: number; /** * * @type {string} * @memberof VoteCommentResponse */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof VoteCommentResponse */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the VoteCommentResponse interface. */ export declare function instanceOfVoteCommentResponse(value: object): value is VoteCommentResponse; export declare function VoteCommentResponseFromJSON(json: any): VoteCommentResponse; export declare function VoteCommentResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): VoteCommentResponse; export declare function VoteCommentResponseToJSON(json: any): VoteCommentResponse; export declare function VoteCommentResponseToJSONTyped(value?: VoteCommentResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=VoteCommentResponse.d.ts.map