UNPKG

fastcomments-sdk

Version:

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

107 lines 2.97 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 PostBulkPreBanSummaryResponse */ export interface PostBulkPreBanSummaryResponse { /** * * @type {APIStatus} * @memberof PostBulkPreBanSummaryResponse */ status: APIStatus; /** * * @type {number} * @memberof PostBulkPreBanSummaryResponse */ totalRelatedCommentCount: number; /** * * @type {Array<string>} * @memberof PostBulkPreBanSummaryResponse */ emailDomains: Array<string>; /** * * @type {Array<string>} * @memberof PostBulkPreBanSummaryResponse */ emails: Array<string>; /** * * @type {Array<string>} * @memberof PostBulkPreBanSummaryResponse */ userIds: Array<string>; /** * * @type {Array<string>} * @memberof PostBulkPreBanSummaryResponse */ ipHashes: Array<string>; /** * * @type {string} * @memberof PostBulkPreBanSummaryResponse */ reason: string; /** * * @type {string} * @memberof PostBulkPreBanSummaryResponse */ code: string; /** * * @type {string} * @memberof PostBulkPreBanSummaryResponse */ secondaryCode?: string; /** * * @type {number} * @memberof PostBulkPreBanSummaryResponse */ bannedUntil?: number; /** * * @type {number} * @memberof PostBulkPreBanSummaryResponse */ maxCharacterLength?: number; /** * * @type {string} * @memberof PostBulkPreBanSummaryResponse */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof PostBulkPreBanSummaryResponse */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the PostBulkPreBanSummaryResponse interface. */ export declare function instanceOfPostBulkPreBanSummaryResponse(value: object): value is PostBulkPreBanSummaryResponse; export declare function PostBulkPreBanSummaryResponseFromJSON(json: any): PostBulkPreBanSummaryResponse; export declare function PostBulkPreBanSummaryResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PostBulkPreBanSummaryResponse; export declare function PostBulkPreBanSummaryResponseToJSON(json: any): PostBulkPreBanSummaryResponse; export declare function PostBulkPreBanSummaryResponseToJSONTyped(value?: PostBulkPreBanSummaryResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PostBulkPreBanSummaryResponse.d.ts.map