GetRepositoriesPlainArgs

data class GetRepositoriesPlainArgs(val includeRepoId: Boolean? = null, val query: String, val resultsPerPage: Int? = null, val sort: String? = null) : ConvertibleToJava<GetRepositoriesPlainArgs>

A collection of arguments for invoking getRepositories.

Constructors

Link copied to clipboard
constructor(includeRepoId: Boolean? = null, query: String, resultsPerPage: Int? = null, sort: String? = null)

Properties

Link copied to clipboard
val includeRepoId: Boolean? = null

Returns a list of found repository IDs

Link copied to clipboard
Link copied to clipboard
val resultsPerPage: Int? = null

Set the number of repositories requested per API call. Can be useful to decrease if requests are timing out or to increase to reduce the number of API calls. Defaults to 100.

Link copied to clipboard
val sort: String? = null

Sorts the repositories returned by the specified attribute. Valid values include stars, fork, and updated. Defaults to updated.

Functions

Link copied to clipboard
open override fun toJava(): GetRepositoriesPlainArgs