Package org.drinkless.tdlib
Class TdApi.UpdateNewPreCheckoutQuery
java.lang.Object
org.drinkless.tdlib.TdApi.Object
org.drinkless.tdlib.TdApi.Update
org.drinkless.tdlib.TdApi.UpdateNewPreCheckoutQuery
- Enclosing class:
- TdApi
A new incoming pre-checkout query; for bots only. Contains full information about a checkout.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intIdentifier uniquely determining type of the object.Currency for the product price.longUnique query identifier.byte[]Invoice payload.Information about the order; may be null.longIdentifier of the user who sent the query.Identifier of a shipping option chosen by the user; may be empty if not applicable.longTotal price for the product, in the smallest units of the currency. -
Constructor Summary
ConstructorsConstructorDescriptionA new incoming pre-checkout query; for bots only.UpdateNewPreCheckoutQuery(long id, long senderUserId, String currency, long totalAmount, byte[] invoicePayload, String shippingOptionId, TdApi.OrderInfo orderInfo) A new incoming pre-checkout query; for bots only. -
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
-
id
public long idUnique query identifier. -
senderUserId
public long senderUserIdIdentifier of the user who sent the query. -
currency
Currency for the product price. -
totalAmount
public long totalAmountTotal price for the product, in the smallest units of the currency. -
invoicePayload
public byte[] invoicePayloadInvoice payload. -
shippingOptionId
Identifier of a shipping option chosen by the user; may be empty if not applicable. -
orderInfo
Information about the order; may be null. -
CONSTRUCTOR
public static final int CONSTRUCTORIdentifier uniquely determining type of the object.- See Also:
-
-
Constructor Details
-
UpdateNewPreCheckoutQuery
public UpdateNewPreCheckoutQuery()A new incoming pre-checkout query; for bots only. Contains full information about a checkout. -
UpdateNewPreCheckoutQuery
public UpdateNewPreCheckoutQuery(long id, long senderUserId, String currency, long totalAmount, byte[] invoicePayload, String shippingOptionId, TdApi.OrderInfo orderInfo) A new incoming pre-checkout query; for bots only. Contains full information about a checkout.- Parameters:
id- Unique query identifier.senderUserId- Identifier of the user who sent the query.currency- Currency for the product price.totalAmount- Total price for the product, in the smallest units of the currency.invoicePayload- Invoice payload.shippingOptionId- Identifier of a shipping option chosen by the user; may be empty if not applicable.orderInfo- Information about the order; may be null.
-
-
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
-