fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
63 lines • 1.53 kB
TypeScript
/**
* 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.
*/
/**
*
* @export
* @interface PublicVote
*/
export interface PublicVote {
/**
*
* @type {string}
* @memberof PublicVote
*/
id: string;
/**
*
* @type {string}
* @memberof PublicVote
*/
urlId: string;
/**
*
* @type {string}
* @memberof PublicVote
*/
commentId: string;
/**
*
* @type {string}
* @memberof PublicVote
*/
userId: string;
/**
*
* @type {string}
* @memberof PublicVote
*/
direction: string;
/**
*
* @type {Date}
* @memberof PublicVote
*/
createdAt: Date;
}
/**
* Check if a given object implements the PublicVote interface.
*/
export declare function instanceOfPublicVote(value: object): value is PublicVote;
export declare function PublicVoteFromJSON(json: any): PublicVote;
export declare function PublicVoteFromJSONTyped(json: any, ignoreDiscriminator: boolean): PublicVote;
export declare function PublicVoteToJSON(json: any): PublicVote;
export declare function PublicVoteToJSONTyped(value?: PublicVote | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=PublicVote.d.ts.map