ScrollRequest

@Serializable
data class ScrollRequest(val filter: Filter? = null, val limit: Int, val offset: PointId? = null, val withPayload: WithPayload? = null, val withVector: Boolean? = null)

Request body for a single POST /collections/{name}/points/scroll page.

Constructors

Link copied to clipboard
constructor(filter: Filter? = null, limit: Int, offset: PointId? = null, withPayload: WithPayload? = null, withVector: Boolean? = null)

Properties

Link copied to clipboard
@SerialName(value = "filter")
val filter: Filter?
Link copied to clipboard
@SerialName(value = "limit")
val limit: Int
Link copied to clipboard
@SerialName(value = "offset")
val offset: PointId?

Page cursor: the point id to start after. null for the first page.

Link copied to clipboard
@SerialName(value = "with_payload")
val withPayload: WithPayload?
Link copied to clipboard
@SerialName(value = "with_vector")
val withVector: Boolean?