UNPKG

fastcomments-sdk

Version:

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

83 lines 2.54 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 { CustomConfigParameters } from './CustomConfigParameters'; import type { APIStatus } from './APIStatus'; /** * * @export * @interface PostAdjustCommentVotes200Response */ export interface PostAdjustCommentVotes200Response { /** * * @type {APIStatus} * @memberof PostAdjustCommentVotes200Response */ status: APIStatus; /** * * @type {number} * @memberof PostAdjustCommentVotes200Response */ newCommentVotes: number; /** * * @type {string} * @memberof PostAdjustCommentVotes200Response */ reason: string; /** * * @type {string} * @memberof PostAdjustCommentVotes200Response */ code: string; /** * * @type {string} * @memberof PostAdjustCommentVotes200Response */ secondaryCode?: string; /** * * @type {number} * @memberof PostAdjustCommentVotes200Response */ bannedUntil?: number; /** * * @type {number} * @memberof PostAdjustCommentVotes200Response */ maxCharacterLength?: number; /** * * @type {string} * @memberof PostAdjustCommentVotes200Response */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof PostAdjustCommentVotes200Response */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the PostAdjustCommentVotes200Response interface. */ export declare function instanceOfPostAdjustCommentVotes200Response(value: object): value is PostAdjustCommentVotes200Response; export declare function PostAdjustCommentVotes200ResponseFromJSON(json: any): PostAdjustCommentVotes200Response; export declare function PostAdjustCommentVotes200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PostAdjustCommentVotes200Response; export declare function PostAdjustCommentVotes200ResponseToJSON(json: any): PostAdjustCommentVotes200Response; export declare function PostAdjustCommentVotes200ResponseToJSONTyped(value?: PostAdjustCommentVotes200Response | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PostAdjustCommentVotes200Response.d.ts.map