com.coinbase.api.entity.ContactNode 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 ContactNode implements Serializable {
/**
*
*/
private static final long serialVersionUID = 642700372938561693L;
private Contact _contact;
public Contact getContact() {
return _contact;
}
public void setContact(Contact contact) {
_contact = contact;
}
}