/** * Invicti 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. */ import { RequestFile } from './models'; /** * Represents a model for carrying out a new scan notification recipient data */ export 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 = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "emails", "baseName": "Emails", "type": "Array" }, { "name": "excludedUsers", "baseName": "ExcludedUsers", "type": "Array" }, { "name": "integrations", "baseName": "Integrations", "type": "Array" }, { "name": "phoneNumbers", "baseName": "PhoneNumbers", "type": "Array" }, { "name": "outsiderRecipients", "baseName": "OutsiderRecipients", "type": "Array" }, { "name": "specificEmailRecipients", "baseName": "SpecificEmailRecipients", "type": "Array" }, { "name": "specificSmsRecipients", "baseName": "SpecificSmsRecipients", "type": "Array" } ]; static getAttributeTypeMap() { return NewScanNotificationRecipientApiModel.attributeTypeMap; } } export namespace NewScanNotificationRecipientApiModel { export enum SpecificEmailRecipientsEnum { None = 'None', WebsiteTechnicalContact = 'WebsiteTechnicalContact', PersonWhoStartedScan = 'PersonWhoStartedScan', AllAuthorized = 'AllAuthorized', AccountAdmins = 'AccountAdmins' } export enum SpecificSmsRecipientsEnum { None = 'None', WebsiteTechnicalContact = 'WebsiteTechnicalContact', PersonWhoStartedScan = 'PersonWhoStartedScan', AllAuthorized = 'AllAuthorized', AccountAdmins = 'AccountAdmins' } }