absolutepay (Node SDK) - v0.7.1
    Preparing search index...

    Interface CheckoutLink

    A created hosted checkout link — the page to send the payer to. Extra fields may be present.

    interface CheckoutLink {
        checkoutUrl?: string;
        expiresAt?: number;
        payPath?: string;
        status: InvoiceStatus;
        token: string;
        [k: string]: unknown;
    }

    Indexable

    • [k: string]: unknown

      Additional fields passed through untyped.

    Index

    Properties

    checkoutUrl?: string

    Full hosted checkout URL (when a checkout base URL is configured).

    expiresAt?: number

    Expiry as epoch milliseconds, when set.

    payPath?: string

    Relative /pay/<token> path (when no base URL is configured).

    Current InvoiceStatus of the link.

    token: string

    Opaque link token — used in the hosted /pay/<token> URL and to Checkouts.get it.