homey-api
Version:
23 lines (17 loc) • 333 B
JavaScript
const APIDefinition = require('../APIDefinition');
/**
* A Device (e.g. smartphone) from an {@link AthomCloudAPI.User}.
* @class
* @hideconstructor
* @memberof AthomCloudAPI
*/
class Device extends APIDefinition {
/**
* @type string
*/
get id() {
return this._id;
}
}
module.exports = Device;
;