// tslint:disable /** * Copyright 2022 Splunk, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"): you may * not use this file except in compliance with the License. You may obtain * a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. * * Action Service * With the Splunk Cloud Action service, you can receive incoming trigger events and use pre-defined action templates to turn these events into meaningful actions. * * OpenAPI spec version: v2alpha1.12 * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface WebhookActionMutable */ export interface WebhookActionMutable { /** * A human-readable title for the action. Must be less than 128 characters. * @type {string} * @memberof WebhookActionMutable */ title?: string; /** * * @type {{ [key: string]: Array; }} * @memberof WebhookActionMutable */ webhookHeaders?: { [key: string]: Array; }; /** * The (possibly) templated payload body, which is POSTed to the webhookUrl. * @type {string} * @memberof WebhookActionMutable */ webhookPayload?: string; /** * Only HTTPS is allowed. * @type {string} * @memberof WebhookActionMutable */ webhookUrl?: string; }