-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathOrder.php
More file actions
39 lines (36 loc) · 1.26 KB
/
Order.php
File metadata and controls
39 lines (36 loc) · 1.26 KB
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
<?php
namespace Davesweb\BrinklinkApi\ValueObjects;
use DateTime;
class Order
{
public function __construct(
public ?string $orderId = null,
public ?DateTime $dateOrdered = null,
public ?DateTime $dateStatusChanged = null,
public ?string $sellerName = null,
public ?string $storeName = null,
public ?string $buyerName = null,
public ?string $buyerEmail = null,
public ?string $buyerOrderCount = null,
public ?bool $requireInsurance = null,
public ?string $status = null,
public ?bool $isInvoiced = null,
public ?bool $isFiled = null,
public ?bool $driveThruSent = null,
public ?string $remarks = null,
public ?int $totalCount = null,
public ?int $uniqueCount = null,
public ?float $totalWeight = null,
public ?Payment $payment = null,
public ?Shipping $shipping = null,
public ?Cost $cost = null,
public ?Cost $dispCost = null,
public ?bool $salestaxCollectedByBl = null,
public ?bool $vatCollectedByBl = null,
public ?iterable $items = null,
public ?iterable $messages = null,
public ?iterable $problems = null,
public ?iterable $feedback = null,
) {
}
}