A Point is not a geometry class, but used to create a geometry.
Example:
point = arcpy.Point(-35,74)
ptGeom = arcpy.PointGeometry(point)
The properties of the Point object are as follows:
There are various methods introduced at v10: clone, contains, crosses, etc... They can be found here.
This should get you started with Point objects.
Enjoy