mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2025-01-15 16:21:14 +01:00
17 lines
367 B
PHP
17 lines
367 B
PHP
|
<?php
|
||
|
|
||
|
// SPDX-FileCopyrightText: 2025 Andreas Palm
|
||
|
//
|
||
|
// SPDX-License-Identifier: AGPL-3.0-only
|
||
|
|
||
|
namespace Xentral\Carrier\Go\Data;
|
||
|
|
||
|
class CreateOrderResponse {
|
||
|
public string $hwbNumber;
|
||
|
public OrderStatus $orderStatus;
|
||
|
public \DateTime $pickupDate;
|
||
|
public \DateTime $deliveryDate;
|
||
|
public string $hwbOrPackageLabel;
|
||
|
|
||
|
public array $barcodes;
|
||
|
}
|