Interface CreatePaymentReq

interface CreatePaymentReq {
    amount: Amount;
    expiresAt?: Date;
    metadata?: string | Record<string, any>;
}

Properties

amount: Amount
expiresAt?: Date
metadata?: string | Record<string, any>