mirror of
https://github.com/appwrite/appwrite
synced 2026-05-23 08:58:35 +00:00
feat: update response model
This commit is contained in:
parent
e104f553cb
commit
28d9e15980
1 changed files with 3 additions and 2 deletions
|
|
@ -59,10 +59,11 @@ class Key extends Model
|
|||
'example' => '919c2d18fb5d4...a2ae413da83346ad2',
|
||||
])
|
||||
->addRule('accessedAt', [
|
||||
'type' => self::TYPE_INTEGER,
|
||||
'type' => self::TYPE_DATETIME_EXAMPLE,
|
||||
'description' => 'Most recent access date in Unix timestamp.',
|
||||
'default' => null,
|
||||
'example' => '1653990687',
|
||||
'default' => '',
|
||||
'example' => self::TYPE_DATETIME_EXAMPLE
|
||||
])
|
||||
->addRule('sdks', [
|
||||
'type' => self::TYPE_STRING,
|
||||
|
|
|
|||
Loading…
Reference in a new issue