fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
83 lines • 2.47 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.
*/
import type { CustomConfigParameters } from './CustomConfigParameters';
import type { APIStatus } from './APIStatus';
/**
*
* @export
* @interface PostAdjustCommentVotesResponse
*/
export interface PostAdjustCommentVotesResponse {
/**
*
* @type {APIStatus}
* @memberof PostAdjustCommentVotesResponse
*/
status: APIStatus;
/**
*
* @type {number}
* @memberof PostAdjustCommentVotesResponse
*/
newCommentVotes: number;
/**
*
* @type {string}
* @memberof PostAdjustCommentVotesResponse
*/
reason: string;
/**
*
* @type {string}
* @memberof PostAdjustCommentVotesResponse
*/
code: string;
/**
*
* @type {string}
* @memberof PostAdjustCommentVotesResponse
*/
secondaryCode?: string;
/**
*
* @type {number}
* @memberof PostAdjustCommentVotesResponse
*/
bannedUntil?: number;
/**
*
* @type {number}
* @memberof PostAdjustCommentVotesResponse
*/
maxCharacterLength?: number;
/**
*
* @type {string}
* @memberof PostAdjustCommentVotesResponse
*/
translatedError?: string;
/**
*
* @type {CustomConfigParameters}
* @memberof PostAdjustCommentVotesResponse
*/
customConfig?: CustomConfigParameters;
}
/**
* Check if a given object implements the PostAdjustCommentVotesResponse interface.
*/
export declare function instanceOfPostAdjustCommentVotesResponse(value: object): value is PostAdjustCommentVotesResponse;
export declare function PostAdjustCommentVotesResponseFromJSON(json: any): PostAdjustCommentVotesResponse;
export declare function PostAdjustCommentVotesResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PostAdjustCommentVotesResponse;
export declare function PostAdjustCommentVotesResponseToJSON(json: any): PostAdjustCommentVotesResponse;
export declare function PostAdjustCommentVotesResponseToJSONTyped(value?: PostAdjustCommentVotesResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=PostAdjustCommentVotesResponse.d.ts.map