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

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

There is a newer version: 1.10.0
Show newest version
package com.coinbase.api.entity;

import org.joda.money.Money;
import org.joda.time.DateTime;

public class HistoricalPrice {
    private DateTime _time;
    private Money _spotPrice;

    public DateTime getTime() {
        return _time;
    }

    public void setTime(DateTime time) {
        _time = time;
    }

    public Money getSpotPrice() {
        return _spotPrice;
    }

    public void setSpotPrice(Money spotPrice) {
        _spotPrice = spotPrice;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy