Package org.drinkless.tdlib
Class TdApi.AuctionBid
java.lang.Object
org.drinkless.tdlib.TdApi.Object
org.drinkless.tdlib.TdApi.AuctionBid
- Enclosing class:
- TdApi
Describes a bid in an auction.
-
Field Summary
FieldsModifier and TypeFieldDescriptionintPoint in time (Unix timestamp) when the bid was made.static final intIdentifier uniquely determining type of the object.intPosition of the bid in the list of all bids.longThe number of Telegram Stars that were put in the bid. -
Constructor Summary
ConstructorsConstructorDescriptionDescribes a bid in an auction.AuctionBid(long starCount, int bidDate, int position) Describes a bid in an auction. -
Method Summary
Modifier and TypeMethodDescriptionintReturns an identifier uniquely determining type of the object.Methods inherited from class org.drinkless.tdlib.TdApi.Object
toString
-
Field Details
-
starCount
public long starCountThe number of Telegram Stars that were put in the bid. -
bidDate
public int bidDatePoint in time (Unix timestamp) when the bid was made. -
position
public int positionPosition of the bid in the list of all bids. -
CONSTRUCTOR
public static final int CONSTRUCTORIdentifier uniquely determining type of the object.- See Also:
-
-
Constructor Details
-
AuctionBid
public AuctionBid()Describes a bid in an auction. -
AuctionBid
public AuctionBid(long starCount, int bidDate, int position) Describes a bid in an auction.- Parameters:
starCount- The number of Telegram Stars that were put in the bid.bidDate- Point in time (Unix timestamp) when the bid was made.position- Position of the bid in the list of all bids.
-
-
Method Details
-
getConstructor
public int getConstructor()Description copied from class:TdApi.ObjectReturns an identifier uniquely determining type of the object.- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-