import CrudType from "./base/action"; import IImportModel from "./base/iimportmodel"; import ImportModel from "./base/importmodel"; import { BackOfficeSystemType } from "."; export default class Connector extends ImportModel implements IImportModel { name?: string; description?: string; sourceApp: string; sendAppointmentToWebService?: boolean; uri: string; backOfficeSystem: BackOfficeSystemType; login?: string; password?: string; toImportRequest(action: CrudType): Record; }