forked from ProcessMaker/processmaker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTokenClient.php
More file actions
24 lines (21 loc) · 769 Bytes
/
TokenClient.php
File metadata and controls
24 lines (21 loc) · 769 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\Client;
/**
* @OA\Schema(
* schema="TokenClient",
* @OA\Property(property="id", type="integer"),
* @OA\Property(property="user_id", type="integer"),
* @OA\Property(property="name", type="string"),
* @OA\Property(property="provider", type="string"),
* @OA\Property(property="redirect", type="string"),
* @OA\Property(property="personal_access_client", type="boolean"),
* @OA\Property(property="password_client", type="boolean"),
* @OA\Property(property="revoked", type="boolean"),
* @OA\Property(property="created_at", type="string", format="date-time"),
* @OA\Property(property="updated_at", type="string", format="date-time"),
* )
*/
class TokenClient extends Client
{
}