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

com.bitcoin.blockchain.api.domain.TransactionOutputList Maven / Gradle / Ivy

The newest version!
package com.bitcoin.blockchain.api.domain;

import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;

/**
 * Created by Jesion on 2015-02-19.
 */
public class TransactionOutputList implements Serializable {

    public String status;

    public List outputs = new ArrayList();

    public long total = 0;

    public TransactionOutputList() {

    }

    public TransactionOutputList(String status) {
        this.status = status;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy