UNPKG

fastcomments-sdk

Version:

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

84 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 { APIBannedUserWithMultiMatchInfo } from './APIBannedUserWithMultiMatchInfo'; import type { APIStatus } from './APIStatus'; /** * * @export * @interface GetBanUsersFromCommentResponse */ export interface GetBanUsersFromCommentResponse { /** * * @type {Array<APIBannedUserWithMultiMatchInfo>} * @memberof GetBanUsersFromCommentResponse */ bannedUsers: Array<APIBannedUserWithMultiMatchInfo>; /** * * @type {string} * @memberof GetBanUsersFromCommentResponse */ code: string; /** * * @type {APIStatus} * @memberof GetBanUsersFromCommentResponse */ status: APIStatus; /** * * @type {string} * @memberof GetBanUsersFromCommentResponse */ reason: string; /** * * @type {string} * @memberof GetBanUsersFromCommentResponse */ secondaryCode?: string; /** * * @type {number} * @memberof GetBanUsersFromCommentResponse */ bannedUntil?: number; /** * * @type {number} * @memberof GetBanUsersFromCommentResponse */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetBanUsersFromCommentResponse */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetBanUsersFromCommentResponse */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetBanUsersFromCommentResponse interface. */ export declare function instanceOfGetBanUsersFromCommentResponse(value: object): value is GetBanUsersFromCommentResponse; export declare function GetBanUsersFromCommentResponseFromJSON(json: any): GetBanUsersFromCommentResponse; export declare function GetBanUsersFromCommentResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetBanUsersFromCommentResponse; export declare function GetBanUsersFromCommentResponseToJSON(json: any): GetBanUsersFromCommentResponse; export declare function GetBanUsersFromCommentResponseToJSONTyped(value?: GetBanUsersFromCommentResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetBanUsersFromCommentResponse.d.ts.map