/** * 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'; /** * Configuration for webhook signature verification. */ export class CreateWebhookConfigurationRequestSignatureVerification { /** * Signature verification method type. */ 'type': CreateWebhookConfigurationRequestSignatureVerificationTypeEnum; /** * HTTP header where the signature is sent. */ 'header': string; /** * Hash algorithm used for signature verification. */ 'algorithm': CreateWebhookConfigurationRequestSignatureVerificationAlgorithmEnum; /** * Shared secret used for HMAC signature generation. */ 'secret': string; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "type", "baseName": "type", "type": "CreateWebhookConfigurationRequestSignatureVerificationTypeEnum", "format": "" }, { "name": "header", "baseName": "header", "type": "string", "format": "" }, { "name": "algorithm", "baseName": "algorithm", "type": "CreateWebhookConfigurationRequestSignatureVerificationAlgorithmEnum", "format": "" }, { "name": "secret", "baseName": "secret", "type": "string", "format": "" } ]; static getAttributeTypeMap() { return CreateWebhookConfigurationRequestSignatureVerification.attributeTypeMap; } public constructor() { } } export type CreateWebhookConfigurationRequestSignatureVerificationTypeEnum = "HMAC_SHA256" ; export type CreateWebhookConfigurationRequestSignatureVerificationAlgorithmEnum = "SHA256" ;