/** * The Jira Cloud platform REST API * Jira Cloud platform REST API documentation * * The version of the OpenAPI document: 1001.0.0-SNAPSHOT * Contact: ecosystem@atlassian.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { GroupName, RestrictedPermission } from './'; /** * Details of the group membership or permissions needed to receive the notification. * @export * @interface NotificationRecipientsRestrictions */ export interface NotificationRecipientsRestrictions { /** * List of permissions required to receive the notification. * @type {Array} * @memberof NotificationRecipientsRestrictions */ permissions?: Array; /** * List of group memberships required to receive the notification. * @type {Array} * @memberof NotificationRecipientsRestrictions */ groups?: Array; } export declare function NotificationRecipientsRestrictionsFromJSON(json: any): NotificationRecipientsRestrictions; export declare function NotificationRecipientsRestrictionsFromJSONTyped(json: any, ignoreDiscriminator: boolean): NotificationRecipientsRestrictions; export declare function NotificationRecipientsRestrictionsToJSON(value?: NotificationRecipientsRestrictions): any;