/** * 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 { StorageConfig } from '../models/StorageConfig'; import { HttpFile } from '../http/http'; /** * Storage destination configuration for webhook payload delivery. */ export class StorageDestination { /** * Type of storage destination (e.g., AWS_S3). */ 'storage_type': StorageDestinationStorageTypeEnum; 'storage_config': StorageConfig; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "storage_type", "baseName": "storage_type", "type": "StorageDestinationStorageTypeEnum", "format": "" }, { "name": "storage_config", "baseName": "storage_config", "type": "StorageConfig", "format": "" } ]; static getAttributeTypeMap() { return StorageDestination.attributeTypeMap; } public constructor() { } } export type StorageDestinationStorageTypeEnum = "AWS_S3" ;