<?php
namespace App\Komma\Shop\ShipmentGroups;
use App\Komma\Base\Enum;
class ShipmentGroupStatus extends Enum
{
const PENDING = 'pending'; //A group of shipments of which their statusses are not all "completed"
const SHIPPED = 'shipped'; //A group of shipments of which their statusses are all "completed"
}