It contains the information of the current device. The object is available on Frontend as well as backend.
| Value | Description |
|---|---|
| isMobile | True if device is mobile device (phone or tablet) |
| isMobileApp | True if the request is from Mobile App. |
| isTablet | True if the device is a tablet |
| isPhone | True if device is phone. |
| isAndroid | True for an Android device |
| isIphone | True for iPhone device |
| isIpad | True for iPad device |
| isBot | True if the request is from a bot |
| isFacebookStore | True if the request is from a Facebook store |
<h3 v-if="ms.device.isAndroid">Android Device</h3>
<h3 v-if="ms.device.isMobile">Mobile Devices (phone or tablet)</h3>
<h3 v-if="ms.device.isMobileApp">Mobile App</h3>
<h3 v-if="ms.device.isTablet">Tablet</h3>
<h3 v-if="ms.device.isIphone">iPhone</h3>
<h3 v-if="ms.device.isIpad">iPad</h3>