com.coinbase.api.entity.Contact 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 Contact implements Serializable {
/**
*
*/
private static final long serialVersionUID = -7691519279895052424L;
private String _email;
public String getEmail() {
return _email;
}
public void setEmail(String email) {
_email = email;
}
}