/** * 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 { AsanaProject } from './asanaProject'; import { AsanaTag } from './asanaTag'; import { AsanaUser } from './asanaUser'; import { AsanaWorkspace } from './asanaWorkspace'; import { IntegrationWizardResultModel } from './integrationWizardResultModel'; import { NotificationIntegrationCustomFieldModel } from './notificationIntegrationCustomFieldModel'; /** * The Asana integration info */ export class AsanaIntegrationInfoModel { /** * Access Token */ 'accessToken': string; /** * The Project identifier. */ 'projectId': string; /** * The Workspace identifier. */ 'workspaceId'?: string; /** * The user to assign issues to. Accepted values are email adress,user identifier or me. */ 'assignee'?: string; /** * The Follower identifiers. */ 'followerIds'?: Array; /** * The number of days in which the card is due, date from the time that the card was created. */ 'dueDays': number; 'type'?: AsanaIntegrationInfoModel.TypeEnum; /** * Comma-separated Tag identifiers. */ 'tagIds'?: Array; /** * The Workspace List. */ 'workspaceList'?: Array; /** * The Project List. */ 'projectList'?: Array; /** * The Assignee List. */ 'assigneeList'?: Array; /** * The Follower List. */ 'followerList'?: Array; /** * The Tag List. */ 'tagList'?: Array; /** * The Follower identifiers. */ 'followersSelected'?: string; /** * Comma-separated Tag identifiers. */ 'tagsSelected'?: string; 'integrationWizardResultModel'?: IntegrationWizardResultModel; /** * 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'?: AsanaIntegrationInfoModel.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": "accessToken", "baseName": "AccessToken", "type": "string" }, { "name": "projectId", "baseName": "ProjectId", "type": "string" }, { "name": "workspaceId", "baseName": "WorkspaceId", "type": "string" }, { "name": "assignee", "baseName": "Assignee", "type": "string" }, { "name": "followerIds", "baseName": "FollowerIds", "type": "Array" }, { "name": "dueDays", "baseName": "DueDays", "type": "number" }, { "name": "type", "baseName": "Type", "type": "AsanaIntegrationInfoModel.TypeEnum" }, { "name": "tagIds", "baseName": "TagIds", "type": "Array" }, { "name": "workspaceList", "baseName": "WorkspaceList", "type": "Array" }, { "name": "projectList", "baseName": "ProjectList", "type": "Array" }, { "name": "assigneeList", "baseName": "AssigneeList", "type": "Array" }, { "name": "followerList", "baseName": "FollowerList", "type": "Array" }, { "name": "tagList", "baseName": "TagList", "type": "Array" }, { "name": "followersSelected", "baseName": "FollowersSelected", "type": "string" }, { "name": "tagsSelected", "baseName": "TagsSelected", "type": "string" }, { "name": "integrationWizardResultModel", "baseName": "IntegrationWizardResultModel", "type": "IntegrationWizardResultModel" }, { "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": "AsanaIntegrationInfoModel.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 AsanaIntegrationInfoModel.attributeTypeMap; } } export namespace AsanaIntegrationInfoModel { 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' } }