/** * 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'; import { IntegrationWizardResultModel } from './integrationWizardResultModel'; import { NotificationIntegrationCustomFieldModel } from './notificationIntegrationCustomFieldModel'; /** * The Jazz Team integration info */ export class JazzTeamIntegrationInfoModel { 'type'?: JazzTeamIntegrationInfoModel.TypeEnum; /** * Jazz Team base URL. */ 'serverURL': string; /** * The username of the user. */ 'username': string; /** * The password of the user. */ 'password': string; /** * The Id of Project Area */ 'projectAreaId': string; /** * Category name for work items. */ 'categoryName': string; /** * The work item tags. To add more than one tag, separate each one with a space ( ). For example: tag1 tag2 */ 'tags'?: string; /** * This is the number of days from the date of the work item was created to the day of it\'s due. */ 'dueDays'?: number; /** * Severity level for work items. */ 'severity'?: JazzTeamIntegrationInfoModel.SeverityEnum; /** * Priority level for work items. */ 'priority'?: JazzTeamIntegrationInfoModel.PriorityEnum; /** * Type for work items. */ 'workItemType'?: JazzTeamIntegrationInfoModel.WorkItemTypeEnum; 'templateType'?: JazzTeamIntegrationInfoModel.TemplateTypeEnum; /** * Gets or sets the account ID. */ 'accountID'?: string; /** * Gets or sets the Custom Fields. */ 'customFields'?: Array; /** * Gets the generic error message. */ 'genericErrorMessage'?: string; /** * Gets or sets the request identifier. */ 'identifier'?: string; /** * Gets or sets the {Invicti.Cloud.Core.Models.ScanNotificationIntegration} name. */ 'name'?: string; /** * Gets or sets the type of the issue. */ 'reopenStatus'?: string; 'integrationWizardResultModel'?: IntegrationWizardResultModel; /** * Gets or sets the type of the issue. */ 'resolvedStatus'?: string; /** * Gets the test message body. */ 'testMessageBody'?: string; /** * Gets the test message title. */ 'testMessageTitle'?: string; /** * Gets or sets the title format. */ 'titleFormat': string; /** * Gets the webhook URL. */ 'webhookUrl'?: string; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "type", "baseName": "Type", "type": "JazzTeamIntegrationInfoModel.TypeEnum" }, { "name": "serverURL", "baseName": "ServerURL", "type": "string" }, { "name": "username", "baseName": "Username", "type": "string" }, { "name": "password", "baseName": "Password", "type": "string" }, { "name": "projectAreaId", "baseName": "ProjectAreaId", "type": "string" }, { "name": "categoryName", "baseName": "CategoryName", "type": "string" }, { "name": "tags", "baseName": "Tags", "type": "string" }, { "name": "dueDays", "baseName": "DueDays", "type": "number" }, { "name": "severity", "baseName": "Severity", "type": "JazzTeamIntegrationInfoModel.SeverityEnum" }, { "name": "priority", "baseName": "Priority", "type": "JazzTeamIntegrationInfoModel.PriorityEnum" }, { "name": "workItemType", "baseName": "WorkItemType", "type": "JazzTeamIntegrationInfoModel.WorkItemTypeEnum" }, { "name": "templateType", "baseName": "TemplateType", "type": "JazzTeamIntegrationInfoModel.TemplateTypeEnum" }, { "name": "accountID", "baseName": "AccountID", "type": "string" }, { "name": "customFields", "baseName": "CustomFields", "type": "Array" }, { "name": "genericErrorMessage", "baseName": "GenericErrorMessage", "type": "string" }, { "name": "identifier", "baseName": "Identifier", "type": "string" }, { "name": "name", "baseName": "Name", "type": "string" }, { "name": "reopenStatus", "baseName": "ReopenStatus", "type": "string" }, { "name": "integrationWizardResultModel", "baseName": "IntegrationWizardResultModel", "type": "IntegrationWizardResultModel" }, { "name": "resolvedStatus", "baseName": "ResolvedStatus", "type": "string" }, { "name": "testMessageBody", "baseName": "TestMessageBody", "type": "string" }, { "name": "testMessageTitle", "baseName": "TestMessageTitle", "type": "string" }, { "name": "titleFormat", "baseName": "TitleFormat", "type": "string" }, { "name": "webhookUrl", "baseName": "WebhookUrl", "type": "string" } ]; static getAttributeTypeMap() { return JazzTeamIntegrationInfoModel.attributeTypeMap; } } export namespace JazzTeamIntegrationInfoModel { export enum TypeEnum { Jira = 'Jira', GitHub = 'GitHub', Tfs = 'TFS', FogBugz = 'FogBugz', ServiceNow = 'ServiceNow', Slack = 'Slack', GitLab = 'GitLab', Bitbucket = 'Bitbucket', Unfuddle = 'Unfuddle', Zapier = 'Zapier', AzureDevOps = 'AzureDevOps', Redmine = 'Redmine', Bugzilla = 'Bugzilla', Kafka = 'Kafka', PagerDuty = 'PagerDuty', MicrosoftTeams = 'MicrosoftTeams', Clubhouse = 'Clubhouse', Trello = 'Trello', Asana = 'Asana', Webhook = 'Webhook', Kenna = 'Kenna', Freshservice = 'Freshservice', YouTrack = 'YouTrack', NetsparkerEnterprise = 'NetsparkerEnterprise', Splunk = 'Splunk', Mattermost = 'Mattermost', Hashicorp = 'Hashicorp', PivotalTracker = 'PivotalTracker', CyberArk = 'CyberArk', DefectDojo = 'DefectDojo', JazzTeam = 'JazzTeam' } export enum SeverityEnum { Blocker = 'Blocker', Critical = 'Critical', Major = 'Major', Normal = 'Normal', Minor = 'Minor', Unclassified = 'Unclassified' } export enum PriorityEnum { High = 'High', Medium = 'Medium', Low = 'Low', Unassigned = 'Unassigned' } export enum WorkItemTypeEnum { Task = 'Task', Defect = 'Defect' } export enum TemplateTypeEnum { Standard = 'Standard', Detailed = 'Detailed' } }