marsol
Version:
Marsol.ly services JS SDK
26 lines (25 loc) • 405 B
TypeScript
/**
*
* @export
* @interface PrivateDevicesDto
*/
export interface PrivateDevicesDto {
/**
*
* @type {string}
* @memberof PrivateDevicesDto
*/
deviceId: string;
/**
*
* @type {string}
* @memberof PrivateDevicesDto
*/
phoneNumber: string;
/**
*
* @type {boolean}
* @memberof PrivateDevicesDto
*/
available: boolean;
}