Type Alias BillingAddress

BillingAddress: {
    city: string | null;
    country: Country;
    postal_code: string | null;
    region: string | null;
    street_address: string | null;
    street_address2: string | null;
}

Type declaration

  • city: string | null
  • country: Country
  • postal_code: string | null
  • region: string | null
  • street_address: string | null
  • street_address2: string | null