Issue resource done

This commit is contained in:
Ricardo Espinoza
2019-11-29 17:30:00 -05:00
parent 8e5ad3f4b1
commit 9def6cd6ae
4 changed files with 1032 additions and 38 deletions

View File

@@ -14,3 +14,24 @@ export interface IFields {
export interface IIssue {
fields?: IFields;
}
export interface INotify {
subject?: string;
textBody?: string;
htmlBody?: string;
to?: INotificationRecipients;
restrict?: NotificationRecipientsRestrictions;
}
export interface INotificationRecipients {
reporter?: boolean;
assignee?: boolean;
watchers?: boolean;
voters?: boolean;
users?: IDataObject[];
groups?: IDataObject[];
}
export interface NotificationRecipientsRestrictions {
groups?: IDataObject[];
}