com.coinbase.api.entity.OrderNode 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.io.Serializable;
public class OrderNode implements Serializable {
/**
*
*/
private static final long serialVersionUID = 9143405822047138714L;
private Order _order;
public Order getOrder() {
return _order;
}
public void setOrder(Order order) {
_order = order;
}
}