Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/modules/messageservice/lib/Providers/Edna/Constants/
Upload File :
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,
		];
	}
}