/** * 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'; import { TrelloBoard } from './trelloBoard'; import { TrelloLabel } from './trelloLabel'; import { TrelloList } from './trelloList'; import { TrelloMember } from './trelloMember'; /** * The Trello integration info */ export class TrelloIntegrationInfoModel { /** * The API Key for API requests. */ 'apiKey': string; /** * The Token ID identifier. */ 'token': string; /** * The List identifier. */ 'listId': string; 'integrationWizardResultModel'?: IntegrationWizardResultModel; /** * The Board identifier. */ 'boardId': string; /** * The TrelloBoard List. */ 'boardIds'?: Array; /** * The TrelloList List. */ 'lists'?: Array; /** * The TrelloMember List. */ 'members'?: Array; /** * The TrelloLabel List. */ 'labels'?: Array; /** * Comma-separated Member identifiers. */ 'memberIds'?: Array; /** * Comma-separated Label identifiers. */ 'labelIds'?: Array; /** * Comma-separated Label to convert string identifiers. */ 'labelIdsSelected'?: string; /** * Comma-separated Member to convert string identifiers. */ 'memberIdsSelected'?: string; /** * The days when incident is due from the time that issue is created on. */ 'dueDays': number; 'type'?: TrelloIntegrationInfoModel.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 type of the jira template. */ 'templateType'?: TrelloIntegrationInfoModel.TemplateTypeEnum; /** * Gets or sets the type of the issue. */ 'reopenStatus'?: string; /** * 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": "apiKey", "baseName": "ApiKey", "type": "string" }, { "name": "token", "baseName": "Token", "type": "string" }, { "name": "listId", "baseName": "ListId", "type": "string" }, { "name": "integrationWizardResultModel", "baseName": "IntegrationWizardResultModel", "type": "IntegrationWizardResultModel" }, { "name": "boardId", "baseName": "BoardId", "type": "string" }, { "name": "boardIds", "baseName": "BoardIds", "type": "Array" }, { "name": "lists", "baseName": "Lists", "type": "Array" }, { "name": "members", "baseName": "Members", "type": "Array" }, { "name": "labels", "baseName": "Labels", "type": "Array" }, { "name": "memberIds", "baseName": "MemberIds", "type": "Array" }, { "name": "labelIds", "baseName": "LabelIds", "type": "Array" }, { "name": "labelIdsSelected", "baseName": "LabelIdsSelected", "type": "string" }, { "name": "memberIdsSelected", "baseName": "MemberIdsSelected", "type": "string" }, { "name": "dueDays", "baseName": "DueDays", "type": "number" }, { "name": "type", "baseName": "Type", "type": "TrelloIntegrationInfoModel.TypeEnum" }, { "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": "TrelloIntegrationInfoModel.TemplateTypeEnum" }, { "name": "reopenStatus", "baseName": "ReopenStatus", "type": "string" }, { "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 TrelloIntegrationInfoModel.attributeTypeMap; } } export namespace TrelloIntegrationInfoModel { 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' } }