PortalItemComment

@Serializable
data class PortalItemComment(val comment: String, val owner: String, val created: Instant, val commentId: String)

Holds the content of a comment on a portal item.

Since

200.0.0

Constructors

Link copied to clipboard
constructor(comment: String, owner: String, created: Instant, commentId: String)

Properties

Link copied to clipboard

the text of the comment

Link copied to clipboard
@SerialName(value = "id")
val commentId: String

the ID of the comment

Link copied to clipboard
@Serializable(with = InstantMillisecondsSerializer::class)
val created: Instant

the time at which the comment was created

Link copied to clipboard

the owner of the comment