io.rtr.alchemy.dto.requests.UpdateTreatmentRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alchemy-api Show documentation
Show all versions of alchemy-api Show documentation
Representations for Alchemy Service
package io.rtr.alchemy.dto.requests;
import java.util.Optional;
public class UpdateTreatmentRequest {
private Optional description;
public UpdateTreatmentRequest() {}
public UpdateTreatmentRequest(Optional description) {
this.description = description;
}
public void setDescription(Optional description) {
this.description = description;
}
public Optional getDescription() {
return description;
}
}