BranchCommit

data class BranchCommit(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 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, 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 which the commit was authored (format: yyyy-MM-ddTHH:mm:ssZ).

Link copied to clipboard
val authorEmail: String? = null

The email of the author.

Link copied to clipboard
val authorName: String? = null

The name of the author.

Link copied to clipboard
val committedDate: String? = null

The date at which the commit was pushed (format: yyyy-MM-ddTHH:mm:ssZ).

Link copied to clipboard
val committerEmail: String? = null

The email of the user that committed.

Link copied to clipboard
val committerName: String? = null

The name of the user that committed.

Link copied to clipboard
val id: String? = null

The unique id assigned to the commit by Gitlab.

Link copied to clipboard
val message: String? = null

The commit message

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

The id of the parents of the commit

Link copied to clipboard
val shortId: String? = null

The short id assigned to the commit by Gitlab.

Link copied to clipboard
val title: String? = null

The title of the commit