1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
RequestStatus.php
См. документацию.
1<?php
2declare(strict_types=1);
3
4namespace Bitrix\Landing\Copilot\Generation\Type;
5
6enum RequestStatus: int
7{
8 case New = 0;
9 case Sent = 10;
10 case Received = 20;
11 case Applied = 30;
12}