UNPKG

fastcomments-sdk

Version:

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

40 lines 861 B
/** * 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 SpamRule */ export interface SpamRule { /** * * @type {Array<string>} * @memberof SpamRule */ 'actions': Array<SpamRuleActionsEnum>; /** * * @type {string} * @memberof SpamRule */ 'commentContains'?: string; } /** * @export * @enum {string} */ export declare enum SpamRuleActionsEnum { spam = "spam", not_spam = "not-spam", ignore_repeat = "ignore-repeat" } //# sourceMappingURL=spam-rule.d.ts.map