/** * Address information * part of the Billing data model */ export interface Address { addressType?: string; street1?: string; street2?: string; city: string; state: string; zip: string; }