/** * 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. */ import { CustomHttpHeaderModel } from './customHttpHeaderModel'; import { IntegrationWizardResultModel } from './integrationWizardResultModel'; import { NotificationIntegrationCustomFieldModel } from './notificationIntegrationCustomFieldModel'; /** * The Webhook integration info */ export declare class WebhookIntegrationInfoModel { /** * The HTTP method that indicates the action to be performed on a resource for the request. */ 'httpMethodType'?: WebhookIntegrationInfoModel.HttpMethodTypeEnum; /** * This is the data format in which requests are sent. */ 'parameterType'?: WebhookIntegrationInfoModel.ParameterTypeEnum; /** * The URL to which issues should be sent. */ 'url': string; /** * The parameter name of the issue. */ 'issue'?: string; /** * Gets or sets the Http Header. */ 'customHttpHeaderModels'?: Array; /** * The parameter name of the issue title. */ 'title'?: string; /** * The parameter name of the issue body. */ 'body'?: string; /** * The Username for the HTTP authentication. */ 'username'?: string; /** * The Password for the HTTP authentication. */ 'password'?: string; 'type'?: WebhookIntegrationInfoModel.TypeEnum; /** * 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; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace WebhookIntegrationInfoModel { enum HttpMethodTypeEnum { Get, Post, Put } enum ParameterTypeEnum { Form, Json, Xml, QueryString } enum TypeEnum { Jira, GitHub, Tfs, FogBugz, ServiceNow, Slack, GitLab, Bitbucket, Unfuddle, Zapier, AzureDevOps, Redmine, Bugzilla, Kafka, PagerDuty, MicrosoftTeams, Clubhouse, Trello, Asana, Webhook, Kenna, Freshservice, YouTrack, NetsparkerEnterprise, Splunk, Mattermost, Hashicorp, PivotalTracker, CyberArk } }