MutedWord constructor
Implementation
@JsonSerializable(includeIfNull: false)
const factory MutedWord({
@Default('app.bsky.actor.defs#mutedWord') String $type,
String? id,
/// The muted word itself.
required String value,
@MutedWordTargetConverter() required List<MutedWordTarget> targets,
/// Groups of users to apply the muted word to. If undefined, applies to all users.
@MutedWordActorTargetConverter() MutedWordActorTarget? actorTarget,
/// The date and time at which the muted word will expire and no longer be applied.
DateTime? expiresAt,
Map<String, dynamic>? $unknown,
}) = _MutedWord;