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

    Interface TaxAddress

    A buyer's tax location (from a saved card's billing address).

    interface TaxAddress {
        country: string;
        state: string | null;
        postalCode: string | null;
        city: string | null;
        line1: string | null;
    }
    Index

    Properties

    country: string
    state: string | null
    postalCode: string | null
    city: string | null
    line1: string | null