UNPKG

fastcomments-sdk

Version:

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

89 lines 2.7 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 GetCommentVoteUserNames200Response */ export interface GetCommentVoteUserNames200Response { /** * * @type {APIStatus} * @memberof GetCommentVoteUserNames200Response */ status: APIStatus; /** * * @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; } /** * Check if a given object implements the GetCommentVoteUserNames200Response interface. */ export declare function instanceOfGetCommentVoteUserNames200Response(value: object): value is GetCommentVoteUserNames200Response; export declare function GetCommentVoteUserNames200ResponseFromJSON(json: any): GetCommentVoteUserNames200Response; export declare function GetCommentVoteUserNames200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetCommentVoteUserNames200Response; export declare function GetCommentVoteUserNames200ResponseToJSON(json: any): GetCommentVoteUserNames200Response; export declare function GetCommentVoteUserNames200ResponseToJSONTyped(value?: GetCommentVoteUserNames200Response | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetCommentVoteUserNames200Response.d.ts.map