/** * 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 { OrgType } from '../models/OrgType'; import { HttpFile } from '../http/http'; export class CreateEmailCustomizationResponse { /** * Tenant ID */ 'tenant_id': string; 'org': OrgType; /** * Email customization name. */ 'name': string; /** * Customization configuration for the email */ 'template_properties': any; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "tenant_id", "baseName": "tenant_id", "type": "string", "format": "" }, { "name": "org", "baseName": "org", "type": "OrgType", "format": "" }, { "name": "name", "baseName": "name", "type": "string", "format": "" }, { "name": "template_properties", "baseName": "template_properties", "type": "any", "format": "" } ]; static getAttributeTypeMap() { return CreateEmailCustomizationResponse.attributeTypeMap; } public constructor() { } }