1 | <?php |
||
20 | class ContactLists extends Objects |
||
21 | { |
||
22 | /** |
||
23 | * @inheritdoc |
||
24 | */ |
||
25 | public function getObjectLabel(): string |
||
29 | |||
30 | /** |
||
31 | * @inheritdoc |
||
32 | */ |
||
33 | public static function displayName(): string |
||
37 | |||
38 | /** |
||
39 | * @inheritdoc |
||
40 | */ |
||
41 | public static function defaultSelectionLabel(): string |
||
45 | |||
46 | /** |
||
47 | * @inheritdoc |
||
48 | * @throws \flipbox\craft\integration\exceptions\ConnectionNotFound |
||
49 | */ |
||
50 | protected function upsertToHubSpot( |
||
61 | |||
62 | /** |
||
63 | * @inheritdoc |
||
64 | * @throws \flipbox\craft\integration\exceptions\ConnectionNotFound |
||
65 | * @throws \Exception |
||
66 | */ |
||
67 | public function readFromHubSpot( |
||
76 | |||
77 | /** |
||
78 | * @param ResponseInterface $response |
||
79 | * @return string|null |
||
80 | */ |
||
81 | protected function getObjectIdFromResponse(ResponseInterface $response) |
||
91 | } |
||
92 |