Package com.algorand.algosdk.auction
Class Bid
- java.lang.Object
-
- com.algorand.algosdk.auction.Bid
-
public class Bid extends Object
A raw serializable Bid class.
-
-
Field Summary
Fields Modifier and Type Field Description BigInteger
auctionID
Address
auctionKey
BigInteger
bidCurrency
Address
bidderKey
BigInteger
bidID
BigInteger
maxPrice
-
Constructor Summary
Constructors Constructor Description Bid()
Bid(byte[] bidderKey, byte[] auctionKey, BigInteger bidCurrency, BigInteger maxPrice, BigInteger bidID, BigInteger auctionID)
Bid(Address bidderKey, Address auctionKey, BigInteger bidCurrency, BigInteger maxPrice, BigInteger bidID, BigInteger auctionID)
Create a new bid
-
-
-
Field Detail
-
bidderKey
public Address bidderKey
-
auctionKey
public Address auctionKey
-
bidCurrency
public BigInteger bidCurrency
-
maxPrice
public BigInteger maxPrice
-
bidID
public BigInteger bidID
-
auctionID
public BigInteger auctionID
-
-
Constructor Detail
-
Bid
public Bid(Address bidderKey, Address auctionKey, BigInteger bidCurrency, BigInteger maxPrice, BigInteger bidID, BigInteger auctionID)
Create a new bid- Parameters:
bidderKey
-auctionKey
-bidCurrency
-maxPrice
-bidID
-auctionID
-
-
Bid
public Bid(byte[] bidderKey, byte[] auctionKey, BigInteger bidCurrency, BigInteger maxPrice, BigInteger bidID, BigInteger auctionID)
-
Bid
public Bid()
-
-