/*! * Copyright Adaptavist 2022 (c) All rights reserved */ export interface UpdateSavedSearchPayload { name?: string; description?: string; query?: string; owner?: { id?: string; username?: string; }; /** * Teams that the alert will be routed to send notifications */ teams?: Array<{ id?: string; name?: string; }>; } //# sourceMappingURL=UpdateSavedSearchPayload.d.ts.map