/** * Klaviyo API * The Klaviyo REST API. Please visit https://developers.klaviyo.com for more details. * * Contact: developers@klaviyo.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { RequestFile } from './models'; export class WebhookCreateQueryResourceObjectAttributes { /** * A name for the webhook. */ 'name': string; /** * A description for the webhook. */ 'description'?: string | null; /** * A url to send webhook calls to. Must be https. */ 'endpointUrl': string; /** * A secret key, that will be used for webhook request signing. */ 'secretKey': string; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "name", "baseName": "name", "type": "string" }, { "name": "description", "baseName": "description", "type": "string" }, { "name": "endpointUrl", "baseName": "endpoint_url", "type": "string" }, { "name": "secretKey", "baseName": "secret_key", "type": "string" } ]; static getAttributeTypeMap() { return WebhookCreateQueryResourceObjectAttributes.attributeTypeMap; } }