com.coinbase.api.entity.Address 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 org.joda.time.DateTime;
import java.io.Serializable;
public class Address implements Serializable {
/**
*
*/
private static final long serialVersionUID = -2215555555599527880L;
private String _address;
private String _callbackUrl;
private String _label;
private DateTime _createdAt;
public String getAddress() {
return _address;
}
public void setAddress(String address) {
_address = address;
}
public String getCallbackUrl() {
return _callbackUrl;
}
public void setCallbackUrl(String callbackUrl) {
_callbackUrl = callbackUrl;
}
public String getLabel() {
return _label;
}
public void setLabel(String label) {
_label = label;
}
public DateTime getCreatedAt() {
return _createdAt;
}
public void setCreatedAt(DateTime createdAt) {
_createdAt = createdAt;
}
}