We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50bc4c7 commit a6f37d1Copy full SHA for a6f37d1
src/main/kotlin/io/appwrite/services/Database.kt
@@ -400,9 +400,9 @@ class Database(client: Client) : Service(client) {
400
collectionId: String,
401
key: String,
402
required: Boolean,
403
- min: String? = null,
404
- max: String? = null,
405
- default: String? = null,
+ min: Double? = null,
+ max: Double? = null,
+ default: Double? = null,
406
array: Boolean? = null
407
): io.appwrite.models.AttributeFloat {
408
val path = "/database/collections/{collectionId}/attributes/float".replace("{collectionId}", collectionId)
0 commit comments