UNPKG

fastcomments-sdk

Version:

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

82 lines 2.42 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 { BannedUserMatch } from './BannedUserMatch'; /** * * @export * @interface APIBannedUserWithMultiMatchInfo */ export interface APIBannedUserWithMultiMatchInfo { /** * * @type {string} * @memberof APIBannedUserWithMultiMatchInfo */ id: string; /** * * @type {string} * @memberof APIBannedUserWithMultiMatchInfo */ userId?: string | null; /** * * @type {string} * @memberof APIBannedUserWithMultiMatchInfo */ banType: string; /** * * @type {string} * @memberof APIBannedUserWithMultiMatchInfo */ email?: string | null; /** * * @type {string} * @memberof APIBannedUserWithMultiMatchInfo */ ipHash?: string | null; /** * * @type {Date} * @memberof APIBannedUserWithMultiMatchInfo */ bannedUntil: Date | null; /** * * @type {boolean} * @memberof APIBannedUserWithMultiMatchInfo */ hasEmailWildcard: boolean; /** * * @type {string} * @memberof APIBannedUserWithMultiMatchInfo */ banReason?: string; /** * * @type {Array<BannedUserMatch>} * @memberof APIBannedUserWithMultiMatchInfo */ matches: Array<BannedUserMatch>; } /** * Check if a given object implements the APIBannedUserWithMultiMatchInfo interface. */ export declare function instanceOfAPIBannedUserWithMultiMatchInfo(value: object): value is APIBannedUserWithMultiMatchInfo; export declare function APIBannedUserWithMultiMatchInfoFromJSON(json: any): APIBannedUserWithMultiMatchInfo; export declare function APIBannedUserWithMultiMatchInfoFromJSONTyped(json: any, ignoreDiscriminator: boolean): APIBannedUserWithMultiMatchInfo; export declare function APIBannedUserWithMultiMatchInfoToJSON(json: any): APIBannedUserWithMultiMatchInfo; export declare function APIBannedUserWithMultiMatchInfoToJSONTyped(value?: APIBannedUserWithMultiMatchInfo | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=APIBannedUserWithMultiMatchInfo.d.ts.map