fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
75 lines • 2.11 kB
TypeScript
/**
* 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 APICommentCommonBannedUser
*/
export interface APICommentCommonBannedUser {
/**
*
* @type {string}
* @memberof APICommentCommonBannedUser
*/
id: string;
/**
*
* @type {string}
* @memberof APICommentCommonBannedUser
*/
userId?: string | null;
/**
*
* @type {string}
* @memberof APICommentCommonBannedUser
*/
banType: string;
/**
*
* @type {string}
* @memberof APICommentCommonBannedUser
*/
email?: string | null;
/**
*
* @type {string}
* @memberof APICommentCommonBannedUser
*/
ipHash?: string | null;
/**
*
* @type {Date}
* @memberof APICommentCommonBannedUser
*/
bannedUntil: Date | null;
/**
*
* @type {boolean}
* @memberof APICommentCommonBannedUser
*/
hasEmailWildcard: boolean;
/**
*
* @type {string}
* @memberof APICommentCommonBannedUser
*/
banReason?: string;
}
/**
* Check if a given object implements the APICommentCommonBannedUser interface.
*/
export declare function instanceOfAPICommentCommonBannedUser(value: object): value is APICommentCommonBannedUser;
export declare function APICommentCommonBannedUserFromJSON(json: any): APICommentCommonBannedUser;
export declare function APICommentCommonBannedUserFromJSONTyped(json: any, ignoreDiscriminator: boolean): APICommentCommonBannedUser;
export declare function APICommentCommonBannedUserToJSON(json: any): APICommentCommonBannedUser;
export declare function APICommentCommonBannedUserToJSONTyped(value?: APICommentCommonBannedUser | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=APICommentCommonBannedUser.d.ts.map