1 | <?php |
||
22 | final class Feeds extends Service |
||
23 | { |
||
24 | /** |
||
25 | * Создает фиды. |
||
26 | * |
||
27 | * @param array $Feeds |
||
28 | * |
||
29 | * @return array |
||
30 | * |
||
31 | * @throws ReflectionException |
||
32 | * @throws ErrorResponseException |
||
33 | * @throws Exception |
||
34 | * |
||
35 | * @see https://yandex.ru/dev/direct/doc/ref-v5/feeds/add-docpage/ |
||
36 | */ |
||
37 | public function add($Feeds) |
||
46 | |||
47 | /** |
||
48 | * Удаляет фиды. |
||
49 | * |
||
50 | * @param array $SelectionCriteria |
||
51 | * |
||
52 | * @return array |
||
53 | * |
||
54 | * @throws ReflectionException |
||
55 | * @throws ErrorResponseException |
||
56 | * @throws Exception |
||
57 | * |
||
58 | * @see https://yandex.ru/dev/direct/doc/ref-v5/feeds/delete-docpage/ |
||
59 | */ |
||
60 | public function delete($SelectionCriteria) |
||
69 | |||
70 | /** |
||
71 | * Возвращает параметры фидов, отвечающих заданным критериям. |
||
72 | * |
||
73 | * @param array $SelectionCriteria |
||
74 | * @param array $FieldNames |
||
75 | * @param array $FileFeedFieldNames |
||
76 | * @param array $UrlFeedFieldNames |
||
77 | * @param array $Page |
||
78 | * |
||
79 | * @return array |
||
80 | * |
||
81 | * @throws ErrorResponseException |
||
82 | * @throws Exception |
||
83 | * @throws ReflectionException |
||
84 | * |
||
85 | * @see https://yandex.ru/dev/direct/doc/ref-v5/feeds/get-docpage/ |
||
86 | */ |
||
87 | public function get( |
||
101 | |||
102 | /** |
||
103 | * Изменяет параметры фида. |
||
104 | * |
||
105 | * @param array $Feeds |
||
106 | * |
||
107 | * @return array |
||
108 | * |
||
109 | * @throws ErrorResponseException |
||
110 | * @throws Exception |
||
111 | * @throws ReflectionException |
||
112 | * |
||
113 | * @see https://yandex.ru/dev/direct/doc/ref-v5/feeds/update-docpage/ |
||
114 | */ |
||
115 | public function update($Feeds) |
||
124 | } |
||
125 |