UNPKG

marsol

Version:
26 lines (25 loc) 405 B
/** * * @export * @interface PrivateDevicesDto */ export interface PrivateDevicesDto { /** * * @type {string} * @memberof PrivateDevicesDto */ deviceId: string; /** * * @type {string} * @memberof PrivateDevicesDto */ phoneNumber: string; /** * * @type {boolean} * @memberof PrivateDevicesDto */ available: boolean; }