ReleaseCommit

data class ReleaseCommit(val authorEmail: String? = null, val authorName: String? = null, val authoredDate: String? = null, val committedDate: String? = null, val committerEmail: String? = null, val committerName: String? = null, val createdAt: String? = null, val id: String? = null, val message: String? = null, val parentIds: List<String>? = null, val shortId: String? = null, val title: String? = null)

Constructors

Link copied to clipboard
constructor(authorEmail: String? = null, authorName: String? = null, authoredDate: String? = null, committedDate: String? = null, committerEmail: String? = null, committerName: String? = null, createdAt: String? = null, id: String? = null, message: String? = null, parentIds: List<String>? = null, shortId: String? = null, title: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val authoredDate: String? = null

The date and time the commit was authored. In ISO 8601 format (2019-03-15T08:00:00Z).

Link copied to clipboard
val authorEmail: String? = null

The email address of the commit author.

Link copied to clipboard
val authorName: String? = null

The name of the commit author.

Link copied to clipboard
val committedDate: String? = null

The date and time the commit was made. In ISO 8601 format (2019-03-15T08:00:00Z).

Link copied to clipboard
val committerEmail: String? = null

The email address of the committer.

Link copied to clipboard
val committerName: String? = null

The name of the committer.

Link copied to clipboard
val createdAt: String? = null

The date and time the commit was created. In ISO 8601 format (2019-03-15T08:00:00Z).

Link copied to clipboard
val id: String? = null

The git commit full SHA

Link copied to clipboard
val message: String? = null

The commit message.

Link copied to clipboard
val parentIds: List<String>? = null

The full SHA of any parent commits.

Link copied to clipboard
val shortId: String? = null

The git commit short SHA.

Link copied to clipboard
val title: String? = null

The title of the commit.