com.coinbase.api.entity.TransfersResponse 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.TransfersLifter;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
public class TransfersResponse extends Response {
/**
*
*/
private static final long serialVersionUID = -812292521739103434L;
private List _transfers;
public List getTransfers() {
return _transfers;
}
@JsonDeserialize(converter=TransfersLifter.class)
public void setTransfers(List transfers) {
_transfers = transfers;
}
}