@Serializable
data class JiraComment(val id: String, val self: String, val author: JsonObject, val body: String, val updateAuthor: JsonObject, val created: String, val updated: String, val jsdPublic: Boolean? = null)

Kotlin representation of the Issue JSON

Parameters

id

The id of the issue

self

The self link of the issue

author

The author of the comment

body

The body of the comment

updateAuthor

The update author of the comment

created

The creation date of the comment

updated

The update date of the comment

jsdPublic

Whether the comment is public

Constructors

Link copied to clipboard
constructor(id: String, self: String, author: JsonObject, body: String, updateAuthor: JsonObject, created: String, updated: String, jsdPublic: Boolean? = null)

Properties

Link copied to clipboard
val author: JsonObject
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val id: String
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val updateAuthor: JsonObject
Link copied to clipboard