/**
 * 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.
 */
import { TriggerWhenConditionType } from './trigger-when-condition-type';
/**
 *
 * @export
 * @interface TriggerWhenCondition
 */
export interface TriggerWhenCondition {
    /**
     * Name of the condition
     * @type {string}
     * @memberof TriggerWhenCondition
     */
    name?: string;
    /**
     *
     * @type {TriggerWhenConditionType}
     * @memberof TriggerWhenCondition
     */
    type: TriggerWhenConditionType;
    /**
     * A dot-notation path of the request body attribute to be used as the value to evaluate this condition.
     * @type {string}
     * @memberof TriggerWhenCondition
     */
    path: string;
    /**
     * List of accepted values for this condition.
     * @type {Array<boolean | number | string>}
     * @memberof TriggerWhenCondition
     */
    accepted_values: Array<boolean | number | string>;
}
