@devopness/sdk-js
Version:
Devopness API JS/TS SDK - Painless essential DevOps to everyone
25 lines (24 loc) • 909 B
JavaScript
/* eslint-disable */
/**
* devopness API
* Devopness API - Painless essential DevOps to everyone
*
* The version of the OpenAPI document: latest
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.TriggerWhenConditionType = void 0;
/**
* The type of the condition to define where the values to be validated should be retrieved from. Example: `request_body` - Validate the condition using values of attributes sent in the request body.
* @export
* @enum {string}
*/
var TriggerWhenConditionType;
(function (TriggerWhenConditionType) {
TriggerWhenConditionType["RequestBody"] = "request_body";
})(TriggerWhenConditionType || (exports.TriggerWhenConditionType = TriggerWhenConditionType = {}));
;