UNPKG

netsparker-cloud

Version:

JavaScript client for consuming the Netsparker Cloud API.

50 lines (43 loc) 1.21 kB
/** * 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'; export class TrelloList { 'closed'?: boolean; 'id'?: string; 'isActive'?: boolean; 'name'?: string; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "closed", "baseName": "closed", "type": "boolean" }, { "name": "id", "baseName": "id", "type": "string" }, { "name": "isActive", "baseName": "IsActive", "type": "boolean" }, { "name": "name", "baseName": "name", "type": "string" } ]; static getAttributeTypeMap() { return TrelloList.attributeTypeMap; } }