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

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

The newest version!
package pro.taskana.task.rest.models;

import io.swagger.v3.oas.annotations.media.Schema;
import java.util.HashMap;
import java.util.Map;

@Schema(description = "EntityModel class for Attachment")
public class AttachmentRepresentationModel extends AttachmentSummaryRepresentationModel {

  /** All additional information of the Attachment. */
  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