com.river.connector.github.model.query.CommitQuery.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of connector-github Show documentation
Show all versions of connector-github Show documentation
Extensions & Enterprise Integrations for Kotlin flows.
package com.river.connector.github.model.query
import com.river.connector.github.model.QueryParameters
import java.time.ZonedDateTime
class CommitQuery : QueryParameters, PageableQuery {
var sha: String? = null
var path: String? = null
override var page: Int = 1
override var perPage: Int = 30
var until: ZonedDateTime? = null
var since: ZonedDateTime? = null
var committer: String? = null
var author: String? = null
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy