GetModLog constructor
- @JsonSerializable.new(includeIfNull: false)
const
GetModLog(
{ - @JsonKey.new(name: 'mod_person_id') int? modPersonId,
- int? page,
- int? limit,
- @JsonKey.new(name: 'type_') ModLogType? type,
- @JsonKey.new(name: 'other_person_id') int? otherPersonId,
- @JsonKey.new(name: 'post_id') int? postId,
- String? auth,
})
Implementation
@JsonSerializable(includeIfNull: false)
const factory GetModLog({
@JsonKey(name: 'mod_person_id') int? modPersonId,
@JsonKey(name: 'community_id') int? communityId,
int? page,
int? limit,
@JsonKey(name: 'type_') ModLogType? type,
@JsonKey(name: 'other_person_id') int? otherPersonId,
@JsonKey(name: 'post_id') int? postId,
@JsonKey(name: 'comment_id') int? commentId,
String? auth,
}) = _GetModLog;