@getdial/sdk - v0.21.0
    Preparing search index...

    Interface BillingDeposit

    A credit added to the wallet: a card top-up, the signup welcome credit, or a manual grant.

    interface BillingDeposit {
        amountCents: number;
        createdAt: string;
        invoiceId: string | null;
        kind: "card" | "welcome" | "manual";
    }
    Index
    amountCents: number
    createdAt: string
    invoiceId: string | null

    Stripe invoice id backing this deposit (card top-ups only; null otherwise).

    kind: "card" | "welcome" | "manual"