mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2025-02-07 18:20:10 +01:00
20 lines
445 B
PHP
20 lines
445 B
PHP
<?php
|
|
|
|
/*
|
|
* SPDX-FileCopyrightText: 2022 Andreas Palm
|
|
*
|
|
* SPDX-License-Identifier: LicenseRef-EGPL-3.1
|
|
*/
|
|
|
|
namespace Xentral\Modules\ShippingMethod\Model;
|
|
|
|
class CreateShipmentResult
|
|
{
|
|
public bool $Success = false;
|
|
public array $Errors = [];
|
|
public ?string $Label = null;
|
|
public ?string $ExportDocuments = null;
|
|
public ?string $TrackingNumber = null;
|
|
public ?string $TrackingUrl = null;
|
|
public ?string $AdditionalInfo = null;
|
|
} |