| 1 | <?php |
||
| 20 | class ContactListContactsBuilder extends BaseObject implements ObjectBuilderInterface |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * @var string |
||
| 24 | */ |
||
| 25 | public $id; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @var array |
||
| 29 | */ |
||
| 30 | public $vids = []; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @var array |
||
| 34 | */ |
||
| 35 | public $emails = []; |
||
| 36 | |||
| 37 | /** |
||
| 38 | * @return string |
||
| 39 | */ |
||
| 40 | public function getId(): string |
||
| 44 | |||
| 45 | /** |
||
| 46 | * @return array |
||
| 47 | */ |
||
| 48 | public function getPayload(): array |
||
| 57 | |||
| 58 | /** |
||
| 59 | * @param ElementInterface $element |
||
| 60 | * @param Objects $field |
||
| 61 | */ |
||
| 62 | public function addElement(ElementInterface $element, Objects $field) |
||
| 79 | } |
||
| 80 |