def put(self, id):
        try:
            DB_query.put(id, vehicle_type)
            return {"status": 'success'}

        except Exception as e:
            return {"Error": str(e)}
            logger.debug("\n------- Something went wrong -------\n", str(e))
    def put(self, damage_id):
        try:
            DB_query.put(damage_id, insurance_damage)
            return {"status": 'success'}

        except Exception as e:
            return {"Error": str(e)}
            logger.debug("\n------- Something went wrong -------\n", str(e))
    def put(self, id):
        try:
            DB_query.put(id, external_status_config)
            return {"status": 'success'}

        except Exception as e:
            return {"Error": str(e)}
            logger.debug("\n------- Something went wrong -------\n", str(e))