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

pro.taskana.common.rest.models.CustomAttributesRepresentationModel Maven / Gradle / Ivy

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

import io.swagger.v3.oas.annotations.media.Schema;
import java.beans.ConstructorProperties;
import java.util.Map;
import org.springframework.hateoas.RepresentationModel;

public class CustomAttributesRepresentationModel
    extends RepresentationModel {

  @Schema(
          name = "customAttributes",
          description = "The custom configuration attributes."
  )
  private final Map customAttributes;

  @ConstructorProperties({"customAttributes"})
  public CustomAttributesRepresentationModel(Map customAttributes) {
    this.customAttributes = customAttributes;
  }

  public Map getCustomAttributes() {
    return customAttributes;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy