mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2025-02-22 17:19:24 +01:00
13 lines
272 B
PHP
13 lines
272 B
PHP
|
<?php
|
||
|
|
||
|
namespace Xentral\Modules\ShippingMethod\Model;
|
||
|
|
||
|
class CreateShipmentResult
|
||
|
{
|
||
|
public bool $Success = false;
|
||
|
public array $Errors = [];
|
||
|
public ?string $Label;
|
||
|
public ?string $ExportDocuments;
|
||
|
public ?string $TrackingNumber;
|
||
|
public ?string $TrackingUrl;
|
||
|
}
|