export type invoice_PaymentsAddress = { /** * AddressLine1 is the first line of the billing street address. */ addressLine1?: string; /** * AddressLine2 is the second line of the billing street address. */ addressLine2?: string; /** * City is the billing city. */ city?: string; /** * Country is the billing country. */ country?: string; /** * FullAddress is the formatted, single-line billing address. */ fullAddress?: string; /** * PostalCode is the billing postal or ZIP code. */ postalCode?: string; /** * Region is the billing state, province, or region. */ region?: string; };