Interface ActionPaymentRefunded

A payment was refunded

interface ActionPaymentRefunded {
    amount: Long;
    charge: RawPaymentCharge;
    currency: string;
    payload?: Uint8Array;
    peerId: number;
    type: "payment_refunded";
}

Properties

amount: Long

Number of currency refunded, in the smallest unit

Information about the charge

currency: string

Three-letter ISO 4217 currency code

payload?: Uint8Array

Payload defined by the bot

peerId: number

Marked ID of the peer where the stars were refunded (?)

type: "payment_refunded"