Bitrix-D7
23.9
Загрузка...
Поиск...
Не найдено
GetFullFilledListResponse.php
1
<?php
2
3
namespace
Bitrix\Bizproc\Api\Response\WorkflowStateService
;
4
5
use
Bitrix\Main\Result
;
6
7
class
GetFullFilledListResponse
extends
Result
8
{
9
public
function
getWorkflowStatesList
(): array
10
{
11
$collection = $this->data[
'collection'
] ?? [];
12
13
return
is_array($collection) ? $collection : [];
14
}
15
16
public
function
getMembersInfo
(): array
17
{
18
$membersInfo = $this->data[
'membersInfo'
] ?? [];
19
20
return
is_array($membersInfo) ? $membersInfo : [];
21
}
22
23
public
function
setWorkflowStatesList
(array $collection): static
24
{
25
$this->data[
'collection'
] = $collection;
26
27
return
$this;
28
}
29
30
public
function
setMembersInfo
(array $info): static
31
{
32
$this->data[
'membersInfo'
] = $info;
33
34
return
$this;
35
}
36
}
Bitrix\Bizproc\Api\Response\WorkflowStateService\GetFullFilledListResponse
Definition
GetFullFilledListResponse.php:8
Bitrix\Bizproc\Api\Response\WorkflowStateService\GetFullFilledListResponse\setWorkflowStatesList
setWorkflowStatesList(array $collection)
Definition
GetFullFilledListResponse.php:23
Bitrix\Bizproc\Api\Response\WorkflowStateService\GetFullFilledListResponse\setMembersInfo
setMembersInfo(array $info)
Definition
GetFullFilledListResponse.php:30
Bitrix\Bizproc\Api\Response\WorkflowStateService\GetFullFilledListResponse\getWorkflowStatesList
getWorkflowStatesList()
Definition
GetFullFilledListResponse.php:9
Bitrix\Bizproc\Api\Response\WorkflowStateService\GetFullFilledListResponse\getMembersInfo
getMembersInfo()
Definition
GetFullFilledListResponse.php:16
Bitrix\Bizproc\Result
Definition
result.php:6
Bitrix\Main\ORM\Data\Result
Definition
result.php:16
Bitrix\Bizproc\Api\Response\WorkflowStateService
Definition
GetAverageWorkflowDurationResponse.php:3
modules
bizproc
lib
Api
Response
WorkflowStateService
GetFullFilledListResponse.php
Создано системой
1.10.0