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

eu.xenit.apix.workflow.model.WorkflowOrTaskChanges Maven / Gradle / Ivy

There is a newer version: 4.1.2
Show newest version
package eu.xenit.apix.workflow.model;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Map;

public class WorkflowOrTaskChanges {

    private Map propertiesToSet;

    @JsonCreator
    public WorkflowOrTaskChanges(@JsonProperty("propertiesToSet") Map propertiesToSet) {
        this.propertiesToSet = propertiesToSet;
    }

    public Map getPropertiesToSet() {
        return propertiesToSet;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy