/** * Netsparker Enterprise API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Represents a model for carrying out a new scan notification recipient data */ export declare class NewScanNotificationRecipientApiModel { /** * Gets or sets the emails of users who will be notified via Email. */ 'emails'?: Array; /** * Gets or sets users\' emails who won\'t be notified */ 'excludedUsers'?: Array; /** * Integration is only used in \"New Scan\" and \"Scan Completed\" events. For New Scan Event: Only Team Messaging integrations can be added. (Slack, MS Teams and Mattermost etc.) For Scan Completed Event: Only Team Messaging and Issue Tracking integrations can be added. */ 'integrations'?: Array; /** * Gets or sets the phone numbers of users who will be notified via SMS. */ 'phoneNumbers'?: Array; /** * Gets or sets the emails of outsider recipients users who will be notified via Email */ 'outsiderRecipients'?: Array; /** * Gets or sets the specific recipients who will be notified via Email. */ 'specificEmailRecipients'?: Array; /** * Gets or sets the specific recipients who will be notified via SMS. */ 'specificSmsRecipients'?: Array; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace NewScanNotificationRecipientApiModel { enum SpecificEmailRecipientsEnum { None, WebsiteTechnicalContact, PersonWhoStartedScan, AllAuthorized, AccountAdmins } enum SpecificSmsRecipientsEnum { None, WebsiteTechnicalContact, PersonWhoStartedScan, AllAuthorized, AccountAdmins } }