| Current Path : /var/www/homesaver/www/bitrix/modules/location/lib/entity/address/ |
| Current File : /var/www/homesaver/www/bitrix/modules/location/lib/entity/address/iaddresslink.php |
<?php
namespace Bitrix\Location\Entity\Address;
/**
* This interface could be used for entities linked with addresses
*
* Interface IAddressLink
* @package Bitrix\Location\Entity\Address
*/
interface IAddressLink
{
/**
* Returns linked entity identifier
*
* @return string
*/
public function getAddressLinkEntityId(): string;
/**
* Returns linked entity type
*
* @return string
*/
public function getAddressLinkEntityType(): string;
}