
com.riskified.models.Response Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of riskified-sdk Show documentation
Show all versions of riskified-sdk Show documentation
Risikified rest api SDK for java
The newest version!
package com.riskified.models;
import java.util.List;
public class Response {
private ResOrder order;
private String decision;
private Integer received;
private List warnings;
private Error error;
public Response() {
}
public Response(CheckoutResponse checkoutResponse) {
this.order = checkoutResponse.getCheckout();
this.received = checkoutResponse.getReceived();
this.warnings = checkoutResponse.getWarnings();
this.error = checkoutResponse.getError();
}
public ResOrder getOrder() {
return order;
}
public void setOrder(ResOrder order) {
this.order = order;
}
public String getDecision() {
return decision;
}
public void setDecision(String decision) {
this.decision = decision;
}
public int getReceived() {
return received;
}
public void setReceived(int received) {
this.received = received;
}
public List getWarnings() {
return warnings;
}
public void setWarnings(List warnings) {
this.warnings = warnings;
}
public Error getError() {
return error;
}
public void setError(Error error) {
this.error = error;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy