/** * 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 WebhookAuthOAuth2 { /** * OAuth2 authorization server URL. */ 'authorization_url': string; /** * OAuth2 client identifier. */ 'client_id': string; /** * OAuth2 client secret key. */ 'client_secret': string; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "authorization_url", "baseName": "authorization_url", "type": "string", "format": "" }, { "name": "client_id", "baseName": "client_id", "type": "string", "format": "" }, { "name": "client_secret", "baseName": "client_secret", "type": "string", "format": "" } ]; static getAttributeTypeMap() { return WebhookAuthOAuth2.attributeTypeMap; } public constructor() { } }