You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<?php
namespace App\System\DocuWare\Enums;
use App\Traits\HasArray;
use App\Traits\HasLabels;
enum DocuWareFieldTypeEnum: string
{
use HasArray;
case STRING = 'String';
case INT = 'Int';
case DECIMAL = 'Decimal';
case DATE = 'Date';
case DATETIME = 'DateTime';
case TABLE = 'Table';
}
The text was updated successfully, but these errors were encountered:
Question or Feature?
Is there a Field Type Enum?
The text was updated successfully, but these errors were encountered: