
export class Object {
    options: {
        id: number;
        actual_name: string;
        mask_name: boolean;
        inclusions: string[];
        not_add_link: boolean;
        space_type: boolean;
        quoted_price_per_seat: number;
        quoted_price_unit: string;
        total_billable_seats: number;
        total: number;
        total_unit: string;
        images: string[];
        location_name: string;
        landmark: string;
        city: string;
        link_name: string;
    }[] = [];
    to: string;
    signature: string;
    subject: string;
    heading: string;
    description: string;
    text: string;
    lead_id: number;
    resource_type: number;
    attach_pdf_proposal: boolean;
    why_image: any;
    steps_image: any;
    why_image_link: any;
    steps_image_link: any;
    hide_why_image: boolean;
    hide_steps_image: boolean;
    manager: {
        id: number;
        name: string;
        email: string;
        mobile: string;
        is_admin: any;
        status: any;
        image: string;
        spaces_data: any;
    };
}