UNPKG

fastcomments-sdk

Version:

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

89 lines 2.62 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 GetCommentVoteUserNamesResponse */ export interface GetCommentVoteUserNamesResponse { /** * * @type {APIStatus} * @memberof GetCommentVoteUserNamesResponse */ status: APIStatus; /** * * @type {Array<string>} * @memberof GetCommentVoteUserNamesResponse */ voteUserNames: Array<string>; /** * * @type {boolean} * @memberof GetCommentVoteUserNamesResponse */ hasMore: boolean; /** * * @type {string} * @memberof GetCommentVoteUserNamesResponse */ reason: string; /** * * @type {string} * @memberof GetCommentVoteUserNamesResponse */ code: string; /** * * @type {string} * @memberof GetCommentVoteUserNamesResponse */ secondaryCode?: string; /** * * @type {number} * @memberof GetCommentVoteUserNamesResponse */ bannedUntil?: number; /** * * @type {number} * @memberof GetCommentVoteUserNamesResponse */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetCommentVoteUserNamesResponse */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetCommentVoteUserNamesResponse */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetCommentVoteUserNamesResponse interface. */ export declare function instanceOfGetCommentVoteUserNamesResponse(value: object): value is GetCommentVoteUserNamesResponse; export declare function GetCommentVoteUserNamesResponseFromJSON(json: any): GetCommentVoteUserNamesResponse; export declare function GetCommentVoteUserNamesResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetCommentVoteUserNamesResponse; export declare function GetCommentVoteUserNamesResponseToJSON(json: any): GetCommentVoteUserNamesResponse; export declare function GetCommentVoteUserNamesResponseToJSONTyped(value?: GetCommentVoteUserNamesResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetCommentVoteUserNamesResponse.d.ts.map