@@ -168,11 +168,11 @@ export namespace Models {
168
168
*/
169
169
$collection : string ;
170
170
/**
171
- * Document creation date in Datetime
171
+ * Document creation date in ISO 8601 format.
172
172
*/
173
173
$createdAt : string ;
174
174
/**
175
- * Document update date in Datetime
175
+ * Document update date in ISO 8601 format.
176
176
*/
177
177
$updatedAt : string ;
178
178
/**
@@ -210,7 +210,7 @@ export namespace Models {
210
210
*/
211
211
ip : string ;
212
212
/**
213
- * Log creation date in Datetime .
213
+ * Log creation date in ISO 8601 format .
214
214
*/
215
215
time : string ;
216
216
/**
@@ -279,27 +279,27 @@ export namespace Models {
279
279
*/
280
280
$id : string ;
281
281
/**
282
- * User creation date in Datetime .
282
+ * User creation date in ISO 8601 format .
283
283
*/
284
284
$createdAt : string ;
285
285
/**
286
- * User update date in Datetime .
286
+ * User update date in ISO 8601 format .
287
287
*/
288
288
$updatedAt : string ;
289
289
/**
290
290
* User name.
291
291
*/
292
292
name : string ;
293
293
/**
294
- * User registration date in Datetime .
294
+ * User registration date in ISO 8601 format .
295
295
*/
296
296
registration : string ;
297
297
/**
298
298
* User status. Pass `true` for enabled and `false` for disabled.
299
299
*/
300
300
status : boolean ;
301
301
/**
302
- * Datetime of the most recent password update
302
+ * Password update time in ISO 8601 format.
303
303
*/
304
304
passwordUpdate : string ;
305
305
/**
@@ -338,15 +338,15 @@ export namespace Models {
338
338
*/
339
339
$id : string ;
340
340
/**
341
- * Session creation date in Datetime
341
+ * Session creation date in ISO 8601 format.
342
342
*/
343
343
$createdAt : string ;
344
344
/**
345
345
* User ID.
346
346
*/
347
347
userId : string ;
348
348
/**
349
- * Session expiration date in Datetime
349
+ * Session expiration date in ISO 8601 format.
350
350
*/
351
351
expire : string ;
352
352
/**
@@ -362,7 +362,7 @@ export namespace Models {
362
362
*/
363
363
providerAccessToken : string ;
364
364
/**
365
- * The date of when the access token expires in Datetime format.
365
+ * The date of when the access token expires in ISO 8601 format.
366
366
*/
367
367
providerAccessTokenExpiry : string ;
368
368
/**
@@ -443,7 +443,7 @@ export namespace Models {
443
443
*/
444
444
$id : string ;
445
445
/**
446
- * Token creation date in Datetime
446
+ * Token creation date in ISO 8601 format.
447
447
*/
448
448
$createdAt : string ;
449
449
/**
@@ -455,7 +455,7 @@ export namespace Models {
455
455
*/
456
456
secret : string ;
457
457
/**
458
- * Token expiration date in Datetime .
458
+ * Token expiration date in ISO 8601 format .
459
459
*/
460
460
expire : string ;
461
461
}
@@ -514,11 +514,11 @@ export namespace Models {
514
514
*/
515
515
bucketId : string ;
516
516
/**
517
- * File creation date in Datetime
517
+ * File creation date in ISO 8601 format.
518
518
*/
519
519
$createdAt : string ;
520
520
/**
521
- * File update date in Datetime
521
+ * File update date in ISO 8601 format.
522
522
*/
523
523
$updatedAt : string ;
524
524
/**
@@ -559,11 +559,11 @@ export namespace Models {
559
559
*/
560
560
$id : string ;
561
561
/**
562
- * Team creation date in Datetime
562
+ * Team creation date in ISO 8601 format.
563
563
*/
564
564
$createdAt : string ;
565
565
/**
566
- * Team update date in Datetime
566
+ * Team update date in ISO 8601 format.
567
567
*/
568
568
$updatedAt : string ;
569
569
/**
@@ -584,11 +584,11 @@ export namespace Models {
584
584
*/
585
585
$id : string ;
586
586
/**
587
- * Membership creation date in Datetime
587
+ * Membership creation date in ISO 8601 format.
588
588
*/
589
589
$createdAt : string ;
590
590
/**
591
- * Membership update date in Datetime
591
+ * Membership update date in ISO 8601 format.
592
592
*/
593
593
$updatedAt : string ;
594
594
/**
@@ -612,11 +612,11 @@ export namespace Models {
612
612
*/
613
613
teamName : string ;
614
614
/**
615
- * Date, the user has been invited to join the team in Datetime
615
+ * Date, the user has been invited to join the team in ISO 8601 format.
616
616
*/
617
617
invited : string ;
618
618
/**
619
- * Date, the user has accepted the invitation to join the team in Datetime
619
+ * Date, the user has accepted the invitation to join the team in ISO 8601 format.
620
620
*/
621
621
joined : string ;
622
622
/**
@@ -637,11 +637,11 @@ export namespace Models {
637
637
*/
638
638
$id : string ;
639
639
/**
640
- * Execution creation date in Datetime
640
+ * Execution creation date in ISO 8601 format.
641
641
*/
642
642
$createdAt : string ;
643
643
/**
644
- * Execution upate date in Datetime
644
+ * Execution upate date in ISO 8601 format.
645
645
*/
646
646
$updatedAt : string ;
647
647
/**
0 commit comments