fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
33 lines • 1.28 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 AdjustCommentVotesParams
*/
export interface AdjustCommentVotesParams {
/**
*
* @type {number}
* @memberof AdjustCommentVotesParams
*/
adjustVoteAmount: number;
}
/**
* Check if a given object implements the AdjustCommentVotesParams interface.
*/
export declare function instanceOfAdjustCommentVotesParams(value: object): value is AdjustCommentVotesParams;
export declare function AdjustCommentVotesParamsFromJSON(json: any): AdjustCommentVotesParams;
export declare function AdjustCommentVotesParamsFromJSONTyped(json: any, ignoreDiscriminator: boolean): AdjustCommentVotesParams;
export declare function AdjustCommentVotesParamsToJSON(json: any): AdjustCommentVotesParams;
export declare function AdjustCommentVotesParamsToJSONTyped(value?: AdjustCommentVotesParams | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=AdjustCommentVotesParams.d.ts.map