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

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

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

import com.fasterxml.jackson.annotation.JsonProperty;
import io.swagger.v3.oas.annotations.media.Schema;
import java.beans.ConstructorProperties;

public class IsReadRepresentationModel {

  @Schema(name = "is-read", description = "The value to set the Task property isRead.")
  @JsonProperty("is-read")
  private final boolean isRead;

  @ConstructorProperties({"is-read"})
  public IsReadRepresentationModel(boolean isRead) {
    this.isRead = isRead;
  }

  public boolean getIsRead() {
    return isRead;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy