UNPKG

fastcomments-sdk

Version:

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

105 lines 2.33 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. */ /** * * @export * @interface APIBannedUser */ export interface APIBannedUser { /** * * @type {string} * @memberof APIBannedUser */ id: string; /** * * @type {string} * @memberof APIBannedUser */ tenantId: string; /** * * @type {string} * @memberof APIBannedUser */ userId?: string | null; /** * * @type {string} * @memberof APIBannedUser */ email?: string | null; /** * * @type {string} * @memberof APIBannedUser */ username?: string | null; /** * * @type {string} * @memberof APIBannedUser */ ipHash?: string | null; /** * * @type {Date} * @memberof APIBannedUser */ createdAt: Date; /** * * @type {string} * @memberof APIBannedUser */ bannedByUserId: string; /** * * @type {string} * @memberof APIBannedUser */ bannedCommentText: string; /** * * @type {string} * @memberof APIBannedUser */ banType: string; /** * * @type {Date} * @memberof APIBannedUser */ bannedUntil: Date | null; /** * * @type {boolean} * @memberof APIBannedUser */ hasEmailWildcard: boolean; /** * * @type {string} * @memberof APIBannedUser */ banReason?: string; } /** * Check if a given object implements the APIBannedUser interface. */ export declare function instanceOfAPIBannedUser(value: object): value is APIBannedUser; export declare function APIBannedUserFromJSON(json: any): APIBannedUser; export declare function APIBannedUserFromJSONTyped(json: any, ignoreDiscriminator: boolean): APIBannedUser; export declare function APIBannedUserToJSON(json: any): APIBannedUser; export declare function APIBannedUserToJSONTyped(value?: APIBannedUser | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=APIBannedUser.d.ts.map