Branch Commit
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)
Properties
Link copied to clipboard
The date which the commit was authored (format: yyyy-MM-ddTHH:mm:ssZ).
Link copied to clipboard
The email of the author.
Link copied to clipboard
The name of the author.
Link copied to clipboard
The date at which the commit was pushed (format: yyyy-MM-ddTHH:mm:ssZ).
Link copied to clipboard
The email of the user that committed.
Link copied to clipboard
The name of the user that committed.