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

pro.taskana.task.rest.models.AttachmentRepresentationModel Maven / Gradle / Ivy

package pro.taskana.task.rest.models;

import java.util.HashMap;
import java.util.Map;

import pro.taskana.task.api.models.Attachment;

/** EntityModel class for {@link Attachment}. */
public class AttachmentRepresentationModel extends AttachmentSummaryRepresentationModel {

  private Map customAttributes = new HashMap<>();

  public Map getCustomAttributes() {
    return customAttributes;
  }

  public void setCustomAttributes(Map customAttributes) {
    this.customAttributes = customAttributes;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy