PreCheckoutQuery

final case class PreCheckoutQuery(id: String, from: User, currency: String, totalAmount: Int, invoicePayload: String, shippingOptionId: Option[String], orderInfo: Option[OrderInfo])

This object contains information about an incoming pre-checkout query.

Value parameters:
currency

Three-letter ISO 4217 currency code

from

User who sent the query

id

Unique query identifier

invoicePayload

Bot specified invoice payload

orderInfo

Optional. Order information provided by the user

shippingOptionId

Optional. Identifier of the shipping option chosen by the user

totalAmount

Total price in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies).

trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any

Value members

Inherited methods

def productElementNames: Iterator[String]
Inherited from:
Product
def productIterator: Iterator[Any]
Inherited from:
Product