/** * 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 WebhookSignatureVerificationInput { /** * Signature verification method type. */ 'type': WebhookSignatureVerificationInputTypeEnum; /** * HTTP header where the signature is sent. */ 'header': string; /** * Hash algorithm used for signature verification. */ 'algorithm': WebhookSignatureVerificationInputAlgorithmEnum; /** * 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": "WebhookSignatureVerificationInputTypeEnum", "format": "" }, { "name": "header", "baseName": "header", "type": "string", "format": "" }, { "name": "algorithm", "baseName": "algorithm", "type": "WebhookSignatureVerificationInputAlgorithmEnum", "format": "" }, { "name": "secret", "baseName": "secret", "type": "string", "format": "" } ]; static getAttributeTypeMap() { return WebhookSignatureVerificationInput.attributeTypeMap; } public constructor() { } } export type WebhookSignatureVerificationInputTypeEnum = "HMAC_SHA256" ; export type WebhookSignatureVerificationInputAlgorithmEnum = "SHA256" ;