com.coinbase.api.entity.OrdersResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of coinbase-java Show documentation
Show all versions of coinbase-java Show documentation
A first-party java wrapper around the Coinbase API
The newest version!
package com.coinbase.api.entity;
import java.util.List;
import com.coinbase.api.deserializer.OrdersLifter;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
public class OrdersResponse extends Response {
/**
*
*/
private static final long serialVersionUID = 2721898279676340667L;
private List _orders;
public List getOrders() {
return _orders;
}
@JsonDeserialize(converter=OrdersLifter.class)
public void setOrders(List orders) {
_orders = orders;
}
}