PayloadIndexInfo

@Serializable
data class PayloadIndexInfo(val dataType: String? = null, val points: Long? = null)

What kind of index exists on a payload field, and how many points it covers.

Constructors

Link copied to clipboard
constructor(dataType: String? = null, points: Long? = null)

Properties

Link copied to clipboard
@SerialName(value = "data_type")
val dataType: String?

The index type's wire name (keyword, integer, ...). Kept as a string so an index type added by a newer Qdrant cannot fail the whole getCollection response; use schemaType for the typed form.

Link copied to clipboard
@SerialName(value = "points")
val points: Long?
Link copied to clipboard

dataType as a PayloadSchemaType, or null if this client version does not know the type.