com.coinbase.api.entity.PaymentMethod 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.io.Serializable;
public class PaymentMethod implements Serializable {
/**
*
*/
private static final long serialVersionUID = -3574818318535801143L;
private String _id;
private String _name;
private Boolean _canBuy;
private Boolean _canSell;
public String getId() {
return _id;
}
public void setId(String id) {
_id = id;
}
public String getName() {
return _name;
}
public void setName(String name) {
_name = name;
}
public Boolean canBuy() {
return _canBuy;
}
public void setCanBuy(Boolean canBuy) {
_canBuy = canBuy;
}
public Boolean canSell() {
return _canSell;
}
public void setCanSell(Boolean canSell) {
_canSell = canSell;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy