test #432
@@ -186,6 +186,8 @@ data class CreatorChannelCommunityCommentResponse(
|
||||
val writerProfileImageUrl: String,
|
||||
val writerNickname: String,
|
||||
val content: String,
|
||||
@JsonProperty("isSecret")
|
||||
val isSecret: Boolean,
|
||||
val createdAtUtc: String,
|
||||
val latestReply: CreatorChannelCommunityReplyResponse?
|
||||
) {
|
||||
@@ -197,6 +199,7 @@ data class CreatorChannelCommunityCommentResponse(
|
||||
writerProfileImageUrl = comment.writerProfileImageUrl,
|
||||
writerNickname = comment.writerNickname,
|
||||
content = comment.content,
|
||||
isSecret = comment.isSecret,
|
||||
createdAtUtc = comment.createdAt.toUtcIso(),
|
||||
latestReply = comment.latestReply?.let(CreatorChannelCommunityReplyResponse::from)
|
||||
)
|
||||
@@ -278,6 +281,7 @@ data class CreatorChannelCommunityComment(
|
||||
val writerProfileImageUrl: String,
|
||||
val writerNickname: String,
|
||||
val content: String,
|
||||
val isSecret: Boolean,
|
||||
val createdAt: LocalDateTime,
|
||||
val latestReply: CreatorChannelCommunityReply?
|
||||
)
|
||||
@@ -353,6 +357,7 @@ data class CreatorChannelCommunityCommentRecord(
|
||||
val writerProfilePath: String?,
|
||||
val writerNickname: String,
|
||||
val content: String,
|
||||
val isSecret: Boolean,
|
||||
val createdAt: LocalDateTime
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user