ModEventAcknowledge constructor

  1. @JsonSerializable(includeIfNull: false)
const ModEventAcknowledge({
  1. @Default('tools.ozone.moderation.defs#modEventAcknowledge') String $type,
  2. String? comment,
  3. bool? acknowledgeAccountSubjects,
  4. Map<String, dynamic>? $unknown,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory ModEventAcknowledge({
  @Default('tools.ozone.moderation.defs#modEventAcknowledge') String $type,
  String? comment,

  /// If true, all other reports on content authored by this account will be resolved (acknowledged).
  bool? acknowledgeAccountSubjects,

  Map<String, dynamic>? $unknown,
}) = _ModEventAcknowledge;