All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.coinbase.api.entity.AccountChangesResponse Maven / Gradle / Ivy

There is a newer version: 1.10.0
Show newest version
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