UNPKG

fastcomments-sdk

Version:

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

59 lines 1.65 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 './VoteResponseStatus'; import type { VoteResponseUser } from './VoteResponseUser'; /** * * @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; } /** * Check if a given object implements the VoteResponse interface. */ export declare function instanceOfVoteResponse(value: object): value is VoteResponse; export declare function VoteResponseFromJSON(json: any): VoteResponse; export declare function VoteResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): VoteResponse; export declare function VoteResponseToJSON(json: any): VoteResponse; export declare function VoteResponseToJSONTyped(value?: VoteResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=VoteResponse.d.ts.map