import { PaymentAcceptanceAccommodationAddress } from './paymentAcceptanceAccommodationAddress';
import { PaymentAcceptanceRating } from './paymentAcceptanceRating';
export interface PaymentAcceptanceAccommodation {
    address: PaymentAcceptanceAccommodationAddress;
    check_in_date: string;
    check_out_date: string;
    early_checkin?: boolean;
    guest_email?: string;
    guest_name?: string;
    guest_nationality: string;
    guest_phone: string;
    late_checkout?: boolean;
    name: string;
    pre_tax_amount?: number;
    ratings?: Array<PaymentAcceptanceRating>;
    room_type: string;
    tax_amount?: number;
    type: string;
}
export declare namespace PaymentAcceptanceAccommodation {
    const discriminator: string;
    const attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
}
//# sourceMappingURL=paymentAcceptanceAccommodation.d.ts.map