@@ -1199,7 +1199,7 @@ open class Databases: Service {
11991199 /// - collectionId: String
12001200 /// - key: String
12011201 /// - required: Bool
1202- /// - default: String (optional)
1202+ /// - default: [AnyCodable] (optional)
12031203 /// - Throws: Exception if the request fails
12041204 /// - Returns: AppwriteModels.AttributeLine
12051205 ///
@@ -1209,7 +1209,7 @@ open class Databases: Service {
12091209 collectionId: String ,
12101210 key: String ,
12111211 `required`: Bool ,
1212- `default`: String ? = nil
1212+ `default`: [ AnyCodable ] ? = nil
12131213 ) async throws -> AppwriteModels . AttributeLine {
12141214 let apiPath : String = " /databases/{databaseId}/collections/{collectionId}/attributes/line "
12151215 . replacingOccurrences ( of: " {databaseId} " , with: databaseId)
@@ -1247,7 +1247,7 @@ open class Databases: Service {
12471247 /// - collectionId: String
12481248 /// - key: String
12491249 /// - required: Bool
1250- /// - default: String (optional)
1250+ /// - default: [AnyCodable] (optional)
12511251 /// - newKey: String (optional)
12521252 /// - Throws: Exception if the request fails
12531253 /// - Returns: AppwriteModels.AttributeLine
@@ -1258,7 +1258,7 @@ open class Databases: Service {
12581258 collectionId: String ,
12591259 key: String ,
12601260 `required`: Bool ,
1261- `default`: String ? = nil ,
1261+ `default`: [ AnyCodable ] ? = nil ,
12621262 newKey: String ? = nil
12631263 ) async throws -> AppwriteModels . AttributeLine {
12641264 let apiPath : String = " /databases/{databaseId}/collections/{collectionId}/attributes/line/{key} "
@@ -1297,7 +1297,7 @@ open class Databases: Service {
12971297 /// - collectionId: String
12981298 /// - key: String
12991299 /// - required: Bool
1300- /// - default: String (optional)
1300+ /// - default: [AnyCodable] (optional)
13011301 /// - Throws: Exception if the request fails
13021302 /// - Returns: AppwriteModels.AttributePoint
13031303 ///
@@ -1307,7 +1307,7 @@ open class Databases: Service {
13071307 collectionId: String ,
13081308 key: String ,
13091309 `required`: Bool ,
1310- `default`: String ? = nil
1310+ `default`: [ AnyCodable ] ? = nil
13111311 ) async throws -> AppwriteModels . AttributePoint {
13121312 let apiPath : String = " /databases/{databaseId}/collections/{collectionId}/attributes/point "
13131313 . replacingOccurrences ( of: " {databaseId} " , with: databaseId)
@@ -1345,7 +1345,7 @@ open class Databases: Service {
13451345 /// - collectionId: String
13461346 /// - key: String
13471347 /// - required: Bool
1348- /// - default: String (optional)
1348+ /// - default: [AnyCodable] (optional)
13491349 /// - newKey: String (optional)
13501350 /// - Throws: Exception if the request fails
13511351 /// - Returns: AppwriteModels.AttributePoint
@@ -1356,7 +1356,7 @@ open class Databases: Service {
13561356 collectionId: String ,
13571357 key: String ,
13581358 `required`: Bool ,
1359- `default`: String ? = nil ,
1359+ `default`: [ AnyCodable ] ? = nil ,
13601360 newKey: String ? = nil
13611361 ) async throws -> AppwriteModels . AttributePoint {
13621362 let apiPath : String = " /databases/{databaseId}/collections/{collectionId}/attributes/point/{key} "
@@ -1395,7 +1395,7 @@ open class Databases: Service {
13951395 /// - collectionId: String
13961396 /// - key: String
13971397 /// - required: Bool
1398- /// - default: String (optional)
1398+ /// - default: [AnyCodable] (optional)
13991399 /// - Throws: Exception if the request fails
14001400 /// - Returns: AppwriteModels.AttributePolygon
14011401 ///
@@ -1405,7 +1405,7 @@ open class Databases: Service {
14051405 collectionId: String ,
14061406 key: String ,
14071407 `required`: Bool ,
1408- `default`: String ? = nil
1408+ `default`: [ AnyCodable ] ? = nil
14091409 ) async throws -> AppwriteModels . AttributePolygon {
14101410 let apiPath : String = " /databases/{databaseId}/collections/{collectionId}/attributes/polygon "
14111411 . replacingOccurrences ( of: " {databaseId} " , with: databaseId)
@@ -1443,7 +1443,7 @@ open class Databases: Service {
14431443 /// - collectionId: String
14441444 /// - key: String
14451445 /// - required: Bool
1446- /// - default: String (optional)
1446+ /// - default: [AnyCodable] (optional)
14471447 /// - newKey: String (optional)
14481448 /// - Throws: Exception if the request fails
14491449 /// - Returns: AppwriteModels.AttributePolygon
@@ -1454,7 +1454,7 @@ open class Databases: Service {
14541454 collectionId: String ,
14551455 key: String ,
14561456 `required`: Bool ,
1457- `default`: String ? = nil ,
1457+ `default`: [ AnyCodable ] ? = nil ,
14581458 newKey: String ? = nil
14591459 ) async throws -> AppwriteModels . AttributePolygon {
14601460 let apiPath : String = " /databases/{databaseId}/collections/{collectionId}/attributes/polygon/{key} "
0 commit comments