
com.riskified.models.CheckoutOrderWrapper 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;
public class CheckoutOrderWrapper {
private T checkout;
public CheckoutOrderWrapper(T data) {
checkout = data;
}
public T getOrder() {
return checkout;
}
public void setOrder(T checkout) {
this.checkout = checkout;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy