interface TrackDetail_T {
    vehicle_details: {
      makenmodel: string;
      year: string;
      full_desc: string;
      color: string;
      keys: string;
      auction: string;
      city: string;
      vin:string;
      lot: string;
      date: string;
      delivery_warehouse_date: string;
      promised_delivery: string;
      promised_pickup: string;
      note: string;
      buyer: string;
      buyer_number: null | string; // Assuming buyer_number can be null or a string
    } | 'no data found';
    container_details: {
      point_loading: string;
      container_number: string;
      booking_number: string;
      destination_port: string;
      loading_date: string;
      expected_arrival_date: string;
      arrival_date: string;
      unloading_date: string;
    }| 'no data found';
    images: [] | string;
  }

