UNPKG

ch-api-client-typescript2

Version:
62 lines 1.32 kB
/** * CloudHospital Api * CloudHospital application with Swagger, Swashbuckle, and API versioning. * * The version of the OpenAPI document: 2 * Contact: developer@icloudhospital.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { Platform } from './platform'; /** * * @export * @interface CreateDeviceCommand */ export interface CreateDeviceCommand { /** * * @type {string} * @memberof CreateDeviceCommand */ 'id'?: string; /** * * @type {string} * @memberof CreateDeviceCommand */ 'token'?: string | null; /** * * @type {Platform} * @memberof CreateDeviceCommand */ 'platform'?: Platform; /** * * @type {Array<string>} * @memberof CreateDeviceCommand */ 'tags'?: Array<string> | null; /** * * @type {boolean} * @memberof CreateDeviceCommand */ 'appAlert'?: boolean; /** * * @type {boolean} * @memberof CreateDeviceCommand */ 'eventAlert'?: boolean; /** * * @type {boolean} * @memberof CreateDeviceCommand */ 'noticeAlert'?: boolean; } //# sourceMappingURL=create-device-command.d.ts.map