UNPKG

fastcomments-sdk

Version:

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

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