1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
deal.php
См. документацию.
1<?php
2
3
4namespace Bitrix\Sale\Exchange\Integration\Rest\RemoteProxies\CRM;
5
6
7use Bitrix\Sale\Exchange\Integration\Rest;
8
10 implements IDeal
11{
12 public function adds($list)
13 {
14 return $this
16 ->call();
17 }
18
19 public function contactItemsGet($id)
20 {
21 return $this
23 'id' => $id])
24 ->call();
25 }
26
27 public function contactItemsSet($id, $items)
28 {
29 return $this
31 'id' => $id,
32 'items' => $items])
33 ->call();
34 }
35}
$items
Определения template.php:224