IDeviceInfo Interface
Information about the available mobile device returned from Digital Lab.

C# Syntax

public interface IDeviceInfo 
Public Properties
 NameDescription
PropertyFleetType

The fleetType of the device, as defined on Digital Lab.

The fleetType is relevant only when the device is hosted by OpenText or stored on an AWS farm. (DeviceSource=Hosted or AmazonDeviceFarm)

C# Syntax

string FleetType {get;}

Possible values: Any (default), Public, or Private.

PropertyIdThe ID of the device in Digital Lab.  
PropertyLocation

The geographical location of the public device, as defined on Digital Lab.

The location is relevant only when the DeviceSource is Hosted and the fleetType is Public.

C# Syntax

 string Location {get;}

Possible values: Any (default) or a string representing the geographic location.

PropertyManufacturerThe manufacturer of the device.  
PropertyModelThe model name of the device.  
PropertyNameThe name of the device as defined in Digital Lab.  
PropertyOSTypeThe operating system currently running on the device.  
PropertyOSVersionThe version of the operating system currently running on the device.  
Top