Completion

@Serializable
class Completion(val values: List<String>, val total: Int?, val hasMore: Boolean?)(source)

Constructors

Link copied to clipboard
constructor(values: List<String>, total: Int?, hasMore: Boolean?)

Properties

Link copied to clipboard

Indicates whether there are additional completion options beyond those provided in the current response, even if the exact total is unknown.

Link copied to clipboard
val total: Int?

The total number of completion options available. This can exceed the number of values actually sent in the response.

Link copied to clipboard

A list of completion values. Must not exceed 100 items.