1 | <?php |
||
18 | class TimelineEventCriteria extends AbstractCriteria |
||
19 | { |
||
20 | use CacheTrait, |
||
21 | IdAttributeTrait, |
||
22 | TypeIdAttributeTrait, |
||
23 | IntegrationConnectionTrait, |
||
24 | PayloadAttributeTrait; |
||
25 | |||
26 | /** |
||
27 | * @param array $criteria |
||
28 | * @param array $config |
||
29 | * @return ResponseInterface |
||
30 | * @throws \Exception |
||
31 | */ |
||
32 | public function read(array $criteria = [], array $config = []): ResponseInterface |
||
45 | |||
46 | /** |
||
47 | * @param array $criteria |
||
48 | * @param array $config |
||
49 | * @return ResponseInterface |
||
50 | * @throws \Exception |
||
51 | */ |
||
52 | public function upsert(array $criteria = [], array $config = []): ResponseInterface |
||
66 | } |
||
67 |