@nevermined-io/payments
    Preparing search index...

    Interface Order

    Buyer-safe view of an Order (OrderResponseDto). It never carries the merchant identity, the Connect account or the fee breakdown.

    interface Order {
        amountMinor: number;
        amountRefundedMinor: number;
        buyerRef: string | null;
        clientSecret?: string;
        currency: string;
        description: string | null;
        expiresAt: string | null;
        id: string;
        paymentIntentId: string | null;
        status: OrderStatus;
    }
    Index

    Properties

    amountMinor: number

    Charge amount in USD cents.

    amountRefundedMinor: number

    Total refunded so far, in cents.

    buyerRef: string | null
    clientSecret?: string

    Present only while the Order is payable.

    currency: string
    description: string | null
    expiresAt: string | null

    ISO-8601 instant when the Order stops being payable; null if it never expires.

    id: string

    Unguessable Order id.

    paymentIntentId: string | null

    The Stripe PaymentIntent backing this Order; null until it is created.

    status: OrderStatus