Interface PaymentReceipt

Contains information about a successful payment.

interface PaymentReceipt {
    @type: "paymentReceipt";
    date: number;
    product_info: ProductInfo;
    seller_bot_user_id: number;
    type: PaymentReceiptType;
}

Properties

@type: "paymentReceipt"
date: number

Point in time (Unix timestamp) when the payment was made.

product_info: ProductInfo

Information about the product.

seller_bot_user_id: number

User identifier of the seller bot.

Type of the payment receipt.