
uk.co.mruoc.camunda.client.process.get.variable.VariableInstanceResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of camunda-rest-client Show documentation
Show all versions of camunda-rest-client Show documentation
Template repo to speed up creating new library projects
The newest version!
package uk.co.mruoc.camunda.client.process.get.variable;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.RequiredArgsConstructor;
import uk.co.mruoc.camunda.client.history.variable.ValueInfo;
@NoArgsConstructor(force = true)
@RequiredArgsConstructor
@Data
@Builder
@JsonIgnoreProperties(ignoreUnknown = true)
public class VariableInstanceResponse {
private final String type;
private final Object value;
private final ValueInfo valueInfo;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy