All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.miragon.miranum.connect.elementtemplate.c8.schema.SingleCondition Maven / Gradle / Ivy

package io.miragon.miranum.connect.elementtemplate.c8.schema;

import com.fasterxml.jackson.annotation.*;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.Setter;
import lombok.ToString;
import lombok.experimental.Accessors;

/**
 * property condition
 * 

* Condition(s) to activate the binding */ @JsonInclude(JsonInclude.Include.NON_NULL) @JsonPropertyOrder({ "type", "property", "expression", }) @Accessors(chain = true) @Getter @Setter @ToString @EqualsAndHashCode public class SingleCondition implements Condition { /** * condition type *

* The type of the condition */ @JsonProperty("type") @JsonPropertyDescription("The type of the condition") private final String type = "simple"; /** * condition property *

* The id of the property to check * (Required) */ @JsonProperty("property") @JsonPropertyDescription("The id of the property to check") private String property; /** * condition expression */ @JsonUnwrapped private Expression expression; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy