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

net.nemerosa.ontrack.model.structure.SearchRequest.kt Maven / Gradle / Ivy

There is a newer version: 4.4.5
Show newest version
package net.nemerosa.ontrack.model.structure

/**
 * Search request.
 *
 * @param token Free text for the search
 * @param type Type of search, linked to [SearchResultType.id]
 * @param offset Offset for the results
 * @param size Number of results returned after [offset]
 */
class SearchRequest @JvmOverloads constructor(
        val token: String,
        val type: String? = null,
        val offset: Int = 0,
        val size: Int = 10
)




© 2015 - 2025 Weber Informatics LLC | Privacy Policy