-
Notifications
You must be signed in to change notification settings - Fork 200
/
Copy pathBulkGoodsDelivery.php
43 lines (41 loc) · 1.99 KB
/
BulkGoodsDelivery.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
<?php
namespace Picqer\Financials\Exact;
/**
* Class BulkGoodsDeliverie.
*
* @see https://start.exactonline.nl/docs/HlpRestAPIResourcesDetails.aspx?name=BulkSalesOrderGoodsDeliveries
*
* @property string $EntryID Primary key
* @property string $Created Creation date
* @property string $Creator User ID of the creator
* @property string $CreatorFullName Name of the creator
* @property string $DeliveryAccount Reference to account for delivery
* @property string $DeliveryAccountCode Delivery account code
* @property string $DeliveryAccountName Account name
* @property string $DeliveryAddress Reference to shipping address
* @property string $DeliveryContact Reference to contact for delivery
* @property string $DeliveryContactPersonFullName Name of the contact person of the customer who will receive delivered goods
* @property string $DeliveryDate Date of goods delivery
* @property int $DeliveryNumber Delivery number
* @property string $Description Header description
* @property int $Division Division code
* @property string $Document Document that is manually linked to the sales order delivery
* @property string $DocumentSubject Document Subject
* @property int $EntryNumber Entry number
* @property goodsdeliverylines $GoodsDeliveryLines Collection of lines
* @property string $Modified Last modified date
* @property string $Modifier User ID of modifier
* @property string $ModifierFullName Name of modifier
* @property string $Remarks Remarks
* @property string $ShippingMethod Reference to shipping method
* @property string $ShippingMethodCode Code of shipping method
* @property string $ShippingMethodDescription Description of shipping method
* @property string $TrackingNumber Reference to header tracking number
* @property string $Warehouse Warehouse
* @property string $WarehouseCode Code of Warehouse
* @property string $WarehouseDescription Description of Warehouse
*/
class BulkGoodsDelivery extends GoodsDelivery
{
protected $url = 'bulk/SalesOrder/GoodsDeliveries';
}