forked from supportpal/api-client-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLanguage.php
More file actions
32 lines (29 loc) · 847 Bytes
/
Language.php
File metadata and controls
32 lines (29 loc) · 847 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
25
26
27
28
29
30
31
32
<?php declare(strict_types=1);
namespace SupportPal\ApiClient\Model\Core;
use SupportPal\ApiClient\Model\Model;
/**
* @property int $id
* @property string $name
* @property string $code
* @property bool $enabled
* @property bool $upgrade_available
* @property string|null $version
* @property int $created_at
* @property int $updated_at
* @property string $formatted_name
*/
class Language extends Model
{
/** @var array<string, string> */
protected $casts = [
'id' => 'int',
'name' => 'string',
'code' => 'string',
'enabled' => 'bool',
'upgrade_available' => 'bool',
'version' => 'string',
'created_at' => 'int',
'updated_at' => 'int',
'formatted_name' => 'string',
];
}