-
Notifications
You must be signed in to change notification settings - Fork 243
Expand file tree
/
Copy pathUserToken.php
More file actions
24 lines (21 loc) · 799 Bytes
/
UserToken.php
File metadata and controls
24 lines (21 loc) · 799 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
namespace ProcessMaker\Models;
use Laravel\Passport\Token;
/**
* @OA\Schema(
* schema="UserToken",
* @OA\Property(property="id", type="string"),
* @OA\Property(property="user_id", type="integer"),
* @OA\Property(property="client_id", type="integer"),
* @OA\Property(property="name", type="string"),
* @OA\Property(property="scopes", type="object"),
* @OA\Property(property="revoked", type="boolean"),
* @OA\Property(property="client", type="object", ref="#/components/schemas/TokenClient"),
* @OA\Property(property="created_at", type="string", format="date-time"),
* @OA\Property(property="updated_at", type="string", format="date-time"),
* @OA\Property(property="expires_at", type="string", format="date-time"),
* )
*/
class UserToken extends Token
{
}