A payment was sent to a user

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

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

subscriptionUntilDate?: Date

If this is a subscription being bought, the date when the subscription will expire

type: "payment_sent"