interface EditAutoModerationRuleOptions implements WithReasonimport { type EditAutoModerationRuleOptions } from "https://dotland.deno.dev/x/discordeno@17.2.0/plugins/validations/deps.ts"; Propertiesname: stringThe name of the rule. eventType: AutoModerationEventTypesThe type of event to trigger the rule on. triggerMetadata: { keywordFilter?: string[]; presets?: DiscordAutoModerationRuleTriggerMetadataPresets[]; allowList?: string[]; mentionTotalLimit: number; }The metadata to use for the trigger. actions: { type: AutoModerationActionType; metadata: { channelId?: BigString; durationSeconds?: number; }; }[]The actions that will trigger for this rule optionalenabled: booleanWhether the rule should be enabled. optionalexemptRoles: BigString[]The role ids that should not be effected by the rule optionalexemptChannels: BigString[]The channel ids that should not be effected by the rule.