-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathGLExportPurchaseTransaction.php
111 lines (108 loc) · 3.8 KB
/
GLExportPurchaseTransaction.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<?php
namespace Spinen\ConnectWise\Models\v2019_3\Finance;
use Carbon\Carbon;
use Spinen\ConnectWise\Support\Model;
/**
* Class GLExportPurchaseTransaction Version v2019_3
*
* Model for GLExportPurchaseTransaction
*
* @property BillingTermsReference $billingTerms
* @property Carbon $documentDate
* @property Carbon $purchaseDate
* @property Carbon $vendorInvoiceDate
* @property CompanyReference $company
* @property CompanyReference $shipToCompany
* @property CompanyTypeReference $companyType
* @property CompanyTypeReference $shipToCompanyType
* @property ContactReference $contact
* @property ContactReference $shipToContact
* @property CurrencyReference $currency
* @property SiteReference $shipToSite
* @property SiteReference $site
* @property TaxCodeReference $taxCode
* @property array $purchaseDetail
* @property array $purchaseDetailTax
* @property array $taxLevels
* @property bool $dropshipFlag
* @property bool $purchaseHeaderFreightTaxableFlag
* @property bool $purchaseHeaderTaxableFlag
* @property bool $useAvalaraTaxFlag
* @property float $freightAmount
* @property float $taxGroupRate
* @property float $total
* @property int $dueDays
* @property string $apAccountNumber
* @property string $billingTermsXref
* @property string $cityTaxXref
* @property string $countyTaxXref
* @property string $description
* @property string $documentNumber
* @property string $freightPackingSlip
* @property string $id
* @property string $memo
* @property string $packingSlip
* @property string $purchaseClass
* @property string $purchaseHeaderTaxGroup
* @property string $shipToCompanyAccountNumber
* @property string $shipToTaxGroup
* @property string $stateTaxXref
* @property string $taxAgencyXref
* @property string $vendorAccountNumber
* @property string $vendorInvoiceNumber
* @property string $vendorNumber
*/
class GLExportPurchaseTransaction extends Model
{
/**
* Properties that need to be casts to a specific object or type
*
* @var array
*/
protected $casts = [
'apAccountNumber' => 'string',
'billingTerms' => BillingTermsReference::class,
'billingTermsXref' => 'string',
'cityTaxXref' => 'string',
'company' => CompanyReference::class,
'companyType' => CompanyTypeReference::class,
'contact' => ContactReference::class,
'countyTaxXref' => 'string',
'currency' => CurrencyReference::class,
'description' => 'string',
'documentDate' => Carbon::class,
'documentNumber' => 'string',
'dropshipFlag' => 'boolean',
'dueDays' => 'integer',
'freightAmount' => 'float',
'freightPackingSlip' => 'string',
'id' => 'string',
'memo' => 'string',
'packingSlip' => 'string',
'purchaseClass' => 'string',
'purchaseDate' => Carbon::class,
'purchaseDetail' => 'array',
'purchaseDetailTax' => 'array',
'purchaseHeaderFreightTaxableFlag' => 'boolean',
'purchaseHeaderTaxGroup' => 'string',
'purchaseHeaderTaxableFlag' => 'boolean',
'shipToCompany' => CompanyReference::class,
'shipToCompanyAccountNumber' => 'string',
'shipToCompanyType' => CompanyTypeReference::class,
'shipToContact' => ContactReference::class,
'shipToSite' => SiteReference::class,
'shipToTaxGroup' => 'string',
'site' => SiteReference::class,
'stateTaxXref' => 'string',
'taxAgencyXref' => 'string',
'taxCode' => TaxCodeReference::class,
'taxGroupRate' => 'float',
'taxLevels' => 'array',
'total' => 'float',
'useAvalaraTaxFlag' => 'boolean',
'vendorAccountNumber' => 'string',
'vendorInvoiceDate' => Carbon::class,
'vendorInvoiceNumber' => 'string',
'vendorNumber' => 'string',
];
}