UNPKG

fastcomments-sdk

Version:

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

51 lines 1.14 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 { VoteResponseStatus } from './vote-response-status'; import type { VoteResponseUser } from './vote-response-user'; /** * * @export * @interface VoteResponse */ export interface VoteResponse { /** * * @type {VoteResponseStatus} * @memberof VoteResponse */ 'status': VoteResponseStatus; /** * * @type {string} * @memberof VoteResponse */ 'voteId'?: string; /** * * @type {boolean} * @memberof VoteResponse */ 'isVerified'?: boolean; /** * * @type {VoteResponseUser} * @memberof VoteResponse */ 'user'?: VoteResponseUser; /** * * @type {string} * @memberof VoteResponse */ 'editKey'?: string; } //# sourceMappingURL=vote-response.d.ts.map