import { Beacon } from "./beacon"; import { DomainObject } from "./domain-object"; import { PrinterType } from "./all.enum"; import { GatewayPrinterSetting } from "./gateway-printer-setting"; export declare class GatewayPrinter extends DomainObject { PrinterId?: string | undefined; BeaconId?: string | undefined; Beacon?: Beacon | undefined; GatewayInstallationName?: string | undefined; PrinterName?: string | undefined; Type: PrinterType | undefined; Settings?: GatewayPrinterSetting[]; } //# sourceMappingURL=gateway-printer.d.ts.map