net.nemerosa.ontrack.model.structure.SearchRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ontrack-model Show documentation
Show all versions of ontrack-model Show documentation
Ontrack module: ontrack-model
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