mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-12-27 15:10:28 +01:00
30 lines
558 B
PHP
30 lines
558 B
PHP
<?php
|
|
|
|
// SPDX-FileCopyrightText: 2024 Andreas Palm
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
namespace Xentral\Modules\Onlineshop\Data;
|
|
|
|
class Shipment
|
|
{
|
|
/**
|
|
* @var int ID of the shipment (ERP domain)
|
|
*/
|
|
public int $id;
|
|
|
|
/**
|
|
* @var ?string plain tracking number
|
|
*/
|
|
public ?string $trackingNumber;
|
|
|
|
/**
|
|
* @var ?string URL to view tracking details
|
|
*/
|
|
public ?string $trackingUrl;
|
|
|
|
/**
|
|
* @var ?string shipping method (after mapping to Shop domain)
|
|
*/
|
|
public ?string $shippingMethod;
|
|
} |