/** * 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 Bugzilla integration info */ export class BugzillaIntegrationInfoModel { 'type'?: BugzillaIntegrationInfoModel.TypeEnum; /** * The Bugzilla instance URL. */ 'url': string; /** * API Key for authentication. */ 'apiKey': string; /** * The product name. */ 'product': string; /** * The name of a component. */ 'component': string; /** * The product version that the issue was found in. */ 'version': string; /** * What type of hardware the bug was experienced on. */ 'platform': string; /** * The operating system the bug was discovered on. */ 'operationSystem': string; /** * The status that this bug should start out as. */ 'status'?: string; /** * The priority of the bug. */ 'priority'?: string; /** * The user email adress to assign issues to. */ 'assignedTo'?: string; /** * The serverity of the bug. */ 'severity'?: string; /** * A valid target milestone for the product. */ 'milestone'?: string; /** * The days when incident is due from the time that issue is created on. */ 'dueDays'?: number; /** * 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 type of the jira template. */ 'templateType'?: BugzillaIntegrationInfoModel.TemplateTypeEnum; /** * 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": "BugzillaIntegrationInfoModel.TypeEnum" }, { "name": "url", "baseName": "Url", "type": "string" }, { "name": "apiKey", "baseName": "ApiKey", "type": "string" }, { "name": "product", "baseName": "Product", "type": "string" }, { "name": "component", "baseName": "Component", "type": "string" }, { "name": "version", "baseName": "Version", "type": "string" }, { "name": "platform", "baseName": "Platform", "type": "string" }, { "name": "operationSystem", "baseName": "OperationSystem", "type": "string" }, { "name": "status", "baseName": "Status", "type": "string" }, { "name": "priority", "baseName": "Priority", "type": "string" }, { "name": "assignedTo", "baseName": "AssignedTo", "type": "string" }, { "name": "severity", "baseName": "Severity", "type": "string" }, { "name": "milestone", "baseName": "Milestone", "type": "string" }, { "name": "dueDays", "baseName": "DueDays", "type": "number" }, { "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": "templateType", "baseName": "TemplateType", "type": "BugzillaIntegrationInfoModel.TemplateTypeEnum" }, { "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 BugzillaIntegrationInfoModel.attributeTypeMap; } } export namespace BugzillaIntegrationInfoModel { 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 TemplateTypeEnum { Standard = 'Standard', Detailed = 'Detailed' } }