src.main.kotlin.com.gabrielfeo.develocity.api.model.PageQuery.kt Maven / Gradle / Ivy
/**
*
* Please note:
* This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* Do not edit this file manually.
*
*/
@file:Suppress(
"ArrayInDataClass",
"EnumEntryName",
"RemoveRedundantQualifierName",
"UnusedImport"
)
package com.gabrielfeo.develocity.api.model
import com.squareup.moshi.Json
import com.squareup.moshi.JsonClass
/**
*
*
* @param pageNumber The index of the page to retrieve. The first page's index is zero.
* @param pageSize The maximum number of elements to include in the fetched page.
*/
data class PageQuery (
/* The index of the page to retrieve. The first page's index is zero. */
@Json(name = "pageNumber")
val pageNumber: kotlin.Int? = 0,
/* The maximum number of elements to include in the fetched page. */
@Json(name = "pageSize")
val pageSize: kotlin.Int? = null
) {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy