All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.river.connector.github.model.query.PullRequestQuery.kt Maven / Gradle / Ivy

There is a newer version: 1.0.0-alpha18
Show newest version
package com.river.connector.github.model.query

import com.river.connector.github.model.QueryParameters

class PullRequestQuery : QueryParameters, PageableQuery {
    enum class State {
        OPEN, CLOSED, ALL
    }

    enum class Sort {
        CREATED, UPDATED, POPULARITY, LONG_RUNNING
    }

    enum class Direction {
        ASC, DESC
    }

    var state: State = State.OPEN
    var head: String? = null
    var base: String? = null
    var sort: Sort = Sort.CREATED
    var direction: Direction? = null
    override var perPage: Int = 30
    override var page: Int = 1
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy