export declare class PaymentBillingAddress { addressType?: PaymentBillingAddressAddressTypeEnum; /** * Address line 1 of the address provided. */ addressLine1: string; /** * Address line 2 of the address provided. */ addressLine2?: string; /** * City of the address provided. */ city: string; /** * The two-characters ISO code for the state or province of the address. */ state?: string; /** * Zip code of the address provided. */ zipCode: string; /** * ISO alpha-3 country code of the address provided. */ countryCode: string; constructor(paymentBillingAddress: PaymentBillingAddressProperties); } export type PaymentBillingAddressAddressTypeEnum = 'HOME' | 'WORK'; export interface PaymentBillingAddressProperties { addressType?: PaymentBillingAddressAddressTypeEnum; addressLine1: string; addressLine2?: string; city: string; state?: string; zipCode: string; countryCode: string; }