/** * Address of a hotel. */ export declare class HotelAddress { addressType?: HotelAddressAddressTypeEnum; /** * 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(hotelAddress: HotelAddressProperties); } export type HotelAddressAddressTypeEnum = 'HOME' | 'WORK'; export interface HotelAddressProperties { addressType?: HotelAddressAddressTypeEnum; addressLine1: string; addressLine2?: string; city: string; state: string; zipCode: string; countryCode: string; }