Interface ActionPaymentSent

A payment was sent to a user

interface ActionPaymentSent {
    amount: Long;
    currency: string;
    type: "payment_sent";
}

Properties

Properties

amount: Long

Price of the product in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45, amount = 145

currency: string

Three-letter ISO 4217 currency code

type: "payment_sent"