/*! * Copyright Adaptavist 2022 (c) All rights reserved */ export interface Recipient { type: "user" | "escalation" | "schedule" | "team"; id?: string; name?: string; username?: string; } //# sourceMappingURL=Recipient.d.ts.map