/** * ThoughtSpot Public REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * OpenAPI spec version: 2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { HttpFile } from '../http/http'; export class DbtSearchResponse { 'dbt_connection_identifier'?: string | null; 'project_name'?: string | null; 'connection_id'?: string | null; 'connection_name'?: string | null; 'cdw_database'?: string | null; 'import_type'?: string | null; 'author_name'?: string | null; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "dbt_connection_identifier", "baseName": "dbt_connection_identifier", "type": "string", "format": "" }, { "name": "project_name", "baseName": "project_name", "type": "string", "format": "" }, { "name": "connection_id", "baseName": "connection_id", "type": "string", "format": "" }, { "name": "connection_name", "baseName": "connection_name", "type": "string", "format": "" }, { "name": "cdw_database", "baseName": "cdw_database", "type": "string", "format": "" }, { "name": "import_type", "baseName": "import_type", "type": "string", "format": "" }, { "name": "author_name", "baseName": "author_name", "type": "string", "format": "" } ]; static getAttributeTypeMap() { return DbtSearchResponse.attributeTypeMap; } public constructor() { } }