OpenXE/classes/Carrier/Go/Data/OrderStatus.php

13 lines
251 B
PHP
Raw Normal View History

2025-01-03 21:07:07 +01:00
<?php
// SPDX-FileCopyrightText: 2025 Andreas Palm
//
// SPDX-License-Identifier: AGPL-3.0-only
namespace Xentral\Carrier\Go\Data;
enum OrderStatus : string {
case New = 'New';
case Released = 'Released';
case Cancelled = 'Cancelled';
}