import { UserDetails } from "../definitions/UserDetails"; import { GroupName } from "../definitions/GroupName"; export interface NotificationRecipients { /** * Whether the notification should be sent to the issue's reporter. */ reporter?: boolean; /** * Whether the notification should be sent to the issue's assignees. */ assignee?: boolean; /** * Whether the notification should be sent to the issue's watchers. */ watchers?: boolean; /** * Whether the notification should be sent to the issue's voters. */ voters?: boolean; /** * List of users to receive the notification. */ users?: Array; /** * List of groups to receive the notification. */ groups?: Array; [x: string]: any; } //# sourceMappingURL=NotificationRecipients.d.ts.map