* @link http://www.oxidmodule.com */ declare(strict_types=1); namespace D3\LinkmobilityClient\RecipientsList; use D3\LinkmobilityClient\ValueObject\Recipient; interface RecipientsListInterface { public function add(Recipient $recipient) : RecipientsListInterface; public function clearRecipents() : RecipientsListInterface; public function getRecipients() : array; }