-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathGLExportExpenseBill.php
46 lines (43 loc) · 1.15 KB
/
GLExportExpenseBill.php
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?php
namespace Spinen\ConnectWise\Models\v2019_3\Finance;
use Spinen\ConnectWise\Support\Model;
/**
* Class GLExportExpenseBill Version v2019_3
*
* Model for GLExportExpenseBill
*
* @property CurrencyReference $currency
* @property MemberReference $member
* @property array $detail
* @property float $total
* @property int $id
* @property string $apAccountNumber
* @property string $documentDate
* @property string $documentNumber
* @property string $documentType
* @property string $glClass
* @property string $memo
* @property string $vendorNumber
*/
class GLExportExpenseBill extends Model
{
/**
* Properties that need to be casts to a specific object or type
*
* @var array
*/
protected $casts = [
'apAccountNumber' => 'string',
'currency' => CurrencyReference::class,
'detail' => 'array',
'documentDate' => 'string',
'documentNumber' => 'string',
'documentType' => 'string',
'glClass' => 'string',
'id' => 'integer',
'member' => MemberReference::class,
'memo' => 'string',
'total' => 'float',
'vendorNumber' => 'string',
];
}