UNPKG

fastcomments-sdk

Version:

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

81 lines 2.02 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 './custom-config-parameters'; import type { ImportedAPIStatusFAILED } from './imported-apistatus-failed'; /** * * @export * @interface GetCommentVoteUserNames200Response */ export interface GetCommentVoteUserNames200Response { /** * * @type {ImportedAPIStatusFAILED} * @memberof GetCommentVoteUserNames200Response */ 'status': ImportedAPIStatusFAILED; /** * * @type {Array<string>} * @memberof GetCommentVoteUserNames200Response */ 'voteUserNames': Array<string>; /** * * @type {boolean} * @memberof GetCommentVoteUserNames200Response */ 'hasMore': boolean; /** * * @type {string} * @memberof GetCommentVoteUserNames200Response */ 'reason': string; /** * * @type {string} * @memberof GetCommentVoteUserNames200Response */ 'code': string; /** * * @type {string} * @memberof GetCommentVoteUserNames200Response */ 'secondaryCode'?: string; /** * * @type {number} * @memberof GetCommentVoteUserNames200Response */ 'bannedUntil'?: number; /** * * @type {number} * @memberof GetCommentVoteUserNames200Response */ 'maxCharacterLength'?: number; /** * * @type {string} * @memberof GetCommentVoteUserNames200Response */ 'translatedError'?: string; /** * * @type {CustomConfigParameters} * @memberof GetCommentVoteUserNames200Response */ 'customConfig'?: CustomConfigParameters; } //# sourceMappingURL=get-comment-vote-user-names200-response.d.ts.map