com.coinbase.api.entity.ContactsResponse 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.ContactsLifter;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
public class ContactsResponse extends Response {
/**
*
*/
private static final long serialVersionUID = 1579609741624298006L;
private List _contacts;
public List getContacts() {
return _contacts;
}
@JsonDeserialize(converter=ContactsLifter.class)
public void setContacts(List contacts) {
_contacts = contacts;
}
}