io.github.dft.uni.model.rateresponse.Response Maven / Gradle / Ivy
The newest version!
package io.github.dft.uni.model.rateresponse;
import lombok.Data;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
@Data
@XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD)
public class Response {
@XmlAttribute(name = "key")
private String key;
@XmlAttribute(name = "service")
private String service;
@XmlAttribute(name = "success")
private String success;
@XmlAttribute(name = "message")
private String message;
@XmlElement(name = "RateResults")
private RateResults rateResults;
}