@suluk/billing - v0.2.0
    Preparing search index...

    Interface PaymentMethodWire

    A payment method as the billing panel shows it — card + its billing address + whether it's the customer's default.

    interface PaymentMethodWire {
        id: string;
        brand: string;
        last4: string;
        expMonth: number;
        expYear: number;
        name: string | null;
        line1: string | null;
        line2: string | null;
        city: string | null;
        region: string | null;
        postalCode: string | null;
        country: string | null;
        isDefault: boolean;
    }
    Index

    Properties

    id: string
    brand: string
    last4: string
    expMonth: number
    expYear: number
    name: string | null
    line1: string | null
    line2: string | null
    city: string | null
    region: string | null
    postalCode: string | null
    country: string | null
    isDefault: boolean