|
1
|
|
|
<?php |
|
2
|
|
|
namespace Carpenstar\ByBitAPI\Derivatives\Contract\Position\GetExecutionList\Response; |
|
3
|
|
|
|
|
4
|
|
|
|
|
5
|
|
|
use Carpenstar\ByBitAPI\Core\Builders\ResponseDtoBuilder; |
|
6
|
|
|
use Carpenstar\ByBitAPI\Core\Objects\AbstractResponse; |
|
7
|
|
|
use Carpenstar\ByBitAPI\Core\Objects\Collection\EntityCollection; |
|
8
|
|
|
use Carpenstar\ByBitAPI\Derivatives\Contract\Position\GetExecutionList\Interfaces\IGetExecutionListResponseInterface; |
|
9
|
|
|
use Carpenstar\ByBitAPI\Derivatives\Contract\Position\GetExecutionList\Interfaces\IGetExecutionListResponseItemInterface; |
|
10
|
|
|
|
|
11
|
|
|
class GetExecutionListResponse extends AbstractResponse implements IGetExecutionListResponseInterface |
|
12
|
|
|
{ |
|
13
|
|
|
/** @var string $category */ |
|
14
|
|
|
private string $category; |
|
15
|
|
|
|
|
16
|
|
|
/** @var string $nextPageCursor */ |
|
17
|
|
|
private string $nextPageCursor; |
|
18
|
|
|
|
|
19
|
|
|
/** @var IGetExecutionListResponseItemInterface[] $list*/ |
|
20
|
|
|
private EntityCollection $list; |
|
21
|
|
|
|
|
22
|
|
|
public function __construct(array $data) |
|
23
|
|
|
{ |
|
24
|
|
|
$this->nextPageCursor = $data['nextPageCursor']; |
|
25
|
|
|
$this->category = $data['category']; |
|
26
|
|
|
|
|
27
|
|
|
$list = new EntityCollection(); |
|
28
|
|
|
|
|
29
|
|
|
if (!empty($data['list'])) { |
|
30
|
|
|
array_map(function ($item) use ($list) { |
|
31
|
|
|
$list->push(ResponseDtoBuilder::make(GetExecutionListResponseItem::class, $item)); |
|
32
|
|
|
}, $data['list']); |
|
33
|
|
|
} |
|
34
|
|
|
|
|
35
|
|
|
$this->list = $list; |
|
|
|
|
|
|
36
|
|
|
} |
|
37
|
|
|
|
|
38
|
|
|
public function getNextPageCursor(): string |
|
39
|
|
|
{ |
|
40
|
|
|
return $this->nextPageCursor; |
|
41
|
|
|
} |
|
42
|
|
|
|
|
43
|
|
|
public function getCategory(): string |
|
44
|
|
|
{ |
|
45
|
|
|
return $this->category; |
|
46
|
|
|
} |
|
47
|
|
|
|
|
48
|
|
|
/** @return IGetExecutionListResponseItemInterface[] */ |
|
49
|
|
|
public function getExecutionList(): array |
|
50
|
|
|
{ |
|
51
|
|
|
return $this->list->all(); |
|
52
|
|
|
} |
|
53
|
|
|
} |
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..