1 | <?php |
||
18 | class CompanyContactsMutatorCriteria extends AbstractCriteria |
||
19 | { |
||
20 | use ConnectionTrait, |
||
21 | CacheTrait; |
||
22 | |||
23 | /** |
||
24 | * @var string |
||
25 | */ |
||
26 | public $companyId; |
||
27 | |||
28 | /** |
||
29 | * @var string |
||
30 | */ |
||
31 | public $contactId; |
||
32 | |||
33 | /** |
||
34 | * @return string |
||
35 | */ |
||
36 | public function getCompanyId(): string |
||
40 | |||
41 | /** |
||
42 | * @return string |
||
43 | */ |
||
44 | public function getContactId(): string |
||
48 | |||
49 | /** |
||
50 | * @param array $criteria |
||
51 | * @param array $config |
||
52 | * @return ResponseInterface |
||
53 | */ |
||
54 | public function add(array $criteria = [], array $config = []): ResponseInterface |
||
67 | |||
68 | /** |
||
69 | * @param array $criteria |
||
70 | * @param array $config |
||
71 | * @return ResponseInterface |
||
72 | */ |
||
73 | public function remove(array $criteria = [], array $config = []): ResponseInterface |
||
86 | } |
||
87 |