com.coinbase.api.entity.AccountChangesResponse 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.util.List;
import org.joda.money.Money;
public class AccountChangesResponse extends Response {
private User currentUser;
private Money balance;
private Money nativeBalance;
private List accountChanges;
public User getCurrentUser() {
return currentUser;
}
public void setCurrentUser(User currentUser) {
this.currentUser = currentUser;
}
public Money getBalance() {
return balance;
}
public void setBalance(Money balance) {
this.balance = balance;
}
public Money getNativeBalance() {
return nativeBalance;
}
public void setNativeBalance(Money nativeBalance) {
this.nativeBalance = nativeBalance;
}
public List getAccountChanges() {
return accountChanges;
}
public void setAccountChanges(List accountChanges) {
this.accountChanges = accountChanges;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy