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
public static class TdApi.UpdateNewPreCheckoutQuery extends TdApi.Update
A new incoming pre-checkout query; for bots only. Contains full information about a checkout.
-
-
Field Summary
Fields Modifier and Type Field Description static intCONSTRUCTORIdentifier uniquely determining type of the object.StringcurrencyCurrency for the product price.longidUnique query identifier.byte[]invoicePayloadInvoice payload.TdApi.OrderInfoorderInfoInformation about the order; may be null.longsenderUserIdIdentifier of the user who sent the query.StringshippingOptionIdIdentifier of a shipping option chosen by the user; may be empty if not applicable.longtotalAmountTotal price for the product, in the smallest units of the currency.
-
Constructor Summary
Constructors Constructor Description UpdateNewPreCheckoutQuery()A 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
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetConstructor()-
Methods inherited from class org.drinkless.tdlib.TdApi.Object
toString
-
-
-
-
Field Detail
-
id
public long id
Unique query identifier.
-
senderUserId
public long senderUserId
Identifier of the user who sent the query.
-
currency
public String currency
Currency for the product price.
-
totalAmount
public long totalAmount
Total price for the product, in the smallest units of the currency.
-
invoicePayload
public byte[] invoicePayload
Invoice payload.
-
shippingOptionId
public String shippingOptionId
Identifier of a shipping option chosen by the user; may be empty if not applicable.
-
orderInfo
public TdApi.OrderInfo orderInfo
Information about the order; may be null.
-
CONSTRUCTOR
public static final int CONSTRUCTOR
Identifier uniquely determining type of the object.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
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 Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-