@devopness/sdk-js
Version:
Devopness API JS/TS SDK - Painless essential DevOps to everyone
31 lines (30 loc) • 820 B
TypeScript
/**
* 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.
*/
/**
*
* @export
* @interface HookOutgoingTriggerWhenCondition
*/
export interface HookOutgoingTriggerWhenCondition {
/**
* A dot-notation path of the outgoing hook variable to be used as the value to evaluate this condition.
* @type {string}
* @memberof HookOutgoingTriggerWhenCondition
*/
path: string;
/**
* List of accepted values for this condition.
* @type {Array<string>}
* @memberof HookOutgoingTriggerWhenCondition
*/
accepted_values: Array<string>;
}