| Current Path : /var/www/homesaver/www/bitrix/modules/messageservice/lib/Providers/Edna/Constants/ |
| Current File : /var/www/homesaver/www/bitrix/modules/messageservice/lib/Providers/Edna/Constants/ChannelType.php |
<?php
namespace Bitrix\MessageService\Providers\Edna\Constants;
class ChannelType
{
public const WHATSAPP = 'WHATSAPP';
public const SMS = 'SMS';
public const VIBER = 'VIBER';
public static function getAllTypeList(): array
{
return [
self::WHATSAPP,
self::SMS,
self::VIBER,
];
}
}