export declare class SiteInfo { /** * The alpha-3 ISO code that represents a country name. */ countryCode: string; /** * Identifies if an agent assisted in booking travel for the customer. `False` if the order was directly booked by customer. */ agentAssisted: boolean; constructor(siteInfo: SiteInfoProperties); } export interface SiteInfoProperties { countryCode: string; agentAssisted: boolean; }