com.coinbase.api.entity.AddressesResponse 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
package com.coinbase.api.entity;
import java.util.List;
import com.coinbase.api.deserializer.AddressesLifter;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
public class AddressesResponse extends Response {
/**
*
*/
private static final long serialVersionUID = 3300893137342086524L;
private List _addresses;
public List getAddresses() {
return _addresses;
}
@JsonDeserialize(converter=AddressesLifter.class)
public void setAddresses(List addresses) {
_addresses = addresses;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy