Kotlin: List all vector buckets

Lists all Vector buckets with optional pagination.

Parameters

Examples

List vector buckets

val response = supabase.storage.vectors.listBuckets {
    prefix = "myPrefix"
    maxResults = 20
    nextToken = "nextToken"
}
println(response.vectorBuckets)