fix: rename updatedAt field to lastEditedAt for comments

This commit is contained in:
Devon Sawatsky 2025-02-13 14:24:56 -08:00 committed by Harsh Shandilya
parent bff573ec10
commit bb11ede32a
2 changed files with 8 additions and 8 deletions

View file

@ -22,7 +22,7 @@ class Comment(
val url: String,
val score: Int,
@Serializable(with = JavaInstantSerializer::class) val createdAt: TemporalAccessor,
@Serializable(with = JavaInstantSerializer::class) val updatedAt: TemporalAccessor,
@Serializable(with = JavaInstantSerializer::class) val lastEditedAt: TemporalAccessor,
val parentComment: String?,
@SerialName("commenting_user") val user: String,
)