001package com.fs.starfarer.api.campaign.econ;
002
003public interface TransferTotalAPI {
004
005        float getQuantity();
006        float getPrice();
007        String getMarketId();
008        boolean isSmuggled();
009        String getCommodityId();
010        void setQuantity(int quantity);
011        void setPrice(int price);
012
013}