1 | <?php |
||
15 | class ContactSet extends BaseMethod |
||
16 | { |
||
17 | /** |
||
18 | * @var AmoEntityInterface[] |
||
19 | */ |
||
20 | private $addContacts = []; |
||
21 | |||
22 | /** |
||
23 | * @var AmoEntityInterface[] |
||
24 | */ |
||
25 | private $updateContacts = []; |
||
26 | |||
27 | /** |
||
28 | * @return RequestInterface |
||
29 | */ |
||
30 | public function buildRequest() |
||
60 | |||
61 | /** |
||
62 | * @return AmoEntityInterface[] |
||
63 | */ |
||
64 | public function getContacts() |
||
68 | |||
69 | /** |
||
70 | * @param AmoIdentityInterface[] $contacts |
||
71 | * @return $this |
||
72 | */ |
||
73 | public function setContacts($contacts) |
||
89 | |||
90 | } |
||
91 |