
tech.deepdreams.worker.util.Branch Maven / Gradle / Ivy
package tech.deepdreams.worker.util;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
@XmlRootElement
public class Branch {
private Long id ;
private String label ;
private Float rate ;
@XmlAttribute(name = "id")
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
@XmlElement
public String getLabel() {
return label;
}
public void setLabel(String label) {
this.label = label;
}
@XmlElement
public Float getRate() {
return rate;
}
public void setRate(Float rate) {
this.rate = rate;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy