@suluk/payments - v0.1.0
    Preparing search index...

    Interface PaymentMethod

    The payment instrument. Extend with wallet / bank-transfer as connectors gain coverage; card + token are the core. token is a saved/vaulted instrument id (the app's or the processor's vault — the library stores nothing).

    interface PaymentMethod {
        card?: CardDetails;
        token?: Secret<string>;
    }
    Index

    Properties

    Properties

    token?: Secret<string>