1 | <?php |
||
16 | final class NegativeKeywordSharedSets extends Service |
||
17 | { |
||
18 | /** |
||
19 | * Создает наборы минус-фраз. |
||
20 | * |
||
21 | * @param $NegativeKeywordSharedSets |
||
22 | * @return array|\DOMDocument |
||
23 | * |
||
24 | * @throws \Yandex\Direct\Exception\ErrorResponseException |
||
25 | * @throws \Yandex\Direct\Exception\Exception |
||
26 | * |
||
27 | * @see https://yandex.ru/dev/direct/doc/ref-v5/negativekeywordsharedsets/add-docpage/ |
||
28 | */ |
||
29 | public function add($NegativeKeywordSharedSets) |
||
38 | |||
39 | /** |
||
40 | * Изменяет наборы минус-фраз. |
||
41 | * |
||
42 | * @param $NegativeKeywordSharedSets |
||
43 | * @return array|\DOMDocument |
||
44 | * |
||
45 | * @throws \Yandex\Direct\Exception\ErrorResponseException |
||
46 | * @throws \Yandex\Direct\Exception\Exception |
||
47 | * |
||
48 | * @see https://yandex.ru/dev/direct/doc/ref-v5/negativekeywordsharedsets/update-docpage/ |
||
49 | */ |
||
50 | public function update($NegativeKeywordSharedSets) |
||
59 | |||
60 | /** |
||
61 | * Возвращает наборы минус-фраз. |
||
62 | * |
||
63 | * @param $SelectionCriteria |
||
64 | * @param $FieldNames |
||
65 | * @param $Page |
||
66 | * @return array|\DOMDocument |
||
67 | * |
||
68 | * @throws \ReflectionException |
||
69 | * @throws \Yandex\Direct\Exception\ErrorResponseException |
||
70 | * @throws \Yandex\Direct\Exception\Exception |
||
71 | * |
||
72 | * @see https://yandex.ru/dev/direct/doc/ref-v5/negativekeywordsharedsets/get-docpage/ |
||
73 | */ |
||
74 | public function get($SelectionCriteria, $FieldNames, $Page = null) |
||
83 | |||
84 | /** |
||
85 | * Удаляет наборы минус-фраз. |
||
86 | * |
||
87 | * @param $SelectionCriteria |
||
88 | * @return array|\DOMDocument |
||
89 | * |
||
90 | * @throws \Yandex\Direct\Exception\ErrorResponseException |
||
91 | * @throws \Yandex\Direct\Exception\Exception |
||
92 | * |
||
93 | * @see https://yandex.ru/dev/direct/doc/ref-v5/negativekeywordsharedsets/delete-docpage/ |
||
94 | */ |
||
95 | public function delete($SelectionCriteria) |
||
104 | } |
||
105 |