/** * 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 WebhookPartialUpdateQueryResourceObjectAttributes { /** * A name for the webhook. */ 'name'?: string | null; /** * A description for the webhook. */ 'description'?: string | null; /** * A url to send webhook calls to. Must be https. */ 'endpointUrl'?: string | null; /** * A secret key, that will be used for webhook request signing. */ 'secretKey'?: string | null; /** * Is the webhook enabled. */ 'enabled'?: boolean | null; 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" }, { "name": "enabled", "baseName": "enabled", "type": "boolean" } ]; static getAttributeTypeMap() { return WebhookPartialUpdateQueryResourceObjectAttributes.attributeTypeMap; } }