
uk.co.mruoc.camunda.client.process.get.ProcessInstance 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;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.RequiredArgsConstructor;
@NoArgsConstructor(force = true)
@RequiredArgsConstructor
@Data
@JsonIgnoreProperties(ignoreUnknown = true)
public class ProcessInstance {
private final String id;
private final String definitionId;
private final String businessKey;
private final String caseInstanceId;
private final Boolean ended;
private final Boolean suspended;
private final String tenantId;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy